Recap - Badge Maker
Part of the Introduction to SwiftUI section of Coddy's Swift journey. Lesson 18 of 50.
Challenge
MediumMake a PRO badge. Style the text with, in this order:
- the
.captionfont, bold - 8 points of padding
- a purple background
- white letters
- a
Capsuleclip 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