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

A Flutter plugin to rotate, resize, move, delete any text, photo or other widget.

sticker_view #

A Flutter plugin to rotate, resize, move, delete any text, image or any other widget.


Available Features #

✅   Rotate
✅   Resize
✅   Move
✅   Layer Update (Change Stack position)
✅   Delete

🚀 Installation #

This plugin is available on Pub: https://pub.dev/packages/sticker_view

Add this to dependencies in your app's pubspec.yaml

sticker_view : latest_version

🔖 Usage #

Sample code to integrate can be found in example/lib/main.dart.

Integrate sticker_view

 StickerView(
            // List of Stickers
            stickerList: [
              Sticker(
                // You can give any widget as it's child
                child: Image.network(
                    "https://tinyurl.com/48ne4wj5"),
                // Must have unique id for every Sticker
                id: "uniqueId_111",
              ),
              Sticker(
                child: const Text("Hello"),
                id: "uniqueId_222",
                isText: true,
              ),
            ],
          ),

Save StickerView as Uint8List

  // Give the Image Quality (High, Medium, Low)
  await StickerView.saveAsUint8List(ImageQuality.high);

❤️ Found this project useful? #

If you found this project useful, then please consider giving it a ⭐ on Github and sharing it with your friends via social media.

=======

Contributions are welcome! Feel free to submit a pull request or open an issue for any feature requests or bugs, Create a Ticket.

74
likes
160
points
90
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin to rotate, resize, move, delete any text, photo or other widget.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on sticker_view