This commit is contained in:
Tibo De Peuter 2023-04-11 21:53:03 +02:00
parent 4bc6334c0a
commit d9a96e92ca
4 changed files with 4 additions and 4 deletions

View file

@ -19,7 +19,7 @@ import androidx.navigation.compose.rememberNavController
import be.ugent.sel.studeez.common.snackbar.SnackbarManager import be.ugent.sel.studeez.common.snackbar.SnackbarManager
import be.ugent.sel.studeez.navigation.StudeezDestinations import be.ugent.sel.studeez.navigation.StudeezDestinations
import be.ugent.sel.studeez.screens.home.HomeScreen import be.ugent.sel.studeez.screens.home.HomeScreen
import be.ugent.sel.studeez.screens.sign_in.LoginScreen import be.ugent.sel.studeez.screens.log_in.LoginScreen
import be.ugent.sel.studeez.screens.sign_up.SignUpScreen import be.ugent.sel.studeez.screens.sign_up.SignUpScreen
import be.ugent.sel.studeez.screens.splash.SplashScreen import be.ugent.sel.studeez.screens.splash.SplashScreen
import be.ugent.sel.studeez.ui.theme.StudeezTheme import be.ugent.sel.studeez.ui.theme.StudeezTheme

View file

@ -1,4 +1,4 @@
package be.ugent.sel.studeez.screens.sign_in package be.ugent.sel.studeez.screens.log_in
import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Column

View file

@ -1,4 +1,4 @@
package be.ugent.sel.studeez.screens.sign_in package be.ugent.sel.studeez.screens.log_in
data class LoginUiState( data class LoginUiState(
val email: String = "", val email: String = "",

View file

@ -1,4 +1,4 @@
package be.ugent.sel.studeez.screens.sign_in package be.ugent.sel.studeez.screens.log_in
import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.mutableStateOf
import be.ugent.sel.studeez.common.ext.isValidEmail import be.ugent.sel.studeez.common.ext.isValidEmail