Return Value 戻り値
A view that scales this view to fill its parent, maintaining this view’s aspect ratio. あるビュー、それはこのビューをそれの親をいっぱいに満たすように拡大縮小したものです、このビューのもつアスペクト比を保っています。
Availability 有効性
Technology
func scaledToFill() -> some View
A view that scales this view to fill its parent, maintaining this view’s aspect ratio. あるビュー、それはこのビューをそれの親をいっぱいに満たすように拡大縮小したものです、このビューのもつアスペクト比を保っています。
Use scaled
to scale this view to fill its parent, while maintaining the view’s aspect ratio as the view scales:
scaled
を使うことで、このビューをそれの親をいっぱいに満たすように拡大縮小して、と同時にビューのもつアスペクト比はそのビューのスケールと同じに保ってください:
Circle()
.fill(Color.pink)
.scaledToFill()
.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
.