about_custom 2.0.1 copy "about_custom: ^2.0.1" to clipboard
about_custom: ^2.0.1 copied to clipboard

Displays an About dialog, which describes the application, can show licenses, changelog, and other information.

About Custom #

Displays an About dialog, which describes the application.

Example

Buy Me A Coffee

Usage #

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

Example #

  showAboutPage(
    context: context,
    values: {
      'version': '1.0',
      'year': DateTime.now().year.toString(),
    },
    applicationLegalese: 'Copyright © Thorito, {{ 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'),
      ),
    ),
  );
3
likes
105
points
67
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Displays an About dialog, which describes the application, can show licenses, changelog, and other information.

Repository (GitHub)
View/report issues
Contributing

License

Pixar (license)

Dependencies

flutter, flutter_markdown, markdown, path, simple_mustache, url_launcher

More

Packages that depend on about_custom