Luis Daivid
11/30/2022, 1:41 AMZach Klippenstein (he/him) [MOD]
11/30/2022, 11:30 PMTariyel Islami
12/03/2022, 7:51 PMval gradient = Brush.horizontalGradient(
colors = listOf(
Color(0xFF673AB7),
Color(0xFFE91E63)
)
)
Box(
contentAlignment = Alignment.Center,
modifier = Modifier
.size(height = 50.dp, width = 200.dp)
.clip(RoundedCornerShape(50))
.background(brush = gradient)
.clickable { }
) {
Text(text = "Button")
}