flutter_carousel_slider icon indicating copy to clipboard operation
flutter_carousel_slider copied to clipboard

initialPage options is not working

Open evferrer87 opened this issue 5 months ago • 0 comments

The initalPage option is not working and I am not able to set the page 2 as the default one. When tun this code it always shows the first page.

Any idea about this? thanks

return Container( child: CarouselSlider( options: CarouselOptions( aspectRatio: 2.0, enlargeCenterPage: true, enableInfiniteScroll: false, initialPage: 1, autoPlay: false, ), items: [Text('1'), Text('2'), Text('3')], ));

evferrer87 avatar Sep 03 '24 00:09 evferrer87