showLoading function

void showLoading()

Implementation

void showLoading(){
  Get.dialog(
    AlertDialog(
      backgroundColor: kBgNewColor,
      content: Column(
          mainAxisSize: MainAxisSize.min,
          children: [
            LoadingAnimationWidget.threeArchedCircle(color: Colors.white, size: 50),
            const SizedBox(height: 20),
            const Text("Kutib turing ..."),
          ]
      ),

    ),
    barrierDismissible: false,
  );
}