Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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'),
],
),
```