buildLoader method

Widget buildLoader()

Implementation

Widget buildLoader() {
  return Obx(
    () => loginController.isLoading.value
        ? const LoadingIndicator()
        : Container(), // Return an empty widget when not loading
  );
}