11 lines
256 B
Swift
11 lines
256 B
Swift
import ExpoModulesCore
|
|
|
|
public class ExpoPlatformInfoModule: Module {
|
|
public func definition() -> ModuleDefinition {
|
|
Name("ExpoPlatformInfo")
|
|
|
|
Function("getIsReducedMotionEnabled") {
|
|
return UIAccessibility.isReduceMotionEnabled
|
|
}
|
|
}
|
|
}
|