loadingPopup static method

Widget loadingPopup({
  1. Key? key,
  2. Color? backgroundColor,
  3. String? text,
  4. Widget? child,
  5. TextStyle? style,
  6. Color? color,
  7. double? height,
  8. double? width,
  9. BorderRadiusGeometry? borderRadius,
  10. bool isScale = true,
  11. double strokeWidth = 4,
  12. double startScale = 1.0,
  13. double endScale = 0.6,
  14. Gradient? gradient,
})

Implementation

static Widget loadingPopup(
        {Key? key,
        Color? backgroundColor,
        String? text,
        Widget? child,
        TextStyle? style,
        Color? color,
        double? height,
        double? width,
        BorderRadiusGeometry? borderRadius,
        bool isScale = true,
        double strokeWidth = 4,
        double startScale = 1.0,
        double endScale = 0.6,
        Gradient? gradient}) =>
    GrockCustomLoadingWidget(
      backgroundColor: backgroundColor,
      child: child,
      startScale: startScale,
      isScale: isScale,
      height: height,
      width: width,
      key: key,
      strokeWidth: strokeWidth,
      endScale: endScale,
      color: color,
      borderRadius: borderRadius,
      text: text,
      textStyle: style,
      gradient: gradient,
    );