Created
March 12, 2021 18:40
-
-
Save pablobaldez/395222435bc56722dbf549e8532c3957 to your computer and use it in GitHub Desktop.
Sample with two line and single line row
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 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