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

flipsForRightToLeftLayoutDirection(_:)

Sets whether this view flips its contents horizontally when the layout direction is right-to-left. レイアウト方向が右から左の時に、このビューがそれの内容を水平にフリップするかどうかを設定します。

Declaration 宣言

func flipsForRightToLeftLayoutDirection(_ enabled: Bool) -> some View

Return Value 戻り値

A view that conditionally flips its contents horizontally when the layout direction is right-to-left. あるビュー、それは条件付きでそれの内容を水平にフリップします、レイアウト方向が右から左である場合に。

Parameters パラメータ

enabled

A Boolean value that indicates whether this view flips its content horizontally when the layout direction is right-to-left. あるブール値、それはこのビューがそれの内容を水平にフリップするかどうかを指し示します、レイアウト方向が右から左である場合に。

Discussion 議論

Use flipsForRightToLeftLayoutDirection(_:) when you need the system to horizontally flip the contents of the view to support right-to-left layout.

In the example below, the text flips horizontally when the layout system is right-to-left:


Text("שָׁלוֹם")
   .flipsForRightToLeftLayoutDirection(true)

See Also 参照

Text Layout