Return Value 戻り値
A view that scales this view to fit its parent, maintaining this view’s aspect ratio. あるビュー、それはこのビューをそれの親にぴったり合うように拡大縮小したものです、このビューのもつアスペクト比を保っています。
Availability 有効性
Technology
func scaledToFit() -> some View
A view that scales this view to fit its parent, maintaining this view’s aspect ratio. あるビュー、それはこのビューをそれの親にぴったり合うように拡大縮小したものです、このビューのもつアスペクト比を保っています。
Use scaled
to scale this view to fit its parent, while maintaining the view’s aspect ratio as the view scales.
Circle()
.fill(Color.pink)
.scaledToFit()
.frame(width: 300, height: 150)
.border(Color(white: 0.75))
This method is equivalent to calling aspect
with a nil
aspectRatio and a content mode of Content
.