flutter_image_overlap 0.0.8 copy "flutter_image_overlap: ^0.0.8" to clipboard
flutter_image_overlap: ^0.0.8 copied to clipboard

A Flutter widget to display overlapping circular images with customizable size and spacing. Ideal for avatars and profile photos.

example/main.dart

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

/// A simple Flutter app demonstrating the usage of the [OverlappingImages] widget.
void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('OverlappingImages Example'),
        ),
        body: const Center(
          child: OverlappingImages(
            images: [
              NetworkImage('https://example.com/image1.jpg'),
              NetworkImage('https://example.com/image1.jpg'),
              NetworkImage('https://example.com/image1.jpg'),
              NetworkImage('https://example.com/image1.jpg'),
              NetworkImage('https://example.com/image1.jpg'),
            ],
            imageRadius: 15.0,
            overlapOffset: 8.0,
          ),
        ),
      ),
    );
  }
}
5
likes
160
points
396
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter widget to display overlapping circular images with customizable size and spacing. Ideal for avatars and profile photos.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_image_overlap