carousel 0.1.0 copy "carousel: ^0.1.0" to clipboard
carousel: ^0.1.0 copied to clipboard

Dart 1 only

A Flutter Carousel.

Carousel #

A Flutter simple Carousel Widget.

Usage #

As simple as using any flutter Widget. The Carousel package hides all the complexity (almost none, it's Flutter!) of implementing a carousel.

Example: First things first, add the module to your project pubspec.yaml:

...
dependencies:
 ...
 carousel: ^0.0.1
...

And install it using flutter packages get on your project folder. After that, just import the module and use it:

import 'package:carousel/carousel.dart';

//...
new SizedBox(
  height: 240.0,
  child: new Carousel(
    children: [
      new NetworkImage('https://pbs.twimg.com/profile_images/760249570085314560/yCrkrbl3_400x400.jpg'),
      new NetworkImage('https://webinerds.com/app/uploads/2017/11/d49396_d9c5d967608d4bc1bcf09c9574eb67c9-mv2.png')
    ].map((netImage) => new Image(image: netImage)).toList(),
  ),
)


This code snippet creates an Carousel with an height of 240.0 that contains both the logos of Flutter and React native, as an example. Simples as that! 😄

Credits #

Developed by Gabriel Valério gbrvalerio@gmail.com

Contributing #

Feel free to help!

1
likes
10
pub points
61%
popularity

Publisher

unverified uploader

A Flutter Carousel.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on carousel