Thank you, I will review that session. Yes, this is on iOS. In my app, the SwiftUI navigationTitle was getting truncated at larger sizes. My solve was to shorten it, and add in a subtitle at largest sizes to still convey meaning. private func navigationTitleAbridged(for title: String) -> String { if dynamicTypeSize >= .accessibility2 { return fullSqueeze(title) } if dynamicTypeSize >= .xxxLarge { return halfSqueeze(title) } return title }
Topic:
General
SubTopic:
Accessibility & Inclusion Q&A