Menu
Coddy logo textTech

Recap - Price Tag

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

challenge icon

Challenge

Easy

Make a price tag for the latte. The text shows Latte: $3.75, built from the price constant with two decimal places. Give it the .title font and color it orange.

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