Skip to content

Instantly share code, notes, and snippets.

@zurche
Created July 26, 2023 18:17
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/1e019490d512cd715f697c687d49c78c to your computer and use it in GitHub Desktop.
Save zurche/1e019490d512cd715f697c687d49c78c to your computer and use it in GitHub Desktop.
@Composable
fun CTAMyCryptoCap(modifier: Modifier = Modifier) {
val verticalOrangeGradient = Brush.verticalGradient(
colors = listOf(
CryptoOrange2,
CryptoOrange3
)
)
Card(
modifier = Modifier
.background(color = FullWhite)
.padding(10.dp)
.fillMaxWidth()
.height(350.dp),
shape = RoundedCornerShape(20)
) {
Box(
modifier = Modifier
.fillMaxSize()
.background(verticalOrangeGradient)
) {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment