feat: integrate Microsoft Clarity for mobile session recording and heatmaps

This commit is contained in:
pradeepkumar
2026-04-24 23:44:34 +05:30
parent 0f49b21f33
commit f18b35d1a3
7 changed files with 95 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
import 'package:clarity_flutter/clarity_flutter.dart';
/// Microsoft Clarity configuration — separate mobile project so recordings
/// and heatmaps are isolated from web traffic.
class ClarityAnalytics {
ClarityAnalytics._();
static const _projectId = 'wgtcstm336';
static final ClarityConfig config = ClarityConfig(
projectId: _projectId,
logLevel: LogLevel.None,
);
}