0

Is there any library or plugin that has the feature to enable infinite scroll with a slider/swiper view like the one below? I have searched for similar sliders, but I haven't found any. infinite horizontal image slider

Radhabinod
  • 116
  • 1
  • 4

1 Answers1

0

you can just use the PageView.builder() and not specifying the itemCount

final yourPageController= PageController(initialPage: 10000);

PageView.builder(
      controller: yourPageController,
      itemBuilder: (context, index) {
        return Center(
          child: Text('page number $index'),
        );
      },
   ),

since I didn't specify the itemCount, it's now an infinite PageView that you can use and customize.

Gwhyyy
  • 7,554
  • 3
  • 8
  • 35