Last active
November 28, 2023 19:22
-
-
Save ramonrabello/4c19ce0f01bf598974a830913ebd0d97 to your computer and use it in GitHub Desktop.
LoginUiState.kt - Accelerating the mobile legacy modernization: Migrate to Compose 10x faster using StackSpot AI
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
// Classe para representar o estado da UI | |
data class LoginUiState( | |
val email: String = "", | |
val password: String = "", | |
val isValid: Boolean = false, | |
val errorMessage: String? = null | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment