GeekyAnts / infinite-carousel-flutter

Carousel in flutter. Supports features like infinite looping, friction effect, multiple scroll physics and control over item anchor and velocity.
https://pub.dev/packages/infinite_carousel
MIT License
50 stars 30 forks source link

Just a question #21

Closed Welnnys closed 8 months ago

Welnnys commented 8 months ago

Is there a way I can make it start the carousel from the second item instead of the first?

https://pastebin.com/ZLxsMdUb

manuindersekhon commented 8 months ago

@Welnnys , you can pass initialItem argument to InfiniteScrollController Eg, InfiniteScrollController(initialItem: 1)

Welnnys commented 8 months ago

works flawlessly, thank you :3