How to lazily load widget in a PageView?
You can use PageView. builder, it will give you page index.
Snapping Page ScrollA plugin that acts similar to a PageView but either snaps to the closest page or scrolls multiple pages and then snaps, based on how fast the user scrolls.
You can use PageView.builder for this. 
Example:
PageView.builder(
  itemCount: 100,
  itemBuilder: (context, index) => YourWidget(),
),
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With