< How to use Dynamic Type with a custom font | How to detect the Reduce Motion accessibility setting > |
Updated for Xcode 14.2
SwiftUI’s automatic support of Dynamic Type means our views are free to grow and shrink according to the user’s preference. However, sometimes you might need to place limits on just how far your user interface is able to adjust, and for that we have the dynamicTypeSize()
modifier.
This can used with a fixed value, meaning that your view will ignore all Dynamic Type sizes:
Text("This will stay small")
.dynamicTypeSize(.xxLarge)
This is helpful if you want to force a particular kind of preview, for example.
You can also specify ranges, such as this one that allows any size up to and including the large size:
Text("This won't go above large")
.dynamicTypeSize(...DynamicTypeSize.large)
If you enable Xcode’s environment overrides, you can see how each of these variants adjust:
VStack {
Text("This will stay small")
.dynamicTypeSize(.small)
Text("This won't go above large")
.dynamicTypeSize(...DynamicTypeSize.large)
Text("This will scale within a range")
.dynamicTypeSize(DynamicTypeSize.large...DynamicTypeSize.xxxLarge)
Text("This will scale to any size")
}
Remember, many users rely on larger Dynamic Type sizes in order to use your app, and a surprisingly large number of users use it to cram more information onto their screen. So, try to avoid limiting the sizes you support to those times when it’s really necessary.
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.