horizontal_list

Creator: coderz1093

Last updated:

Add to Cart

Description:

horizontal list

horizontal_list #






A horizontal list widget with buttons next and previous. You can customize your card for example and insert it on HorizontalListView widget.

WEB/DESKTOP



APP




Using the library #
Add the repo to your Flutter pubspec.yaml file.
dependencies:
horizontal_list: <<version>>
copied to clipboard
Then run...
flutter packages get
copied to clipboard
Example #
HorizontalListView(
width: double.maxFinite, //Width of widget
height: 200, //Height of widget
list: [Text('Text 1'), Text('Text 2')], //List of widget
iconNext: Icon(Icons.arrow_forward_ios), // Icon for button next
iconPrevious: Icon(Icons.arrow_back_ios), // Icon for button previous
curveAnimation: Curves.bounceIn, //Curve for animation
durationAnimation: Duration(milliseconds: 300), //Duration of animation
enableManualScroll: true, //Enable manual scroll
onNextPressed: () { //On button next pressed
print('On next pressed');
},
onPreviousPressed: () { //On button next pressed
print('On previous pressed');
},
),
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.