Avoiding text truncation in SwiftUI with Dynamic Type
Dynamic Type can cause SwiftUI Text to truncate at large sizes even in a ScrollView. Fix by applying fixedSize(horizontal: false, vertical: true) to let text wrap horizontally and expand vertically. Ensure the layout can grow vertically at accessibility sizes.