rvamsikrishna / inview_notifier_list

A Flutter package that builds a list view and notifies when the widgets are on screen.
MIT License
677 stars 104 forks source link

Null check error in InViewNotifierCustomScrollView #48

Closed SachinCodeMatrix closed 2 years ago

SachinCodeMatrix commented 2 years ago
Screenshot 2021-12-20 at 2 03 24 PM
FranciscoVenegas commented 2 years ago

After many attempts, in my case I solved it by wrapping my video widget inside "InViewNotifierWidget" and using the "isInView" property. This and based on the "example". My code was based on a very old version that wasn't nullsafety.

I hope it works for you too.

SachinCodeMatrix commented 2 years ago

Thank you @FranciscoVenegas.