Scales content to fit within the frame, preserving aspect ratio. May letterbox.
.scaledToFit(): Component
Image({ url: "photo.jpg" })
.resizable()
.scaledToFit()
.frame({ width: 200, height: 200 })
Color("gray")
.frame({ width: 300, height: 200 })
.overlay(
Image({ url: "wide-banner.jpg" })
.resizable()
.scaledToFit()
)