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

A new Flutter package for creating an image carousel gallery with an 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.
  • Infinite Scrool.

Support

  • Android
  • IOS
  • Web
  • AndroidTV
  • MacOS
  • Windows
  • AppleTV
  • Demo

    Android Demo

    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
    130
    pub points
    52%
    popularity

    Publisher

    unverified uploader

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

    Repository (GitHub)
    View/report issues

    Documentation

    API reference

    License

    MIT (LICENSE)

    Dependencies

    carousel_slider, flutter

    More

    Packages that depend on image_carousel_gallery