2.0以后的Label可以使用图片和文字组合
默认图标在左文字在右
代码
struct ContentView: View {
@State private var progressValue = 0.0
var body: some View {
VStack{
Label("使用系统图片",systemImage:"message")
Label("图片文件",image:"iconImage")
Label(
title: { Text("使用颜色图标或者图片文件") },
icon: {RoundedRectangle(cornerRadius: 10).fill(Color.red).frame(width: 10, height: 19, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)}
)
}
}
}
效果
网友评论