Skip to content

Instantly share code, notes, and snippets.

@pablobaldez
Created March 12, 2021 18:21
Show Gist options
  • Save pablobaldez/3beaa1075404559d8220ef6cac3259b3 to your computer and use it in GitHub Desktop.
Save pablobaldez/3beaa1075404559d8220ef6cac3259b3 to your computer and use it in GitHub Desktop.
TwoLine texts with Composable
@Composable
fun TwoLine(
modifier: Modifier = Modifier,
secondary: @Composable () -> Unit,
primary: @Composable () -> Unit,
) {
Column(modifier = modifier) {
primary()
secondary()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment