UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

13 lines (9 loc) 366 B
'use strict'; 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() );