Skip to content

Instantly share code, notes, and snippets.

@mohanmanu484
Created December 6, 2023 11:04
Show Gist options
  • Save mohanmanu484/22adda76bdc579725681a2711636052c to your computer and use it in GitHub Desktop.
Save mohanmanu484/22adda76bdc579725681a2711636052c to your computer and use it in GitHub Desktop.
EmailField which uses rememberSaveable
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun EmailField(name: String, modifier: Modifier = Modifier) {
var email: String by rememberSaveable {
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