image_collage 0.0.4 copy "image_collage: ^0.0.4" to clipboard
image_collage: ^0.0.4 copied to clipboard

A collage image rendering for posts (Like Facebook)

Image Collage #

Pub Version

Easy to use image collage. with support of network images and assets images. Auto layout and on Image Click.

Features #

Image #

Video Recording #

Install #

https://pub.dev/packages/image_collage/install

Usage #

Use to show post images collaged like facebook.

Basic #

import 'package:image_collage/image_collage.dart';

List<Img> images;

images.add(Img(image: "https://url_goes_here"));
images.add(Img(image: "assets/image_goes_here",source: ImageSource.assets));

Container(
    color: Colors.white,
    child: Column(
        children: [
            ImageCollage(
                images: images,
                onClick: (clickedImg, images){
                    inspect(clickedImg)
                    //you can create a screen to expand the view and give clickedImg to show it
                    // because its the user selected image 
                    //and the other images for the ability to swipe between them all.
                    Navigator.of(context).push(MaterialPageRoute(builder: (context) => ImageViewer(clickedImg: clickedImg, images: images )));
                }
            ),
        ],
    ),
),

License #

MIT License

Copyright (c) 2022 Iliyass ZAMOURI

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
9
likes
120
pub points
81%
popularity

Publisher

verified publisheriliyass-zamouri.ga

A collage image rendering for posts (Like Facebook)

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on image_collage