FLUTTER ECOSYSTEM

DavBfr/flutter_about

애플리케이션을 설명하는 '정보' 대화 상자를 표시하기 위한 Flutter 플러그인

flutter_about 프로젝트 이미지
Stars
18
Forks
15
최근 푸시(UTC)
2024. 10. 22.
프로젝트 상태
활성
David PHAM-VAN GitHub avatar
GITHUB User

David PHAM-VAN ↗

Halifax, Canada, NS
언어DartMakefile

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 8 개
  • 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_lints개발 의존성^5.0.0
  • flutter_test개발 의존성{"sdk":"flutter"}

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

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