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

How to make a fixed size Spacer

Paul Hudson    @twostraws   

Updated for Xcode 14.2

SwiftUI’s Spacer views automatically fill up all available space on their axis of expansion, which is a fancy way of saying they take up as much space as they can either horizontally or vertically, depending on what you put them in.

If you want to make a spacer of an exact size, just do the same thing you would do for any other kind of view: use a frame() modifier with the exact sizes you want.

For example, this shows two text views, with a 50-point spacer in between them:

VStack {
    Text("First Label")
    Spacer()
        .frame(height: 50)
    Text("Second Label")
}

Download this as an Xcode project

A phone showing the text “First Label” some distance above the text “Second Label”.

If you give the spacer a range of values, for example using .frame(minHeight: 50, maxHeight: 500), then it will automatically take up as much space as it can, up to the maximum you set. Adding some flexibility in this way is usually a good idea, so that your user interfaces scale across devices more easily.

There are some situations where you want to specify a spacer size agnostic to its layout direction, for example if your views might sometimes be in a HStack or a VStack and you want the spacer to add 50 points regardless of direction.

In this circumstance you should use the minLength initializer, like this:

VStack {
    Text("First Label")
    Spacer(minLength: 50)
    Text("Second Label")
}

Download this as an Xcode project

A phone showing “First Label” at the top of the screen and “Second Label” at the bottom.

Note: That’s a minimum length, so the spacer will still grow to be larger if space is available.

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: 4.3/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.