Skip to content

Instantly share code, notes, and snippets.

@Farhandroid
Created March 23, 2022 08:17
Show Gist options
  • Save Farhandroid/85fb857695c05dd2355d7f7226294093 to your computer and use it in GitHub Desktop.
Save Farhandroid/85fb857695c05dd2355d7f7226294093 to your computer and use it in GitHub Desktop.
ComposableState
@Composable
fun Content() {
var name by remember { mutableStateOf("") }
Column(modifier = Modifier.padding(16.dp)) {
Text(
text = "Hello, $name",
modifier = Modifier.padding(bottom = 8.dp),
style = MaterialTheme.typography.h5
)
OutlinedTextField(
value = name,
onValueChange = { name = it},
label = { Text("Name") }
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment