【发布时间】:2020-04-30 20:34:00
【问题描述】:
【问题讨论】:
-
您的屏幕截图显示“字体名称”...没有
compact字体样式。
标签: ios swiftui typography
【问题讨论】:
compact 字体样式。
标签: ios swiftui typography
查看:
Text("Hello World")
.h1()
扩展名:
extension Text {
func h1() -> Text {
self
.foregroundColor(Color.init(hex: "#FFFFFF", alpha: 1.0))
.font(.custom("SF Pro Display", size: 80))
}
}
或
Text("Hello World")
.font(.custom("SF Pro Display", size: 80))
【讨论】: