struct ContentView: View {
   var body: some View {
      Image("Toronto")
         .resizable()
         .scaledToFill()
         .frame(width: 250, height: 100)
         .clipped()
   }
}