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