struct ContentView: View {
   var body: some View {
      HStack {
         Image(systemName: "cloud")
            .font(.system(size: 80))
         Text("New York")
      }
      .frame(minWidth: 0, maxWidth: .infinity, alignment: .leading)
   }
}