5-Day Swift Coding Challenge: Day 3

Apr 23 2025 · Swift 6.0, iOS 18, Swift Playground 4.6

Lesson 01: Day 3: Making a User Interface

Demo: Making your First SwiftUI App

Episode complete

Play next episode

Next

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

To get started writing SwiftUI apps, launch your Swift Playground app, In the title screen, choose the Create a New App option.

Text("Hello")
Text("There")
HStack {
    Text("Hello")
    Text("There")
}
ZStack {
    Text("Hello")
    Text("There")
}
VStack {

}
    Text("Swift Apprentice: Fundamentals")
    Text("Beginning programming with Swift! This book covers the fundamentals
      of Swift: Apple’s modern programming language for iOS, iPadOS, macOS,
      watchOS and beyond. ")
HStack {

}
Text("📕")
Text("🖨️")
Text("💾")
See forum comments
Cinema mode Download course materials from Github
Previous: Understanding SwiftUI Next: Demo: Adding Images