func scaledToFill () -> some View
Scales this view to fill its parent.
このビューを拡大縮小して、それの親いっぱいに満たします。
func scaledToFit () -> some View
Scales this view to fit its parent.
このビューを拡大縮小してそれの親にぴったり合わせます。
func scaleEffect (CGFloat, anchor: UnitPoint ) -> some View
Scales this view’s rendered output by the given amount in both the horizontal and vertical directions, relative to an anchor point.
このビューのもつ描出された出力をこの与えられた量によって水平と垂直方向の両方で、あるアンカーポイントに関して、拡大縮小します。
func scaleEffect (CGSize, anchor: UnitPoint ) -> some View
Scales this view’s rendered output by the given vertical and horizontal size amounts, relative to an anchor point.
このビューのもつ描出された出力を拡大縮小します、この与えられた水平と垂直の大きさ量によって、あるアンカーポイントに相対して。
func scaleEffect (x: CGFloat, y: CGFloat, anchor: UnitPoint ) -> some View
Scales this view’s rendered output by the given horizontal and vertical amounts, relative to an anchor point.
このビューのもつ描出された出力をこの与えられた水平と垂直の量によって、あるアンカーポイントに関して、拡大縮小します。
func aspectRatio (CGFloat?, contentMode : ContentMode ) -> some View
Constrains this view’s dimensions to the specified aspect ratio.
このビューのもつ次元それらをこの指定されたアスペクト比へと制約します。
func aspectRatio (CGSize, contentMode : ContentMode ) -> some View
Constrains this view’s dimensions to the aspect ratio of the given size.
このビューのもつ次元それらをこの与えらた大きさのアスペクト比へと制約します。