image_stickers 0.0.6 image_stickers: ^0.0.6 copied to clipboard
Plugin to apply image stickers to the background image. Drag, resize, rotate stickers.
Flutter Package to apply stickers to image. #
Try Demo.
Getting Started #
Installation #
dependencies:
...
image_stickers: 0.0.6
Usage #
ImageStickers(
backgroundImage: const AssetImage("assets/background.png"),
stickerList: [
UISticker(
imageProvider: const AssetImage("assets/sticker.png"),
x: 100,
y: 100,
editable: true)
],
)