Arbab Rafiq

Results 1 comments of Arbab Rafiq

Use This code its working for me import {DeviceEventEmitter, NativeModules, } from 'react-native'; const mSensorManager = NativeModules.SensorManager; constructor() { super(); mSensorManager.startLightSensor(1000); DeviceEventEmitter.addListener('LightSensor', function(data) { console.log('Light === ', data); }); }