flutter_mobile_carousel

Creator: coderz1093

Last updated:

0 purchases

flutter_mobile_carousel Image
flutter_mobile_carousel Images
Add to Cart

Description:

flutter mobile carousel

Flutter carousel #
Flutter carousel slider widget, allow render cells with Drag-and-drop animation.
Features #

Easy to use API
Drag and drop without lags
Uniformly accelerated motion animation
Available customize carousel cells and background
Auto size cells by horizontal
Fix cells count
Motion event handling

Installation #
Add flutter_mobile_carousel: ^1.0.2 in your pubspec.yaml dependencies. Import the library via:
import 'package:flutter_mobile_carousel/carousel.dart';
copied to clipboard
Run example #
In repository directory run this commands in terminal:
cd example
flutter run
copied to clipboard

Usage #
Create simple Carousel widget:
Carousel(
rowCount: 3,
children: [
'Item 1',
'Item 2',
'Item 3',
'Item 4',
'Item 5',
'Item 6',
].map((String itemText) {
return DefaultCarouselItem(itemText);
}).toList()
),
copied to clipboard
You can watch more examples in example directory

License

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

Files In This Product:

Customer Reviews

There are no reviews.