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

position(_:)

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

Declaration 宣言

func position(_ position: CGPoint) -> some View

Return Value 戻り値

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

Parameters パラメータ

position

The point at which to place the center of this view. それにこのビューの中心を置くことになるポイント。

Discussion 議論

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)

See Also 参照

Position