LoadingDialog constructor

const LoadingDialog({
  1. Key? key,
  2. required Widget loadingView,
  3. String content = "加载中...",
  4. bool showContent = true,
  5. double radius = 10,
  6. Color? backgroundColor = Colors.white,
  7. Color loadingColor = Colors.black,
  8. double loadingFontSize = 12,
})

Implementation

const LoadingDialog({
    super.key,
    required this.loadingView,
    this.content = "加载中...",
    this.showContent = true,
    this.radius = 10,
    super.backgroundColor = Colors.white,
    this.loadingColor = Colors.black,
    this.loadingFontSize = 12,
});