A CGSize
that represents the horizontal and vertical amount to scale the view.
あるCGSize
、それはこのビューを拡大縮小するための水平および垂直の量を表します。
Instance Method
インスタンスメソッド
scale
scaleEffect(_:anchor:)
Scales this view’s rendered output by the given vertical and horizontal size amounts, relative to an anchor point.
このビューのもつ描出された出力を拡大縮小します、この与えられた水平と垂直の大きさ量によって、あるアンカーポイントに相対して。
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
Technology
- Swift
UI
Declaration 宣言
Parameters パラメータ
scale
anchor
Discussion 議論
Use scale
to scale a view by applying a scaling transform of a specific size, specified by scale
.
scale
を使用して、scale
で指定される、ある特定の大きさの拡大縮小変換を適用することによってビューを拡大縮小してください。
Image(systemName: "envelope.badge.fill")
.resizable()
.frame(width: 100, height: 100, alignment: .center)
.foregroundColor(Color.red)
.scaleEffect(CGSize(x: 0.9, y: 1.3), anchor: .leading)
.border(Color.gray)