Instance Method インスタンスメソッド

font(_:)

Sets the default font for text in the view. 省略時のフォントをビューの中のテキストに対して設定します。

Declaration 宣言

func font(_ font: Font?) -> Text

Return Value 戻り値

Text that uses the font you specify. あなたが指定するフォントを使うテキスト。

Parameters パラメータ

font

The font to use when displaying this text. このテキストを表示する時に使うフォント。

Discussion 議論

Use font(_:) to apply a specific font to an individual Text View, or all of the text views in a container.

In the example below, the first text field has a font set directly, while the font applied to the following container applies to all of the text views inside that container:


VStack {
    Text("Font applied to a text view.")
        .font(.largeTitle)


    VStack {
        Text("These two text views have the same font")
        Text("applied to their parent view.")
    }
    .font(.system(size: 16, weight: .light, design: .default))
}

Applying a font to a single text view or a view container

See Also 参照

Choosing a Font フォントを選ぶ