Menu
Coddy logo textTech

Recap - Weather Card

Part of the Introduction to SwiftUI section of Coddy's Swift journey. Lesson 13 of 50.

challenge icon

Challenge

Medium

Build a weather card. It is a VStack with spacing: 8 that shows, from top to bottom:

  1. The cloud.sun.fill symbol
  2. The text London with the .title font
  3. An HStack with two texts: H: 21 and L: 12

Try it yourself

import SwiftUI

@main
struct CoddyApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

All lessons in Introduction to SwiftUI

Practice on your own: Swift playground