Skip to content

Flutter plugin to display an About dialog, which describes the application

License

Notifications You must be signed in to change notification settings

DavBfr/flutter_about

This branch is up to date with master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f036239 · Oct 22, 2024

History

78 Commits
Jun 19, 2021
Oct 22, 2024
Oct 22, 2024
Oct 22, 2024
Jun 19, 2021
Oct 12, 2019
Jan 29, 2022
Oct 22, 2024
Aug 12, 2020
Aug 12, 2020
Mar 30, 2023
Mar 5, 2021
Oct 21, 2021
Mar 30, 2023
Oct 16, 2019
Oct 22, 2024

Repository files navigation

About

Displays an About dialog, which describes the application.

Example

Buy Me A Coffee

Usage

To use this plugin, add about as a dependency in your pubspec.yaml file.

Example

  showAboutPage(
    context: context,
    values: {
      'version': '1.0',
      'year': DateTime.now().year.toString(),
    },
    applicationLegalese: 'Copyright © David PHAM-VAN, {{ year }}',
    applicationDescription: const Text(
        'Displays an About dialog, which describes the application.'),
    children: const <Widget>[
      MarkdownPageListTile(
        icon: Icon(Icons.list),
        title: Text('Changelog'),
        filename: 'CHANGELOG.md',
      ),
      LicensesPageListTile(
        icon: Icon(Icons.favorite),
      ),
    ],
    applicationIcon: const SizedBox(
      width: 100,
      height: 100,
      child: Image(
        image: AssetImage('assets/icon.webp'),
      ),
    ),
  );

About

Flutter plugin to display an About dialog, which describes the application

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published