< How to adjust the position of a view using its offset | How to stack modifiers to create more advanced effects > |
Updated for Xcode 13.3
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 Spend less time managing in-app purchase infrastructure so you can focus on building your app. RevenueCat gives everything you need to easily implement, manage, and analyze in-app purchases and subscriptions without managing servers or writing backend code.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.