showErrorMessage method
Implementation
void showErrorMessage(String text) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text(
text,
style: const TextStyle(color: Colors.white),
),
backgroundColor: Colors.red,
));
}