FLUTTER ECOSYSTEM

DavBfr/flutter_about

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

flutter_about project cover
Stars
18
Forks
15
Last push (UTC)
Oct 22, 2024
Project status
Active
David PHAM-VAN GitHub avatar
GITHUB User

David PHAM-VAN ↗

Halifax, Canada, NS
LanguagesDartMakefile

Packages published by this repository

Dependencies used

Dependency list 8 items
  • flutter{"sdk":"flutter"}
  • flutter_markdown^0.7.0
  • markdown>=4.0.0 <8.0.0
  • path^1.9.0
  • simple_mustache^2.1.0
  • url_launcher>=6.0.0 <7.0.0
  • flutter_lintsDevelopment^5.0.0
  • flutter_testDevelopment{"sdk":"flutter"}

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

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'),
      ),
    ),
  );