showCustomSnackbar method
show Snackbar with Custom Message
Implementation
void showCustomSnackbar({String? mesg, Color? bgColor, Color? textColor}) {
SnackBar snack = SnackBar(
content: Text(
mesg ?? '',
style: TextStyle(color: textColor),
),
backgroundColor: bgColor,
elevation: 2,
behavior: SnackBarBehavior.floating,
margin: const EdgeInsets.all(16),
shape: const RoundedRectangleBorder(),
);
if (_context != null) {
ScaffoldMessenger.of(_context!).showSnackBar(snack);
}
}