Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damianaldair/license_view_fluent_ui
Creates a view that shows licenses for software used by the application
https://github.com/damianaldair/license_view_fluent_ui
dart fluent-design fluent-ui flutter license widget widgets
Last synced: about 2 months ago
JSON representation
Creates a view that shows licenses for software used by the application
- Host: GitHub
- URL: https://github.com/damianaldair/license_view_fluent_ui
- Owner: DamianAldair
- License: mit
- Created: 2024-12-08T01:32:19.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-08T01:38:26.000Z (about 2 months ago)
- Last Synced: 2024-12-08T02:08:12.768Z (about 2 months ago)
- Topics: dart, fluent-design, fluent-ui, flutter, license, widget, widgets
- Language: Dart
- Homepage: https://pub.dev/packages/license_view_fluent_ui
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# License View for Fluent UI
by [Damian Aldair](https://damianaldair.github.io).
---
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`.
```yaml
dependencies:
fluent_ui:
license_view_fluent_ui:
```Import the package.
```dart
import 'package:fluent_ui/fluent_ui.dart';
import 'package:license_view_fluent_ui/license_view_fluent_ui.dart';
```Now, you can use the view.
```dart
Navigator.push(
context,
FluentPageRoute(builder: (_) => LicenseView()),
);
```