Merge pull request #42 from yaso-meth/BUG-Graphical-Flicker-post-fingerprint-check

remove loading icon before finger print
This commit is contained in:
yaso-meth
2025-01-20 11:31:25 +02:00
committed by GitHub

View File

@@ -1,4 +1,3 @@
import 'package:Mzansi_Innovation_Hub/mih_components/mih_pop_up_messages/mih_loading_circle.dart';
import 'package:Mzansi_Innovation_Hub/mih_packages/authentication/biometric_check.dart';
import 'package:flutter/material.dart';
@@ -63,9 +62,8 @@ class _AuthCheckState extends State<AuthCheck> {
} else if (snapshot.data == false) {
return const SignInOrRegister();
} else {
return
// const SizedBox(width: 5, height: 5);
const Mihloadingcircle();
return const SizedBox(width: 5, height: 5);
// const Mihloadingcircle();
}
});
},