< How to adjust the position of a view using its offset | How to stack modifiers to create more advanced effects > |
Updated for Xcode 14.2
The padding()
modifier lets us add some spacing around a view, and the background()
modifier lets us set a background color. However, the way you use them matters, so it’s important to be clear about your goal in order to get the best results.
As an example, this creates a text view with a red background and white foreground, then adds system default padding to it:
Text("Hacking with Swift")
.background(.red)
.foregroundColor(.white)
.padding()
Download this as an Xcode project
And this adds system default padding then sets a red background color and a white foreground:
Text("Hacking with Swift")
.padding()
.background(.red)
.foregroundColor(.white)
Download this as an Xcode project
Those two pieces of code might look similar, but they yield different results because the order in which you apply modifiers matters. In the second example the view is padded then colored, which means the padding also gets colored red. In contrast, the first example colors then pads, so the padding remains uncolored.
So, if you want some text to have a background color wider than the text itself, make sure to use the second code example – pad then color.
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.