Skip to content

Instantly share code, notes, and snippets.

@ramonrabello
Last active November 28, 2023 19:22
Show Gist options
  • Save ramonrabello/4c19ce0f01bf598974a830913ebd0d97 to your computer and use it in GitHub Desktop.
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
// 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