Screen Transition Capture
Capturing Screen Transitions for enhanced user journey analysis
MaterialApp(
navigatorObservers: [ZipyNavigationObserver()], //need to add this for capturing screen transitions
home: const HomeScreen(),
routes: {
'/profile': (context) => const ProfileScreen(),
},
),Dynamic Screen Tagging
import 'package:zipy_flutter/zipy_flutter.dart';
Zipy.tagScreenName(screenName: 'YOUR_SCREEN_NAME');Last updated