stackbarNotification static method

void stackbarNotification(
  1. BuildContext context,
  2. String text
)

Implementation

static void stackbarNotification(BuildContext context, String text) {
  ScaffoldMessenger.of(context).showSnackBar(
    SnackBar(
      backgroundColor: Get.theme.scaffoldBackgroundColor,
      content: Text(
        text,
        textAlign: TextAlign.center,
      ),
      duration: const Duration(milliseconds: 800),
    ),
  );
}