Skip to content

Instantly share code, notes, and snippets.

@mohanmanu484
Created December 6, 2023 11:02
Show Gist options
  • Select an option

  • Save mohanmanu484/77ee466e91d78446a3e959353d829806 to your computer and use it in GitHub Desktop.

Select an option

Save mohanmanu484/77ee466e91d78446a3e959353d829806 to your computer and use it in GitHub Desktop.
EmailField which uses remeber
@Composable
fun EmailField(name: String, modifier: Modifier = Modifier) {
var email: String by remember {
mutableStateOf("")
}
TextField(value = email, modifier = modifier, onValueChange = {
email = it
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment