FLUTTER ECOSYSTEM

DavBfr/flutter_about

एप्लिकेशन का वर्णन करने वाला एक अबाउट डायलॉग प्रदर्शित करने के लिए Flutter प्लगइन

flutter_about प्रोजेक्ट कवर
Stars
18
Forks
15
अंतिम पुश (UTC)
22 अक्टू॰ 2024
प्रोजेक्ट स्थिति
सक्रिय
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'),
      ),
    ),
  );