sticker_editor_plus 1.1.0 sticker_editor_plus: ^1.1.0 copied to clipboard
A widget that lets you modify and move your text and image according to your boundaries.
1.1.0 #
Support custom controller Icons. [issue]
- [Widget] Introduced props:
resizeIcon
,rotateIcon
,closeIcon
andeditIcon
[patch]
// Skip the parameters to set default Icon
StickerEditingView(
rotateIcon: const Icon(Icons.heart_broken),
closeIcon: const Icon(Icons.star),
rotateIcon: const Icon(Icons.rectangle),
editIcon: const Icon(Icons.edit),
)
StickerEditingBox(
rotateIcon: const Icon(Icons.heart_broken),
closeIcon: const Icon(Icons.star),
rotateIcon: const Icon(Icons.rectangle),
)
TextEditingBox(
rotateIcon: const Icon(Icons.heart_broken),
closeIcon: const Icon(Icons.star),
rotateIcon: const Icon(Icons.rectangle),
)
1.0.0 #
This library was originally created by Harsh Radadiya.
Initial release based on original repository, including a few enhancements.
- [Widget] Introduced props:
viewOnly
,onSave
,texts
,pictures
andbackgroundColor
. - [Widget] Introduced custom controller designing interfaces.
- [Model] Introduced JSON DTO for
PictureModel
andTextModel
. - [Model] TextModel:
angle
to set custom rotation. - [Flutter] Upgraded versions of kotlin, flutter/dart and internal dependencies.
- [Bug] Fixed
'delta' isn't defined
. [Issue]