bubble_showcase 0.1.0 copy "bubble_showcase: ^0.1.0" to clipboard
bubble_showcase: ^0.1.0 copied to clipboard

outdated

BubbleShowcase is a small but powerful flutter package that allows you to highlight specific parts of your app to explain them to the user or to show your app new features.

BubbleShowcase #

BubbleShowcase is a small but power flutter package that allows you to highlight specific parts of your app to explain them to the user or to showcase your app new features.

Preview

Getting Started #

This package is easy to use. Take a look at the following snippet (which is using speech_bubble) :

BubbleShowcase(
  bubbleShowCaseId: 'my_bubble_showcase',
  bubbleShowCaseVersion: 1,
  bubbleSlides: [
    RelativeBubbleSlide(
      widgetKey: widgetToHighlightKey,
      child: SpeechBubble(
        nipLocation: NipLocation.TOP,
        color: Colors.blue,
        child: Padding(
          padding: EdgeInsets.all(10),
          child: Text(
            'This is a new cool feature !',
            style: TextStyle(color: Colors.white),
          ),
        ),
      ),
    ),
  ],
  child: MyMainWidget(),
);

It creates a BubbleShowcase widget with only one BubbleSlide. This slide will highlight the widget that holds the key widgetToHighlightKey.

You have a lot of other options ! Don't hesitate to check the API Reference or the Github repo.

Contributions #

You have a lot of options to contribute to this project ! You can :

127
likes
0
points
222
downloads

Publisher

verified publisherskyost.eu

Weekly Downloads

BubbleShowcase is a small but powerful flutter package that allows you to highlight specific parts of your app to explain them to the user or to show your app new features.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, shared_preferences

More

Packages that depend on bubble_showcase