showOpenProgressbarDialog function

void showOpenProgressbarDialog(
  1. BuildContext context
)

Implementation

void showOpenProgressbarDialog(BuildContext context) {
  Future.delayed(const Duration(milliseconds: 10)).then((value) => {
        showDialog(
            context: context,
            barrierDismissible: false,
            builder: (BuildContext context) {
              return getOpenProgressDialogWidget();
            })
      });
}