< 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.
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.