v1.0.0+2
platform_alert_dialog
Flutter plugin for build alert dialogs adapted to the current platform.
17Likes 330-day downloads40Pub points
Platforms unavailable
Flutter plugin for build alert dialogs adapted to the current platform.
{"sdk":"flutter"}{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
Flutter plugin for build alert dialogs adapted to the current platform.
showDialog<void>(
context: context,
builder: (BuildContext context) {
return PlatformAlertDialog(
title: Text('Rewind and remember'),
content: SingleChildScrollView(
child: ListBody(
children: <Widget>[
Text('You will never be satisfied.'),
Text('You\’re like me. I’m never satisfied.'),
],
),
),
actions: <Widget>[
PlatformDialogAction(
child: Text('Cancel'),
onPressed: () {
Navigator.of(context).pop();
},
),
PlatformDialogAction(
child: Text('Regret'),
actionType: ActionType.Preferred,
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
| Screenshot with theme Android | Screenshot with theme iOs |
|---|---|
| https://raw.githubusercontent.com/riccardoratta/platform_alert_dialog/HEAD/screenshots/alert-android.png | https://raw.githubusercontent.com/riccardoratta/platform_alert_dialog/HEAD/screenshots/alert-ios.png |