Recap - Weather Card
Part of the Introduction to SwiftUI section of Coddy's Swift journey. Lesson 13 of 50.
Challenge
MediumBuild a weather card. It is a VStack with spacing: 8 that shows, from top to bottom:
- The
cloud.sun.fillsymbol - The text
Londonwith the.titlefont - An
HStackwith two texts:H: 21andL: 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