Lesson 35: Dialogs & Alerts
showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text('Alert'),
content: Text('This is a dialog'),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: Text('Close'),
),
],
),
);