📌

Jetpack Composeで角丸する

2022/10/05に公開
Image(
    painter = painterResource(id = R.drawable.flower),
    contentDescription = null,
    modifier = Modifier.clip(RoundedCornerShape(10.dp)),
)

Discussion