v2.2.0about
Zeigt ein About-Dialogfeld an, das die Anwendung beschreibt und Lizenzen, Änderungsprotokolle sowie weitere Informationen anzeigen kann.
98Likes 420030-Tage-Downloads110Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Flutter-Plugin zum Anzeigen eines Über-Dialogs, der die Anwendung beschreibt
{"sdk":"flutter"}^0.7.0>=4.0.0 <8.0.0^1.9.0^2.1.0>=6.0.0 <7.0.0^5.0.0{"sdk":"flutter"}Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Displays an About dialog, which describes the application.
ExampleTo use this plugin, add about as a dependency in your pubspec.yaml file.
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'),
),
),
);