- font 字体大小
Text("Hello World").font(.system(size: 22))
Text("Hello World").font(.title)
- fontWeight 黑体
Text("Hello World").fontWeight(.bold)
- foregroundColor 文字颜色
Text("Hello World").foregroundColor(.red)
- multilineTextAlignment 文字对齐方式
Text("Hello World").multilineTextAlignment(.center)
网友评论