Account screen after logged in

This commit is contained in:
2025-04-25 00:08:57 +08:00
parent d7d9e41db3
commit 057ab16381
14 changed files with 768 additions and 54 deletions

View File

@ -8,8 +8,17 @@ class AppRouter extends RootStackRouter {
@override
List<AutoRoute> get routes => [
AutoRoute(page: ExploreRoute.page, path: '/'),
AutoRoute(page: AccountRoute.page, path: '/account'),
AutoRoute(
page: ExploreRoute.page,
path: '/',
meta: {'bottomNav': true},
initial: true,
),
AutoRoute(
page: AccountRoute.page,
path: '/account',
meta: {'bottomNav': true},
),
AutoRoute(page: LoginRoute.page, path: '/auth/login'),
AutoRoute(page: CreateAccountRoute.page, path: '/auth/create-account'),
];