You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in the topic. I wish there is a way to fix this issue when changing font size dynamically the app doesn't respond well, in fact the UI is no longer rendered correctly.
Use the following to replicate if you wish:-
struct ScrollViewExample4: View {
@State var contentOffset: CGPoint = .zero
var body: some View {
BBScrollView([.horizontal, .vertical]) {
VStack(alignment: .center, spacing: 10) {
ForEach(0..<18) { _ in Text("Test") } // Test on SE then increase font size using accessibility after the app is run.
}
.frame(maxWidth: .infinity)
.padding()
}
}
}
The text was updated successfully, but these errors were encountered:
Hi,
As mentioned in the topic. I wish there is a way to fix this issue when changing font size dynamically the app doesn't respond well, in fact the UI is no longer rendered correctly.
Use the following to replicate if you wish:-
The text was updated successfully, but these errors were encountered: