Skip to content

Instantly share code, notes, and snippets.

@sergenes
Created June 21, 2021 16:30
Show Gist options
  • Save sergenes/9c4c3b3e290c35798f18f7efbfa7e693 to your computer and use it in GitHub Desktop.
Save sergenes/9c4c3b3e290c35798f18f7efbfa7e693 to your computer and use it in GitHub Desktop.
Column(Modifier.weight(1f)) {
Column(
horizontalAlignment = Alignment.Start,
modifier = Modifier.padding(normalSpace)
) {
Text(
title,
style = MaterialTheme.typography.subtitle1,
color = secondaryColor,
maxLines = 1,
overflow = TextOverflow.Ellipsis
)
Spacer(Modifier.height(smallSpace))
Text(
subTitle,
style = MaterialTheme.typography.subtitle2,
color = secondaryColor,
maxLines = 1,
overflow = TextOverflow.Ellipsis
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment