0 purchases
crawl sticker
Create a crawl sticker indicator for your lists.
Getting started #
Install it via your favourite tool or:
dart pub add crawl_sticker
copied to clipboard
Usage #
final decoration = BoxDecoration(
color: Colors.red,
);
Widget build(BuildContext context) {
// Wrap [StickerWidget]s in [CrawlStickerSurface]
// and change [StickerWidget.show] to crawl sticker on that surface like a worm.
return CrawlStickerSurface(
child: Column(
children: [
StickerWidget(
decoration: decoration,
show: false,
),
StickerWidget(
decoration: decoration,
show: false,
),
StickerWidget(
decoration: decoration,
show: true,
),
StickerWidget(
decoration: decoration,
show: false,
),
StickerWidget(
decoration: decoration,
show: false,
),
],
),
);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.