showErrorDialog method
Implementation
void showErrorDialog(BuildContext context, String message) {
showDialog(
context: context,
builder: (context) => AlertDialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
),
title: Row(
children: [
Icon(Icons.error_outline, color: Colors.redAccent, size: 28),
const SizedBox(width: 8),
const Text("Error"),
],
),
content: Text(
message,
style: const TextStyle(fontSize: 15),
),
actions: [
TextButton(
onPressed: () => Navigator.of(context).pop(),
child: const Text("OK"),
),
],
),
);
}