Last updated:
0 purchases
oval image combiner
Oval Image Combiner #
A Flutter widget that allows you to combine up to four images into an oval shape.
Features #
Combine 1 to 4 images into an oval shape.
Supports both raster and SVG images.
Customizable image size.
Customizable borders and dividers.
Getting started #
Installation #
Add the following to your pubspec.yaml file:
dependencies:
oval_image_combiner: ^[LATEST_VERSION]
copied to clipboard
Usage #
Import the package:
import 'package:oval_image_combiner/oval_image_combiner.dart';
copied to clipboard
Use the OvalImageCombiner widget:
OvalImageCombiner(
borderColor: Colors.grey,
borderWidth: 2,
dividerColor: Colors.grey,
dividerThickness: 2,
imageUrls: [
'https://example.com/image1.png',
'https://example.com/image2.png',
// Add up to 4 image URLs
],
imageSize: 60,
)
copied to clipboard
Example #
Here you can find an example probject showcasing how to use the OvalImageCombiner widget.
License #
This probject is licensed under the MIT License. See the LICENSE file for details.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.