Skip to content

Instantly share code, notes, and snippets.

@phatnhse
Created July 28, 2023 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phatnhse/9c405375316ccea05ae9c82883297abc to your computer and use it in GitHub Desktop.
Save phatnhse/9c405375316ccea05ae9c82883297abc to your computer and use it in GitHub Desktop.
simple text field - jc
@Composable
private fun SimpleTextField() {
var text = ""
TextField(value = text, onValueChange = {
text = it
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment