I am working on a Flutter project and would like to add animations to widgets as I scroll through the screen. Specifically, I want each widget to load with a certain animation when it comes into view during scrolling.
I have tried a few approaches but haven't been successful so far. Can anyone guide me on how to achieve this in Flutter?
You can use
visibility_detector: ^0.4.0+2package and wrap with your widget or control your animation timing using onVisibilityChanged function.