showConfirmDialogNoImage static method

void showConfirmDialogNoImage({
  1. required BuildContext context,
  2. required String message,
  3. required String title,
})

Implementation

static void showConfirmDialogNoImage({
  required BuildContext context,
  required String message,
  required String title,
}) {
  Dialogs.materialDialog(
      msg: message,
      title: title,
      color: Colors.white,
      context: context,
      actions: [
        IconsOutlineButton(
          onPressed: () {
            // NavigatorService.pushNamedAndRemoveUntil(
            //     AppRoutes.f2MainviewContainerScreen);
          },
          text: 'Ok',
          textStyle: TextStyle(color: Colors.white),
          iconColor: Colors.white,
          color: Colors.green,
        ),
      ]);
  return;
}