Skip to content

Instantly share code, notes, and snippets.

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