struct ContentView: View {
   var body: some View {
      HStack {
         Text("Manchester")
            .font(.title)
            .lineLimit(1)
         Image(systemName: "cloud")
            .font(.system(size: 80))
         Text("New York City")
            .font(.title)
            .lineLimit(1)
            .layoutPriority(1)
      }
   }
}