Jetpack Composeでボタンを透過にする

2021/09/17に公開

ボタンを投下にする方法について残しておきます。

		Button(
                    onClick = { /* Do something */ },
                    colors = ButtonDefaults.buttonColors(
                        backgroundColor = Color.Black.copy(
                            alpha = 0.7F,
                        ),
                    ),
                    modifier = Modifier
                        .height(
                            48.dp
                        )
                        .width(
                            148.dp
                        ),
                    shape = RoundedCornerShape(10.dp)
                ) {
                    Text(
                        text = "透過のボタン",
                        color = Color.White,
                        fontSize = 14.sp
                    )
                }

Discussion