react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
13 lines (9 loc) • 366 B
text/typescript
;
import { createReducedMotionManager } from './ReducedMotionCommon';
type localGlobal = typeof global & Record<string, unknown>;
export function isReducedMotionEnabledInSystem() {
return !!(global as localGlobal)._REANIMATED_IS_REDUCED_MOTION;
}
export const ReducedMotionManager = createReducedMotionManager(
isReducedMotionEnabledInSystem()
);