lindi_sticker_widget 1.0.3
lindi_sticker_widget: ^1.0.3 copied to clipboard
Lindi Sticker Widget is a flutter plugin to flip, rotate, resize, move, delete, edit any widgets.
1.0.3 #
- Initial widget position is deprecated
- Fixed when
selectedWidget
returns null - Fixed when stickers goes outside of child (background)
- Update project
1.0.1 #
- Breaking:
LindiController
is changed. Now you can customizeLindiStickerIcon
inside controller.
LindiController controller = LindiController(
icons: [
LindiStickerIcon(
icon: Icons.done,
alignment: Alignment.topRight,
onTap: () {
controller.selectedWidget!.done();
}),
LindiStickerIcon(
icon: Icons.close,
alignment: Alignment.topLeft,
onTap: () {
controller.selectedWidget!.delete();
}),
.
.
.
],
);
- Breaking:
controller.addWidget
is renamed tocontroller.add
- Breaking: Get index of selected widget is changed.
controller.onPositionChange((index) {
print("widgets size: ${controller.widgets.length}, current index: $index");
});
- Breaking:
updateWidget
is changed.
controller.selectedWidget!.edit(const Text('Hello'));
- Resize widget
- Initial widget position
- Bug fixes
0.1.3 #
- Get index of selected widget
- Update widget
- Bug fixes
0.1.1 #
- Lock Widget
- Now easier to scale widget
- Customize
- Bug fixes
0.0.4 #
- Publish