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

How to preview your layout at different Dynamic Type sizes

Paul Hudson    @twostraws   

Updated for Xcode 14.2

When building apps it’s critical to make sure your layouts work great with all ranges of Dynamic Type. This is partly because SwiftUI natively supports it, partly because many people use smaller font sizes because they want a higher information density, but mostly because many people with accessibility needs rely on it.

Fortunately, all of SwiftUI’s components natively adapt to Dynamic Type sizes, and it’s even easy to preview your designs at various sizes by using the \.sizeCategory environment value in your preview

For example, if you wanted to see how a view looks with extra small text, you would add .environment(\.sizeCategory, .extraSmall) to your content view preview, like this:

struct ContentView_Previews: PreviewProvider {
   static var previews: some View {
      Group {
         ContentView()
            .environment(\.sizeCategory, .extraSmall)
      }
   }
}

The Xcode Preview showing some very small text.

You can also send back a group of previews, all using different size categories. This allows you to see the same design at various font sizes side by side.

So, this code shows the design at extra small size, regular size, and the largest possible size:

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
            .environment(\.sizeCategory, .extraSmall)

        ContentView()

        ContentView()
            .environment(\.sizeCategory, .accessibilityExtraExtraExtraLarge)
    }
}

Xcode showing previews with small, regular, and large text sizes.

If your design works great across all three of those, you’re good to go.

Tip: If your preview is zoomed right in, you should either scroll around or zoom out to the other previews.

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.4/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.