Reputation: 2697
How to lazily load widget in a PageView
?
Upvotes: 7
Views: 3334
Reputation: 268384
You can use PageView.builder
for this.
Example:
PageView.builder(
itemCount: 100,
itemBuilder: (context, index) => YourWidget(),
),
Upvotes: 19