showSnackBar function
void
showSnackBar(
- BuildContext context,
- String message, {
- Duration duration = defaultSnackBarDuration,
- Color? bgColor,
Implementation
void showSnackBar(BuildContext context, String message,
{Duration duration = defaultSnackBarDuration, Color? bgColor}) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text(message),
backgroundColor: bgColor ?? const Color(0xffAD69F1),
duration: duration));
}