Skip to content

Instantly share code, notes, and snippets.

@mcatta
Last active October 26, 2022 13:11
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 mcatta/f58713f5c070cf6529247d4ac3b51bba to your computer and use it in GitHub Desktop.
Save mcatta/f58713f5c070cf6529247d4ac3b51bba to your computer and use it in GitHub Desktop.
Column {
Row {
TextField(
placeholder = { Text(text = "Owner") },
value = contentState.owner, onValueChange = { /* On type */ }
)
Button(
content = { Text(text = "OK") },
onClick = { /* Confirm */ }
)
}
LazyColumn {
// item {} to render items
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment