feat: Implement the home screen with new UI components and assets, and refine authentication screens and routing.

This commit is contained in:
pradeepkumar
2026-02-24 03:19:55 +05:30
parent 4f8ad7fe49
commit 0bc8852c17
31 changed files with 1540 additions and 24 deletions

View File

@@ -81,7 +81,7 @@ class _SignupScreenState extends ConsumerState<SignupScreen> {
child: SafeArea(
child: SingleChildScrollView(
padding: const EdgeInsets.symmetric(horizontal: 24),
child: authState.status == AuthStatus.success
child: authState.status == AuthStatus.authenticated
? _buildSuccessContent(authState)
: _buildFormContent(authState),
),