Return Value 戻り値
A view that fixes the center of this view at position
.
あるビュー、それはこのビューの中心をposition
に固定したものです。
Availability 有効性
Technology
A view that fixes the center of this view at position
.
あるビュー、それはこのビューの中心をposition
に固定したものです。
position
The point at which to place the center of this view. それにこのビューの中心を置くことになるポイント。
Use the position(_:)
modifier to place the center of a view at a specific coordinate in the parent view using a CGPoint
to specify the x
and y
offset.
Text("Position by passing a CGPoint()")
.position(CGPoint(x: 175, y: 100))
.border(Color.gray)