LaunchMay 27, 2026 · 3 min read
Announcing the Unilitix Flutter SDK
We are excited to announce the official Unilitix Flutter SDK is now live on pub.dev.
Install in one command
flutter pub add unilitix
Initialize in main.dart
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Unilitix.init('YOUR_API_KEY');
runApp(MyApp());
}Automatic screen tracking
MaterialApp( navigatorObservers: [Unilitix.observer], )
That is it. Sessions, screen flows, taps and crashes are tracked automatically.
What is included
The Flutter SDK includes automatic session tracking, screen flow tracking via NavigatorObserver, custom event tracking, user identification, crash reporting, rage tap detection, offline event buffering and support for 2G and 3G networks.
Get started
Install with: flutter pub add unilitix
Read the full docs at docs.unilitix.com