Browse Source

Change background color for toasts

Vishnu Mohandas 4 years ago
parent
commit
c65f7ee770
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/utils/toast_util.dart

+ 1 - 1
lib/utils/toast_util.dart

@@ -7,7 +7,7 @@ Future<void> showToast(String message, {toastLength: Toast.LENGTH_LONG}) {
       toastLength: toastLength,
       gravity: ToastGravity.BOTTOM,
       timeInSecForIosWeb: 1,
-      backgroundColor: Colors.grey[800],
+      backgroundColor: Colors.blueGrey[900],
       textColor: Colors.white,
       fontSize: 16.0);
 }