added api for space management

This commit is contained in:
hannathkadher
2024-10-02 10:11:55 +04:00
parent 23f92d4901
commit ef233c414b
4 changed files with 267 additions and 4 deletions

View File

@ -12,7 +12,7 @@ class AppRoutes {
return [
GoRoute(
path: RoutesConst.auth,
builder: (context, state) => SpaceManagementPage(),
builder: (context, state) => const HomePage(),
),
GoRoute(
path: RoutesConst.home,
@ -32,7 +32,7 @@ class AppRoutes {
),
GoRoute(
path: RoutesConst.spacesManagementPage,
builder: (context, state) => SpaceManagementPage()),
builder: (context, state) => SpaceManagementPage()),
];
}
}