create visitor password

This commit is contained in:
mohammad
2024-08-15 17:01:15 +03:00
parent 20ed718c64
commit 213fa48741
7 changed files with 241 additions and 86 deletions

View File

@ -56,8 +56,8 @@ class MyApp extends StatelessWidget {
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), // Set up color scheme
useMaterial3: true, // Enable Material 3
),
// home: VisitorPasswordDialog()
home:isLoggedIn == 'Success' ? const HomePage() : const LoginPage(),
home: VisitorPasswordDialog()
// home:isLoggedIn == 'Success' ? const HomePage() : const LoginPage(),
));
}
}