1

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?

R. Martinez
  • 119
  • 2
  • 10

2 Answers2

0

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.

jmo
  • 146
  • 1
  • 5
0

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

ImpressionDetector(
  impressedCallback: () {
    debugPrint('impressed');
  },
  child: MyWidget(),
)
Yanni
  • 580
  • 2
  • 6
  • 21