Acc_no_drop_down_functionality

This commit is contained in:
2025-05-30 17:55:36 +05:30
parent 83ad2b2e52
commit c0e892341b
5 changed files with 317 additions and 8 deletions

View File

@@ -53,7 +53,7 @@ class KMobile extends StatelessWidget {
builder: (context, state) {
// Handle different authentication states
if (state is AuthInitial || state is AuthLoading) {
return const _SplashScreen();
return const SplashScreen();
}
if(state is ShowBiometricPermission){
@@ -73,8 +73,8 @@ class KMobile extends StatelessWidget {
}
// Simple splash screens component
class _SplashScreen extends StatelessWidget {
const _SplashScreen();
class SplashScreen extends StatelessWidget {
const SplashScreen();
@override
Widget build(BuildContext context) {