Created
July 27, 2023 12:49
-
-
Save zurche/60286bd219320a00ea0aa124580b4724 to your computer and use it in GitHub Desktop.
This file contains 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
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