lindi_sticker_widget 1.1.0 copy "lindi_sticker_widget: ^1.1.0" to clipboard
lindi_sticker_widget: ^1.1.0 copied to clipboard

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

1.1.0 #

  • Added dismissOnTapOutside and tapToSelect properties to LindiController for more flexible sticker interaction behavior
  • Bug fixes

1.0.4 #

  • Added pixelRatio to saveAsUint8List to improve image quality
  • Removed deprecated initial position parameter
  • Update project to latest Flutter version

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
52
likes
150
points
233
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

MIT (license)

Dependencies

flutter, vector_math

More

Packages that depend on lindi_sticker_widget