Skip to content

Instantly share code, notes, and snippets.

@pablobaldez
Created March 12, 2021 18:40
Show Gist options
  • Save pablobaldez/395222435bc56722dbf549e8532c3957 to your computer and use it in GitHub Desktop.
Save pablobaldez/395222435bc56722dbf549e8532c3957 to your computer and use it in GitHub Desktop.
Sample with two line and single line row
@Composable
fun RowPreview() {
Column {
FoundationRow {
Text(text = "Single line")
}
Divider(modifier = Modifier.dividerSize())
FoundationRow {
TwoLine(
primary = { Text(text = "Primary") },
secondary = { Text(text = "Secondary") }
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment