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

A new Flutter package for creating image carousel gallery with animated image slider.

A Flutter package for creating an image carousel with a grid.

Features

  • Display an image carousel with automatic sliding.
  • Supports landscape and portrait orientations.
  • Integrated grid of additional images.

Getting Started

To use this package, add image_carousel_gallery to your pubspec.yaml file:

dependencies:
  image_carousel_gallery: ^1.0.0

Then run:

$ flutter pub get

Usage

Add ImageCarouselGallery to your widget tree:

import 'package:image_carousel_gallery/image_carousel_gallery.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: ImageCarouselGallery(
          images: [
            'https://example.com/image1.jpg',
            'https://example.com/image2.jpg',
            
          ],
        ),
      ),
    );
  }
}

Example

For more detailed examples, check the example folder.

Additional Information

License

This project is licensed under the MIT License.

4
likes
0
pub points
56%
popularity

Publisher

unverified uploader

A new Flutter package for creating image carousel gallery with animated image slider.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

carousel_slider, flutter

More

Packages that depend on image_carousel_gallery