Переглянути джерело

Change background color for toasts

Vishnu Mohandas 4 роки тому
батько
коміт
c65f7ee770
1 змінених файлів з 1 додано та 1 видалено
  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);
 }