digit_showcase 1.0.2+1 copy "digit_showcase: ^1.0.2+1" to clipboard
digit_showcase: ^1.0.2+1 copied to clipboard

Customized showcase view

Digit Showcase #

The showcase widget is a wrapper widget that provides a way to highlight or showcase a widget. It is useful for highlighting a widget in a list of widgets or provide a functionality to provide visual help to understand the functionality of the widget.

Features #

  • Provides a showcase or highlight of the wrapped widget.

Getting started #

To use this package, add the following dependency to your pubspec.yaml file:

dependencies:
  digit_showcase: ^latest
copied to clipboard

Usage #

Wrap the top layer of your widget tree with the Showcase widget.

ShowcaseWidget(
enableAutoScroll: true,
builder: Builder(
builder: (context) {
}
);
copied to clipboard

Provide localizations for the showcase widget.

  final date = ShowcaseItemBuilder(
    messageLocalizationKey: i18.showcase_date.date,
  );
copied to clipboard

Now use .buildWith to build the showcase widget.

date.buildWith(child: Text('Date'));
copied to clipboard

Explore the package for more showcase items and their usage.

3
likes
120
points
259
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.08 - 2025.03.23

Customized showcase view

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

digit_ui_components, flutter

More

Packages that depend on digit_showcase