changelog_widgets_fluent_ui 1.0.2
changelog_widgets_fluent_ui: ^1.0.2 copied to clipboard
Flutter package to read 'CHANGELOG.md' file and display it in the app as a Fluent UI widget.
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>
copied to clipboard
Initialization #
Add the markdown file to your pubspec.yaml
, in the flutter section, for example:
flutter:
assets:
- CHANGELOG.md
copied to clipboard
Import the package.
import 'package:changelog_widgets/changelog_widgets_fluent_ui.dart';
import 'package:fluent_ui/fluent_ui.dart';
copied to clipboard
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
.