struct ContentView: View {
   var body: some View {
      HStack {
         Image(systemName: "cloud")
            .font(.system(size: 80))
         Spacer()
         VStack(alignment: .leading) {
            Text("City")
               .foregroundColor(.gray)
            Text("New York")
               .font(.title)
         }
      }
   }
}