#5 added signup route to navgraph
This commit is contained in:
parent
b2382931cb
commit
97569f9a9f
1 changed files with 4 additions and 0 deletions
|
@ -82,4 +82,8 @@ fun NavGraphBuilder.studeezGraph(appState: StudeezAppstate) {
|
||||||
composable(StudeezDestinations.LOGIN_SCREEN) {
|
composable(StudeezDestinations.LOGIN_SCREEN) {
|
||||||
LoginScreen(openAndPopUp = { route, popUp -> appState.navigateAndPopUp(route, popUp) })
|
LoginScreen(openAndPopUp = { route, popUp -> appState.navigateAndPopUp(route, popUp) })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
composable(StudeezDestinations.SIGN_UP_SCREEN) {
|
||||||
|
SignUpScreen(openAndPopUp = { route, popUp -> appState.navigateAndPopUp(route, popUp) })
|
||||||
|
}
|
||||||
}
|
}
|
Reference in a new issue