flutter_image_slider

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter image slider

carousel #
Installation #
pubspec.yaml:
dependencies:
flutter_image_slider: ^0.0.1
copied to clipboard
Import package #
import 'package:flutter_image_slider/carousel.dart';
copied to clipboard
Basic #
Carousel(
// widgets
items: [
Container(
color: Colors.blue,
),
Container(
color: Colors.green,
),
Container(
color: Colors.yellow,
)
],
)
copied to clipboard
with Auto scroll #
Carousel(
autoScroll: true,
// widgets
items: [
Container(
color: Colors.blue,
),
Container(
color: Colors.green,
),
Container(
color: Colors.yellow,
)
],
)
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.