Android Dev/Compose / / 2021. 12. 7. 00:18

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)
    )
) {

  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유