原文链接:https://github.com/fzhlee/SwiftUI-Guide#15Image-Style
设置图像的边框、不透明度、阴影等属性。
示例代码:
ScrollView{
VStack{
Image("girlPicture")
.border(Color.orange) //图片边框颜色
Image("girlPicture")
.border(Color.orange, width: 10) //图片边框粗细
Image("girlPicture")
.opacity(0.5) //图像透明度
Image("girlPicture")
.shadow(radius: 10) //给图像添加半径为10的阴影
Image("girlPicture")
.shadow(color: .purple, radius: 20, x: 20, y: 20) //设置图像阴影的颜色为紫色,半径为20,向右偏移20,向下偏移20
}
}
网友评论