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?
Asked
Active
Viewed 445 times
1
-
I didn't get you, can you explain more – Mangaldeep Pannu Apr 22 '19 at 15:36
2 Answers
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