Android Dev/Compose
Compose - Gradient Color Set
val gradient = horizontalGradient( listOf(ColorShallowBlue, ColorWhite), startX = 00.0f, endX = Float.POSITIVE_INFINITY, // tileMode = TileMode.Repeated ) Box(modifier = Modifier .fillMaxWidth() .background( brush = gradient, shape = RoundedCornerShape(radius) ) ) {
2021. 12. 7. 00:18