showAlert static method
Implementation
static void showAlert(BuildContext context, Widget content) {
ScaffoldMessenger.maybeOf(context)?.showSnackBar(
SnackBar(
margin: EdgeInsets.zero,
behavior: SnackBarBehavior.floating,
backgroundColor: Colors.transparent,
elevation: 0,
content: content,
),
);
}