Flutter
So you've got your account set up, now let’s make sure your Flutter app is equipped with the insights that UXCam can provide. This guide will take you through the first steps of integrating UXCam, sending your first session, and setting up key features. Our goal? A successful integration that sets you up for product-led growth, better usability insights, and happier users.
What Does a Successful Integration Look Like?
With a solid integration, you’ll have a complete picture of how users interact with your app. From screen journeys and user behaviours to session replays and user properties, you’ll be able to understand and enhance every aspect of your product’s user experience. Follow along with this quick guide, and you’ll be up and running in no time.
Quick Start: Only a Couple of Lines of Code
Let's get you started with the basics. With just a few lines of code, you'll be on your way to capturing user sessions in your test app.
Flutter Integration
-
Add the UXCam package to your Flutter app:
flutter pub add flutter_uxcam
-
This will add a line similar to this to your package's pubspec.yaml file
dependencies: flutter_uxcam: ^x.x.x
-
Import UXCam in your app:
import 'package:flutter_uxcam/flutter_uxcam.dart';
-
Initialise UXCam:
To ensure UXCam is properly started, it's recommended to initialize it within the initState method of a StatefulWidget. This ensures that the SDK starts as soon as the widget is created.
import 'package:flutter/material.dart';
import 'package:flutter_uxcam/flutter_uxcam.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
FlutterUxConfig config = FlutterUxConfig(
userAppKey: "UXCAM_APP_KEY",
enableAutomaticScreenNameTagging: false,
);
FlutterUxcam.startWithConfiguration(config);
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
As Simple As That!
This will complete the integration process.
Your session will be shown on the dashboard within a few seconds after the app goes in the background.We recommend that after you've set this up and have reviewed some sessions from your tests, get to the customisation features UXCam offers, let's go to the next steps!
Next Steps ➡️
You’ve successfully integrated UXCam and sent some sessions, great job! 🎉 But there's so much more you can do. Now, let’s go further into setting things up.
Updated 13 days ago