📌

Jetpack Composeで角丸する

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

Discussion