feat: Implement email verification flow for user registration, update API base URL, and refine agent search screen UI.

This commit is contained in:
pradeepkumar
2026-03-16 15:32:17 +05:30
parent 9512f5ef8d
commit e195696733
5 changed files with 14 additions and 17 deletions

View File

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