Reputation: 29
I am very new for Flutter AND I need your small help. I want to use images in slider which I already created no problem in that but I need one advice I want to slide that slider using timer. How can i do that please help. I a, stuck on this problem from 2 weeks.
Thank you
Upvotes: 0
Views: 1449
Reputation: 1
CarouselSlider(
items: items,
options: CarouselOptions(
height: 400,
aspectRatio: 16/9,
viewportFraction: 0.8,
initialPage: 0,
enableInfiniteScroll: true,
reverse: false,
autoPlay: true,
autoPlayInterval: Duration(seconds: 3),
autoPlayAnimationDuration: Duration(milliseconds: 800),
autoPlayCurve: Curves.fastOutSlowIn,
enlargeCenterPage: true,
onPageChanged: callbackFunction,
scrollDirection: Axis.horizontal,
)
)
user carousel slider packages to slider with timer
Upvotes: 0