We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62f09c commit aeb0895Copy full SHA for aeb0895
lib/dialog.dart
@@ -26,6 +26,7 @@ class _AndroidDialog extends StatelessWidget {
26
actions: actions
27
.map((action) => FlatButton(
28
child: Text(action.text),
29
+ highlightColor: Color(0xFFDEDEDE),
30
onPressed: () {
31
Navigator.pop(context);
32
if (action.onPressed != null) action.onPressed();
@@ -44,7 +45,6 @@ class _IosDialog extends StatelessWidget {
44
45
final List<DialogActions> actions;
46
@override
47
Widget build(BuildContext context) {
- // TODO: implement build
48
return CupertinoAlertDialog(
49
title: title != null ? Text(title) : null,
50
content: Text(content),
0 commit comments