Created
March 23, 2022 08:18
-
-
Save Farhandroid/f0adeb11df7d03abfc9905a35a558045 to your computer and use it in GitHub Desktop.
ComposableWithoutState
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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