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

It's a carousel package for image slider with a diffrent options, include null safety.

carousel #

Installation #

pubspec.yaml:

dependencies:
  flutter_image_slider: ^0.0.1

Import package #

import 'package:flutter_image_slider/carousel.dart';

Basic #

  Carousel(
                // widgets
                items: [
                  Container(
                    color: Colors.blue,
                  ),
                  Container(
                    color: Colors.green,
                  ),
                  Container(
                    color: Colors.yellow,
                  )
                ],
              )

with Auto scroll #

  Carousel(
               autoScroll: true,
                // widgets
                items: [
                  Container(
                    color: Colors.blue,
                  ),
                  Container(
                    color: Colors.green,
                  ),
                  Container(
                    color: Colors.yellow,
                  )
                ],
              )
21
likes
110
pub points
88%
popularity

Publisher

unverified uploader

It's a carousel package for image slider with a diffrent options, include null safety.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_image_slider