struct ContentView: View {
   var body: some View {
      VStack {
         Spacer()
         HStack {
            Image(systemName: "cloud")
               .font(.system(size: 80))
            VStack(alignment: .leading) {
               Text("City")
                  .foregroundColor(.gray)
               Text("New York")
                  .font(.title)
            }
            Spacer()
         }
      }
      .safeAreaInset(edge: .bottom, content: {
         HStack {
            Spacer()
            Text("Important")
               .padding()
            Spacer()
         }.background(.yellow)
      })
   }
}