SwiftUI Font指定

Font Structureのstaticメソッドを使用します。

static func custom(_ name: String, size: CGFloat) -> Font
フォン名とサイズを指定。

example

Text("Hello World")
.font(Font.custom("AppleSDGothicNeo-UltraLight", size: 40.0))

Swift

Posted by shi-n