bubble_showcase 0.1.0 bubble_showcase: ^0.1.0 copied to clipboard
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.
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 :