Add PlatformInfo module (#4877)

This commit is contained in:
Hailey
2024-08-05 12:21:34 -07:00
committed by GitHub
parent fb278384c6
commit 18b423396b
13 changed files with 92 additions and 38 deletions
@@ -0,0 +1,11 @@
import ExpoModulesCore
public class ExpoPlatformInfoModule: Module {
public func definition() -> ModuleDefinition {
Name("ExpoPlatformInfo")
Function("getIsReducedMotionEnabled") {
return UIAccessibility.isReduceMotionEnabled
}
}
}