flutter_alert 0.4.0 copy "flutter_alert: ^0.4.0" to clipboard
flutter_alert: ^0.4.0 copied to clipboard

Flutter package which shows a crossplatform alert messages on Android (Material) and iOS (Cupertino).

flutter_alert #

Build Status

Flutter package which shows a crossplatform alert messages on Android (Material) and iOS (Cupertino).

Getting Started #

Add this to your package's pubspec.yaml file:

dependencies:
  flutter_alert: ^0.4.0

You can install packages from the command line:

$ flutter packages get

Alternatively, your editor might support flutter packages get. Check the docs for your editor to learn more.

Example #

In your Dart code, add this import:

import 'package:flutter_alert/flutter_alert.dart';

And later show an alert when neccessary:

  void _showMessageDialog() {
    showAlert(
      context: context,
      title: "Awesome feature enabled.",
    );
  }

  void _showQuestionDialog() {
    showAlert(
      context: context,
      title: "Delete file?",
      body: "Should we delete the file XYZ?",
      actions: [
        AlertAction(
          text: "Delete",
          isDestructiveAction: true,
          onPressed: () {
            // TODO
          },
        ),
      ],
      cancelable: true,
    );
  }

Contributors #

Thanks goes to these people (emoji key):


Christoph Jerolimov
💻 📖 ⚠️

Christian Stahl

💻 🤔

Pascal Welsch

🤔

This project follows the all-contributors specification. Contributions of any kind welcome!

9
likes
40
pub points
82%
popularity

Publisher

unverified uploader

Flutter package which shows a crossplatform alert messages on Android (Material) and iOS (Cupertino).

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_alert