Skip to content

Instantly share code, notes, and snippets.

@zurche
Created July 26, 2023 09:02
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/106b426073a8cdcf66cf939458c5be1c to your computer and use it in GitHub Desktop.
Save zurche/106b426073a8cdcf66cf939458c5be1c to your computer and use it in GitHub Desktop.
@Composable
fun CTAMyCryptoCap(modifier: Modifier = Modifier) {
Card(
modifier = Modifier
.background(color = FullWhite)
.padding(10.dp)
.fillMaxWidth()
.height(350.dp),
colors = CardDefaults.cardColors(
containerColor = CryptoOrange
),
shape = RoundedCornerShape(20)
) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment