사용자 도구

사이트 도구


android:imageincircle
imageincircle

문서의 이전 판입니다!


The snippet of image in circle is like this

//  이미지 피커 컴퍼저블
Card(shape = CircleShape, modifier = Modifier
    .padding(8.dp)
    .size(100.dp))
{
    Image(painter = if (imageUri.value.isEmpty()) { avatarImage } else { painter },
        contentDescription = "Pick Image",
        modifier = Modifier
            .wrapContentSize()
            .clickable { imageLauncher.launch("image/*") },
        contentScale = ContentScale.Crop)
}
Text(text = "Change Profile Picture")
로그인하면 댓글을 남길 수 있습니다.

android/imageincircle.1749471734.txt.gz · 마지막으로 수정됨: 저자 이거니맨