-
-
Save PatilShreyas/84635b3d92623b1584115848d0c98f28 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private val isLoading = MutableStateFlow(false) | |
private val loggedInUser = MutableStateFlow<User?>(null) | |
private val error = MutableStateFlow<String?>(null) | |
// Combining these states to form a LoginState | |
val state: StateFlow<LoginState> = combineStates( | |
isLoading, | |
loggedInUser, | |
error | |
) { loading, user, errorMessage -> | |
LoginState(loading, user, errorMessage) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment