Reduced animations - iOS
On iOS, you can read the UIAccessibility.isReduceMotionEnabled
property. If the value is true
, you could choose to disable (non-essential) animations in your app. You can do this, for example, with the setAnimationsEnabled
method.
if UIAccessibility.isReduceMotionEnabled {
UIView.setAnimationsEnabled(false)
}