about summary refs log tree commit diff
path: root/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts
diff options
context:
space:
mode:
Diffstat (limited to 'modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts')
-rw-r--r--modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts
new file mode 100644
index 000000000..e05f173d6
--- /dev/null
+++ b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts
@@ -0,0 +1,7 @@
+import {requireNativeModule} from 'expo-modules-core'
+
+const NativeModule = requireNativeModule('ExpoPlatformInfo')
+
+export function getIsReducedMotionEnabled(): boolean {
+  return NativeModule.getIsReducedMotionEnabled()
+}