flutter_simple_sticker_view 1.0.0 flutter_simple_sticker_view: ^1.0.0 copied to clipboard
A new flutter plugin project for attach stickers on image, as you want. attached image can also be export.
flutter_simple_sticker_view #
Flutter plugin for attach stickers on image, as you want. scalable, movable. attached image can also be export.
Getting Started #
Add flutter_simple_sticker_view as a dependency in your pubspec.yaml file.
Check out the example directory for a sample app.
Usage #
Import the library via
import 'package:flutter_simple_sticker_view/flutter_simple_sticker_view.dart';
Example :
FlutterSimpleStickerView(
Container(
child: Center(child: Text("Hello, World!")),
),
[
Image.asset("assets/icons8-super-mario-50.png"),
Image.asset("assets/icons8-superman-50.png"),
Image.asset("assets/icons8-captain-america-50.png"),
Image.asset("assets/icons8-avengers-50.png"),
Image.asset("assets/icons8-iron-man-50.png"),
Image.asset("assets/icons8-batman-50.png"),
Image.asset("assets/icons8-thor-50.png"),
Image.asset("assets/icons8-venom-head-50.png"),
Image.asset("assets/icons8-homer-simpson-50.png"),
Image.asset("assets/icons8-spider-man-head-50.png"),
Image.asset("assets/icons8-harry-potter-50.png"),
Image.asset("assets/icons8-genie-lamp-50.png"),
Image.asset("assets/icons8-cyborg-50.png"),
Image.asset("assets/icons8-one-ring-50.png"),
Image.network("https://img.icons8.com/emoji/2x/wolf-emoji.png"),
Image.network("https://img.icons8.com/emoji/2x/tiger-emoji.png"),
],
)
Required paramsters #
- source: The screen to attach the sticker.
- stickerList : List of sticker.
Optional parameters #
-
stickerSize: default sticker size. width/height. (default is
100.0
) -
stickerMaxScale: maximum scale of sticker. (default is
2.0
) -
stickerMinScale: minimum scalof of sticker (default is
0.5
) -
panelHeight: sticker panel height. (default is
200
) -
panelBackgroundColor: background color of sticker panel.
-
panelStickerBackgroundColor: background color of sticker in panel.
-
panelStickercrossAxisCount: axis count of sticker (default is
4
) -
panelStickerAspectRatio: ratio of sticker in sticker panel. (default is
1.0
) -
devicePixelRatio: device pixel ratio for exporting image. (eg.
MediaQuery.of(context).devicePixelRatio
)
enjoy! 💃