about summary refs log tree commit diff
path: root/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts
blob: e05f173d64f8b1f6b1f8f1c3f407b6d9c81e3a90 (plain) (blame)
1
2
3
4
5
6
7
import {requireNativeModule} from 'expo-modules-core'

const NativeModule = requireNativeModule('ExpoPlatformInfo')

export function getIsReducedMotionEnabled(): boolean {
  return NativeModule.getIsReducedMotionEnabled()
}