Skip to content

Instantly share code, notes, and snippets.

@0xZhangKe
Created December 3, 2023 02:47
Show Gist options
  • Save 0xZhangKe/a4dbd79dbcccce3e21ffb07240ed3a10 to your computer and use it in GitHub Desktop.
Save 0xZhangKe/a4dbd79dbcccce3e21ffb07240ed3a10 to your computer and use it in GitHub Desktop.
UiState copy usage
data class LoginUiState(
val name:String,
val avatar: String,
val consentAgreed: Boolean
)
fun onAgreeChecked(){
uistate = uiState.copy(
consentAgreed = true,
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment