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

A Flutter widget that displays image thumbnails in a compact grid with cached network images, an infinite carousel strip, and a full-screen zoomable photo viewer.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:quick_carousel_grid/quick_carousel_grid.dart';

void main() => runApp(const ExampleApp());

class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Quick Carousel Grid Example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(useMaterial3: true),
      home: const HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  static const _imageUrls = [
    'https://picsum.photos/id/1015/600/400',
    'https://picsum.photos/id/1016/600/400',
    'https://picsum.photos/id/1018/600/400',
    'https://picsum.photos/id/1020/600/400',
    'https://picsum.photos/id/1021/600/400',
    'https://picsum.photos/id/1024/600/400',
  ];

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('Quick Carousel Grid')),
      body: const Center(
        child: CarouselGrid(
          height: 285,
          width: 400,
          listUrlImages: _imageUrls,
          titleGallery: 'Photo Gallery',
          iconBack: Icon(Icons.arrow_back, color: Colors.white),
        ),
      ),
    );
  }
}
1
likes
150
points
9
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter widget that displays image thumbnails in a compact grid with cached network images, an infinite carousel strip, and a full-screen zoomable photo viewer.

Repository (GitHub)
View/report issues

Topics

#carousel #gallery #image-grid #photo-viewer

License

MIT (license)

Dependencies

cached_network_image, flutter, infinite_carousel, photo_view

More

Packages that depend on quick_carousel_grid