Changelog Widgets for Fluent UI
by Damian Aldair.
Inspired by Flutter's AboutDialog and Changelog Widgets.
The easiest way to display your Fluent UI app's changelog.
Getting Started
Add following dependency to your pubspec.yaml
.
dependencies:
fluent_ui: <latest_version>
changelog_widgets_fluent_ui: <latest_version>
Initialization
Add the markdown file to your pubspec.yaml
, in the flutter section, for example:
flutter:
assets:
- CHANGELOG.md
Import the package.
import 'package:changelog_widgets/changelog_widgets_fluent_ui.dart';
import 'package:fluent_ui/fluent_ui.dart';
Now, you can use the view and the dialog.
Available widgets
- Content for be used by other widgets:
ChangelogContent
. - Built-in Fluent UI dialog:
ChangelogDialog
. - Built-in Fluent UI view:
ChangelogView
.