SwiftUI Fundamentals

Feb 28 2023 · Swift 5.7, macOS Venture 13.1, Xcode 14.2

Part 1: SwiftUI Views

03. Modifiers

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 02. The View Protocol Next episode: 04. Challenge: Views & Modifiers

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

OK, we’re right where we left off in the last episode. We’ve got some text and a little swift image, here, and we’re looking to customize them a bit.

}
  🟢.padding()
Image(systemName: "swift")
  🟢.padding(/*@START_MENU_TOKEN@*/.all/*@END_MENU_TOKEN@*/, /*@START_MENU_TOKEN@*/10/*@END_MENU_TOKEN@*/)
.padding(.bottom,
.padding([.top, .leading, .trailing]❌)
Edit to 100 x 100
🟢.kerning(5.0)
.fontWeight(.Black)
	.background(Color.orange)
🟢.padding()
.background(Color.orange)
.padding([.top, .leading, .trailing])