v0.0.4sticker_view
कोई भी पाठ, फोटो या अन्य विजेट को घुमाने, आकार बदलने, हटाने या स्थानांतरित करने के लिए एक Flutter प्लगइन।
एक फ्लटर प्लगइन जो टेक्स्ट, तस्वीर या किसी भी अन्य विजेट को घुमाने, आकार बदलने, हटाने और स्थानांतरित करने के लिए उपयोग किया जा सकता है।
{"sdk":"flutter"}^2.0.2{"sdk":"flutter"}^1.0.0यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A Flutter plugin to rotate, resize, move, delete any text, image or any other widget.
https://github.com/gopaldhola99/sticker_view/blob/main/example/assets/sticker_view.gif
✅ Rotate
✅ Resize
✅ Move
✅ Layer Update (Change Stack position)
✅ Delete
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
Sample code to integrate can be found in example/lib/main.dart.
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,
),
],
),
// Give the Image Quality (High, Medium, Low)
await StickerView.saveAsUint8List(ImageQuality.high);
If you found this project useful, then please consider giving it a :star: 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.