v1.0.3
flutter_mobile_carousel
Flutter Carousel-Slider-Widget, der die Darstellung von Zellen mit Drag-and-Drop-Animation ermöglicht.
24Likes 2330-Tage-Downloads25Pub-Punkte
Keine Plattformdaten
Flutter Carousel-Slider-Widget, der die Darstellung von Zellen mit Drag-and-Drop-Animation ermöglicht.
{"sdk":"flutter"}{"sdk":"flutter"}Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Flutter carousel slider widget, allow render cells with Drag-and-drop animation.
Add flutter_mobile_carousel: ^1.0.2 in your pubspec.yaml dependencies. Import the library via:
import 'package:flutter_mobile_carousel/carousel.dart';
In repository directory run this commands in terminal:
cd example
flutter run
demo.gif
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()
),
You can watch more examples in example directory