openlp-mobile-remote/lib/widgets/show_alert_dialog.dart

31 lines
665 B
Dart
Raw Normal View History

2019-07-24 21:00:24 +00:00
import 'package:flutter/material.dart';
class ShowAlertDialog extends StatelessWidget {
@override
Widget build(BuildContext context) {
return AlertDialog(
actions: <Widget>[
FlatButton(
child: Text('Cancel'),
onPressed: () {
Navigator.of(context).pop();
},
),
FlatButton(
child: Text('Show'),
onPressed: () {
Navigator.of(context).pop();
},
)
],
content: TextField(
maxLines: 5,
autofocus: true,
decoration: InputDecoration(
border: OutlineInputBorder(),
),
),
);
}
}