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