Search code examples
flutterflutter-packages

flutter widget carousel instead of just image carousel?


I need to implement a carousel view for a list of items( let's say students). I would like to be able to display profile image, name and grade (3 items) within each carousel. So far I have only found carousels for just images like this one: https://pub.dev/packages/carousel_pro#-readme-tab-

are there any packages that can allow me to put multiple widgets (example: image,text,text) for each slide?


Solution

  • you try out Carousel Slider package (https://pub.dev/packages/carousel_slider). I used this on a project where I needed to create a carousel of widgets.