v2.2.0about
응용 프로그램에 대한 설명, 라이선스, 변경 사항 기록 및 기타 정보를 표시하는 '정보' 대화 상자를 표시합니다.
98좋아요 4.2천30일 다운로드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'),
),
),
);