widget_carousel 0.0.2 copy "widget_carousel: ^0.0.2" to clipboard
widget_carousel: ^0.0.2 copied to clipboard

Carousel widget

flutter_images_slider #

A carousel slider widget, support infinite scroll and custom indicator, with autoplay feature.

Installation #

Add carousel_slider: ^0.0.1 in your pubspec.yaml dependencies. And import it:

import 'package:flutter_images_slider/flutter_images_slider.dart';

How to use #

Create a WidgetCarousel widget, and pass the required params:

        WidgetCarousel(
          items: map<Widget>(imgList, (index, i) {
            return Container(
              decoration: BoxDecoration(
                  image: DecorationImage(
                      image: NetworkImage(i),
                      fit: BoxFit.cover
                  )
              ),
            );
          }),
          autoPlay: true,
          viewportFraction: 1.0,
          aspectRatio: 2.0,
          distortion: false,
          align: IndicatorAlign.bottom,
          indicatorWidth: 5,
          updateCallback: (index) {
            setState(() {
              _current = index;
            });
          },
        )

Credits #

flutter_carousel_slider

1
likes
110
pub points
57%
popularity

Publisher

unverified uploader

Carousel widget

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on widget_carousel