Return Value 戻り値
A view that offsets this view by x
and y
.
あるビュー、それはこのビューをx
とy
だけ補ったものです。
Availability 有効性
Technology
A view that offsets this view by x
and y
.
あるビュー、それはこのビューをx
とy
だけ補ったものです。
x
The horizontal distance to offset this view. このビューを補うための水平間隔。
y
The vertical distance to offset this view. このビューを補うための垂直間隔。
Use offset(x:
to shift the displayed contents by the amount specified in the x
and y
parameters.
The original dimensions of the view aren’t changed by offsetting the contents; in the example below the gray border drawn by this view surrounds the original position of the text:
Text("Offset by passing horizontal & vertical distance")
.border(Color.green)
.offset(x: 20, y: 50)
.border(Color.gray)