소스 검색

minor changes

ashilkn 3 년 전
부모
커밋
fdad1dcd5d
1개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 4
      lib/utils/toast_util.dart

+ 3 - 4
lib/utils/toast_util.dart

@@ -13,14 +13,13 @@ Future<void> showToast(String message,
         toastLength: toastLength,
         toastLength: toastLength,
         gravity: ToastGravity.TOP,
         gravity: ToastGravity.TOP,
         timeInSecForIosWeb: 1,
         timeInSecForIosWeb: 1,
-        // backgroundColor: Colors.blueGrey[900]
-        backgroundColor: Color.fromRGBO(59, 59, 59, 0.23),
+        backgroundColor: Color.fromRGBO(127, 127, 127, 0.5),
         textColor: Colors.white,
         textColor: Colors.white,
         fontSize: 16.0);
         fontSize: 16.0);
   } else {
   } else {
     EasyLoading.instance
     EasyLoading.instance
-      ..backgroundColor = Color.fromRGBO(59, 59, 59, 0.23)
-      ..indicatorColor = Color.fromRGBO(59, 59, 59, 0.23)
+      ..backgroundColor = Color.fromRGBO(127, 127, 127, 0.5)
+      ..indicatorColor = Color.fromRGBO(127, 127, 127, 0.5)
       ..textColor = Colors.white
       ..textColor = Colors.white
       ..userInteractions = true
       ..userInteractions = true
       ..loadingStyle = EasyLoadingStyle.custom;
       ..loadingStyle = EasyLoadingStyle.custom;