##画像を追加する
import SwiftUI
struct CircleImage: View {
var body: some View {
Image("8D23A0D7-AB6F-477F-BDED-00D4C8804B99_1_105_c")
.resizable()
.clipShape(Circle())
.overlay(
Circle().stroke(Color.gray, lineWidth: 4))
.aspectRatio(contentMode: .fit)
.shadow(radius: 10)
}
}
struct CircleImage_Previews: PreviewProvider {
static var previews: some View {
CircleImage()
}
}
お決まりの
var body: some View { }
のなかにimage("")とすることで簡単に画像を追加することができる。
切り抜くのはclipShape()
で、今回はCircle()としている。
shadow(radius: )
で影をつけている。
resizable()で画面サイズに合わせて収縮させている。