이미지뒤에 원형주기
작성일
Image("test")
.resizable()
.frame(width: 150, height: 150)
.clipShape(Circle())
.overlay(
Circle().stroke(Color.black, lineWidth: 5)
)
또는
var body: some View {
Image("turtlerock")
.clipShape(Circle())
.overlay {
Circle().stroke(.white, lineWidth: 4)
}
.shadow(radius: 7)
}