Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lohanidamodar/flutter_carousel
A carousel widget for flutter 1.0
https://github.com/lohanidamodar/flutter_carousel
flutter flutter-package
Last synced: 14 days ago
JSON representation
A carousel widget for flutter 1.0
- Host: GitHub
- URL: https://github.com/lohanidamodar/flutter_carousel
- Owner: lohanidamodar
- License: other
- Created: 2018-12-15T14:10:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-15T14:10:41.000Z (about 6 years ago)
- Last Synced: 2024-12-14T15:51:57.110Z (18 days ago)
- Topics: flutter, flutter-package
- Language: Dart
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Flutter Carousel
A Carousel widget for flutter apps based on PageView widget
## Usage
Only the children is the required property and needs to have more than one children.```dart
import 'package:flutter_carousel/flutter_carousel.dart';
Carousel(
animationCurve: Curves.ease,
animationDuration: const Duration(miliseconds: 250),
displayDuration: const Duration(seconds: 2)
children: [
Text('Slide 1'),
Text('Slide 2'),
Text('Slide 3'),
],
),
```