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

foregroundColor(_:)

Sets the color of the text displayed by this view. このビューによって表示されるテキストの色を設定します。

Declaration 宣言

func foregroundColor(_ color: Color?) -> Text

Return Value 戻り値

A text view that uses the color value you supply. あなたが提供する色値を使うテキストビュー。

Parameters パラメータ

color

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

Discussion 議論

Use this method to change the color of the text rendered by a text view. このメソッドを使用して、あるテキストテキストビューによって描出されるテキストの色を変更してください。

For example, you can display the names of the colors red, green, and blue in their respective colors: 例えば、あなたは色、赤、緑、そして青の名前を各自の色で表示できます:


HStack {
    Text("Red").foregroundColor(.red)
    Text("Green").foregroundColor(.green)
    Text("Blue").foregroundColor(.blue)
}

Three text views arranged horizontally, each containing

See Also 参照

Styling the View’s Text ビューのもつテキストにスタイルをつける