splash screen now reroutes to sign up screen
This commit is contained in:
parent
97569f9a9f
commit
aa63342195
1 changed files with 4 additions and 2 deletions
|
@ -3,6 +3,7 @@ package be.ugent.sel.studeez.screens.splash
|
||||||
import androidx.compose.runtime.mutableStateOf
|
import androidx.compose.runtime.mutableStateOf
|
||||||
import be.ugent.sel.studeez.domain.AccountDAO
|
import be.ugent.sel.studeez.domain.AccountDAO
|
||||||
import be.ugent.sel.studeez.domain.LogService
|
import be.ugent.sel.studeez.domain.LogService
|
||||||
|
import be.ugent.sel.studeez.navigation.StudeezDestinations
|
||||||
import be.ugent.sel.studeez.screens.StudeezViewModel
|
import be.ugent.sel.studeez.screens.StudeezViewModel
|
||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
@ -18,9 +19,10 @@ class SplashViewModel @Inject constructor(
|
||||||
|
|
||||||
showError.value = false
|
showError.value = false
|
||||||
if (accountDAO.hasUser) {
|
if (accountDAO.hasUser) {
|
||||||
// openAndPopUp( <homeScreen>, SPLASH_SCREEN)
|
// TODO this should go to the home page
|
||||||
|
openAndPopUp(StudeezDestinations.SIGN_UP_SCREEN, StudeezDestinations.SPLASH_SCREEN)
|
||||||
} else{
|
} else{
|
||||||
// openAndPopUp(<login>, SPLASH_SCREEN)
|
openAndPopUp(StudeezDestinations.SIGN_UP_SCREEN, StudeezDestinations.SPLASH_SCREEN)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in a new issue