Skip to content

Instantly share code, notes, and snippets.

@zurche
Created July 27, 2023 12:49
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 zurche/60286bd219320a00ea0aa124580b4724 to your computer and use it in GitHub Desktop.
Save zurche/60286bd219320a00ea0aa124580b4724 to your computer and use it in GitHub Desktop.
Column(modifier = Modifier.padding(top = 50.dp, start = 30.dp)) {
Text(
text = "My Crypto Cap",
color = Color.White,
style = MaterialTheme.typography.displaySmall,
fontWeight = FontWeight.ExtraLight
)
Text(
text = "${data.value} ${data.currency}",
color = Color.White,
style = MaterialTheme.typography.displayMedium,
fontWeight = FontWeight.ExtraBold
)
MonthlyCapPreview(data.monthlyPreview) //<--- HERE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment