Skip to content

innerwilds/crawl_sticker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create a crawl sticker indicator for your lists.

Getting started

Install it via your favourite tool or:

dart pub add crawl_sticker

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(
    sticksCount: sticksCount,
    // Size available only when stick is building for crawling.
    stickBuilder: (context, StickType type, Size? size) {
      return Container(
        width: size?.width,
        height: size?.height,
        decoration: stickDecoration,
      );
    },
    // Reactive this
    selected: 2,
    child: Column(
      children: [
        SizedBox(
          width: 4,
          child: Stick(index: 0),
        ),
        SizedBox(
          width: 4,
          height: 4,
          child: Stick(index: 1),
        ),
        SizedBox(
          width: 4,
          height: 4,
          child: Stick(index: 2),
        ),
      ],
    ),
  );
}

About

Crawl sticker indicator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published