Screen Transition Capture

Capturing Screen Transitions for enhanced user journey analysis

Screen Transition Capture is a Zipy feature for capturing screen transitions within your flutter app.

Here's how you can do it:

  1. Import the Observer in you material app:

MaterialApp(
        navigatorObservers: [ZipyNavigationObserver()], //need to add this for capturing screen transitions
        home: const HomeScreen(),
        routes: {
          '/profile': (context) => const ProfileScreen(),
        },
      ),

Last updated