flutter_carousel 0.0.1 copy "flutter_carousel: ^0.0.1" to clipboard
flutter_carousel: ^0.0.1 copied to clipboard

discontinued

A flutter Carousel widget based on PageView widget

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.

import 'package:flutter_carousel/flutter_carousel.dart';
Carousel(
    animationCurve: Curves.ease,
    animationDuration: const Duration(miliseconds: 250),
    displayDuration: const Duration(seconds: 2)
    children: <Widget>[
        Text('Slide 1'),
        Text('Slide 2'),
        Text('Slide 3'),
    ],
),
0
likes
10
pub points
50%
popularity

Publisher

verified publisherdlohani.com.np

A flutter Carousel widget based on PageView widget

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_carousel