flutter_easyloading icon indicating copy to clipboard operation
flutter_easyloading copied to clipboard

There are black lines at the four corners of the popup box on device

Open paintingStyle opened this issue 2 years ago • 2 comments

There are black lines at the four corners of the popup box on device

flutter_easyloading: ^3.0.5

image
EasyLoading.instance
      ..displayDuration = const Duration(milliseconds: 3000)
      ..animationDuration = const Duration(milliseconds: 100)
      ..indicatorType = EasyLoadingIndicatorType.circle
      ..loadingStyle = EasyLoadingStyle.custom
      ..animationStyle = EasyLoadingAnimationStyle.offset
      ..toastPosition = EasyLoadingToastPosition.top

      /// loading icon size
      ..indicatorSize = 64.0
      ..radius = 18.0
      ..fontSize = 20.0
      ..textPadding = const EdgeInsets.only(top: 0, bottom: 0)
      ..contentPadding = const EdgeInsets.symmetric(vertical: 20, horizontal: 20)
      ..progressColor = Colors.white
      ..backgroundColor = const Color(0xFF6DBCAC)
      ..indicatorColor = Colors.white
      ..textColor = Colors.white
      ..maskColor = Colors.black45
      ..userInteractions = false

      /// should allow user interactions while loading is displayed.
      ..dismissOnTap = false;


EasyLoading.showToast('msg', duration: duration);

paintingStyle avatar Feb 16 '23 02:02 paintingStyle

Same for me. It appears only if using loadingStyle = EasyLoadingStyle.custom and setting radius property.

hmG3 avatar Mar 11 '23 16:03 hmG3

Same here. But I tried what this comment suggested and the black lines gone.

RogerWalter avatar Sep 01 '23 20:09 RogerWalter