WWDC23 SALE: Save 50% on all my Swift books and bundles! >>

How to color the padding around a view

Paul Hudson    @twostraws   

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

The text “Hacking with Swift” on a red background. There is little space between the text's edges and the rectangle's edges.

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

The text “Hacking with Swift” on a red background. There is some red space around the text between its edges and the rectangle's.

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.

Save 50% in my WWDC23 sale.

SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.

Save 50% on all our books and bundles!

Similar solutions…

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 5.0/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.