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

position(x:y:)

Positions the center of this view at the specified coordinates in its parent’s coordinate space. このビューの中心を、それの親のもつ座標空間におけるこの指定された座標に置きます。

Declaration 宣言

func position(x: CGFloat = 0, y: CGFloat = 0) -> some View

Return Value 戻り値

A view that fixes the center of this view at x and y. あるビュー、それはこのビューの中心をxyに固定したものです。

Parameters パラメータ

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座標。

Discussion 議論

Use the position(x:y:) 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)

See Also 参照

Position