Menu
Coddy logo textTech

Recap - Badge Maker

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

challenge icon

Challenge

Medium

Make a PRO badge. Style the text with, in this order:

  1. the .caption font, bold
  2. 8 points of padding
  3. a purple background
  4. white letters
  5. a Capsule clip shape

The purple area must include the padding.

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