#5 added signup route to navgraph

This commit is contained in:
lbarraga 2023-04-08 22:35:44 +02:00
parent b2382931cb
commit 97569f9a9f

View file

@ -82,4 +82,8 @@ fun NavGraphBuilder.studeezGraph(appState: StudeezAppstate) {
composable(StudeezDestinations.LOGIN_SCREEN) {
LoginScreen(openAndPopUp = { route, popUp -> appState.navigateAndPopUp(route, popUp) })
}
composable(StudeezDestinations.SIGN_UP_SCREEN) {
SignUpScreen(openAndPopUp = { route, popUp -> appState.navigateAndPopUp(route, popUp) })
}
}