Skip to content

Instantly share code, notes, and snippets.

@SuvidhaMalaviya
Created February 5, 2023 12:42
Show Gist options
  • Save SuvidhaMalaviya/0ba7ac5654c8434a9d22496c6ec7b29a to your computer and use it in GitHub Desktop.
Save SuvidhaMalaviya/0ba7ac5654c8434a9d22496c6ec7b29a to your computer and use it in GitHub Desktop.
Android Jetpack Compose
import androidx.compose.Composable
import androidx.ui.core.Text
import androidx.ui.material.TextField
@Composable
fun SimpleTextField(onValueChange: (String) -> Unit) {
var text by state { "" }
TextField(value = text, onValueChange = { text = it; onValueChange(it) })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment