flutter_carousel_slider
flutter_carousel_slider copied to clipboard
initialPage options is not working
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')], ));