init static method

void init()

Implementation

static void init() {
  EasyLoading.instance
    ..indicatorType = EasyLoadingIndicatorType.ring // 指示器类型
    ..loadingStyle = EasyLoadingStyle.custom // loading样式 自定义
    ..indicatorSize = 45.w // 指示器大小
    ..lineWidth = 2.w // 进度条宽度
    ..radius = 10.0.r // 圆角
    ..progressColor = Colors.white // 进度条颜色
    ..backgroundColor = Colors.black.withOpacity(0.7) // 背景颜色
    ..indicatorColor = Colors.white // 指示器颜色
    ..textColor = Colors.white // 文字颜色
    ..textStyle = TextStyle(fontSize: 16.sp, color: Colors.white)
    ..maskColor = Colors.black.withOpacity(0.6) // 遮罩颜色
    ..userInteractions = true // 用户交互
    ..dismissOnTap = false; // 点击关闭
}