questionasker
questionasker

Reputation: 2697

Flutter - How to make lazy loading on PageView?

How to lazily load widget in a PageView?

Upvotes: 7

Views: 3334

Answers (1)

CopsOnRoad
CopsOnRoad

Reputation: 268384

You can use PageView.builder for this.

Example:

PageView.builder(
  itemCount: 100,
  itemBuilder: (context, index) => YourWidget(),
),

Upvotes: 19

Related Questions