showComingSoon function
- BuildContext context
Implementation
void showComingSoon(BuildContext context) {
showDialog(
context: context,
builder: (context) => AlertDialog(
title: const Text('Coming Soon'),
content: const Text('This feature is coming soon.'),
actions: [
TextButton(
child: const Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
),
);
}