v2.2.0about
アプリケーションの説明、ライセンス、変更履歴、その他の情報を表示する「について」ダイアログを表示します。
98いいね 420030日間ダウンロード110Pub ポイント
AndroidiOSWebmacOSWindowsLinux
アプリケーションを説明する「について」ダイアログを表示するためのFlutterプラグイン
{"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"}以下は英語原文のスナップショットです。最新版は 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'),
),
),
);