< How to make SwiftUI modifiers safer to use with @warn_unqualified_access | How to preview your layout in light and dark mode > |
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)
}
}
}
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)
}
}
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% 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.
Link copied to your pasteboard.