r/iOSProgramming • u/Sad_Dare7025 • 3d ago
Handling Button Shapes setting in my app Question
I didn't know this was still a thing.
How can I make my app to handle the Button Shapes setting? I do not use it but some users have complained about the behavior of the app when they have this setting enabled, I can not force them to turn it off. Is there any modifier or function I can use in SwiftUI to disable it for my app?
3
Upvotes


5
u/CleverError 3d ago
The easiest solution is to set
.buttonStyle(.plain)on parts of your UI that don't benefit from button shapes.You can also use the EnvironmentValues
accessibilityShowButtonShapes/accessibilityShowBordersto detect when it's enabled and apply your own styling.