Impressions or tracking on Flutter widget

596 Views Asked by At

I want to track if a widget is show on the screen. Like a card in a list view. There is a widget in Flutter like GestureDetector for impression or tracking?

2

There are 2 best solutions below

0
jmo On BEST ANSWER

You might want to look into the firebase_analytics plugin. You can set it up to track when users look at certain pages. See the plugin page for more info.

0
Yanni On

I wrote a library for this https://github.com/623637646/flutter_impression

ImpressionDetector(
  impressedCallback: () {
    debugPrint('impressed');
  },
  child: MyWidget(),
)