Adding Animation to Widgets during Scroll in Flutter

66 Views Asked by At

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?

1

There are 1 best solutions below

0
AudioBubble On

You can use visibility_detector: ^0.4.0+2 package and wrap with your widget or control your animation timing using onVisibilityChanged function.