flutter_alert 0.4.0
Flutter package which shows a crossplatform alert messages on Android (Material) and iOS (Cupertino).
flutter_alert
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!