showAlert static method

void showAlert(
  1. BuildContext context,
  2. Widget content
)

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,
    ),
  );
}