lindi_sticker_widget 1.0.3 copy "lindi_sticker_widget: ^1.0.3" to clipboard
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 customize LindiStickerIcon 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 to controller.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
48
likes
160
points
323
downloads

Publisher

unverified uploader

Weekly Downloads

Lindi Sticker Widget is a flutter plugin to flip, rotate, resize, move, delete, edit any widgets.

Repository (GitHub)
Contributing

Documentation

API reference

License

MIT (license)

Dependencies

flutter, vector_math

More

Packages that depend on lindi_sticker_widget