license_view_fluent_ui 1.0.1
license_view_fluent_ui: ^1.0.1 copied to clipboard
Creates a view that shows licenses for software used by the application.
License View for Fluent UI #
by Damian Aldair.
Inspired by Flutter's LicensePage.
The easiest way to shows licenses for software used by tour application.
Getting Started #
Add following dependency to your pubspec.yaml
.
dependencies:
fluent_ui: <latest_version>
license_view_fluent_ui: <latest_version>
copied to clipboard
Import the package.
import 'package:fluent_ui/fluent_ui.dart';
import 'package:license_view_fluent_ui/license_view_fluent_ui.dart';
copied to clipboard
Now, you can use the view.
Navigator.push(
context,
FluentPageRoute(builder: (_) => LicenseView()),
);
copied to clipboard