Reduced animations - React Native
In React Native, you can use AccessibilityInfo
to check get the value of isReduceMotionEnabled
. If the value is true
, you could choose to disable (non-essential) animations in your app.
import { AccessibilityInfo } from "react-native";
if (AccessibilityInfo.isReduceMotionEnabled()) {
// Disable animations
}