Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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()),
);
```