Return Value 戻り値
A view modified with respect to its horizontal alignment according to the computation performed in the method’s closure. あるビュー、それの水平整列に関してこのメソッドのもつクロージャにおいて実行される計算によって修正されたもの。
Availability 有効性
Technology
func alignmentGuide(_ g: HorizontalAlignment
, computeValue: @escaping (ViewDimensions
) -> CGFloat
) -> some View
A view modified with respect to its horizontal alignment according to the computation performed in the method’s closure. あるビュー、それの水平整列に関してこのメソッドのもつクロージャにおいて実行される計算によって修正されたもの。
g
A Horizontal
value at which to base the offset.
computeValue
A closure that returns the offset value to apply to this view. あるクロージャ、それはこのビューに適用するオフセット値を返します。
Use alignment
to calculate specific offsets to reposition views in relationship to one another. You can return a constant or can use the View
argument to the closure to calculate a return value.
alignment
を使って、特定のオフセットを計算して、ビューそれらをお互いの関係において再度位置決定してください。あなたは、定数を返すことができます、またはView
引数をクロージャに対して使って戻り値を計算することができます。
In the example below, the HStack
is offset by a constant of 50 points to the right of center:
下の例において、HStack
は50ポイントの定数によって中心の右へとオフセットされます:
VStack {
Text("Today's Weather")
.font(.title)
.border(.gray)
HStack {
Text("🌧")
Text("Rain & Thunderstorms")
Text("⛈")
}
.alignmentGuide(HorizontalAlignment.center) { _ in 50 }
.border(.gray)
}
.border(.gray)
Changing the alignment of one view may have effects on surrounding views. Here the offset values inside a stack and its contained views is the difference of their absolute offsets. あるビューの整列を変更することは、周りのビューに影響を与えるかもしれません。ここでスタックそしてそれの含んでいるビューの内側のオフセット値それらは、それらの絶対オフセットの違いがあります。