0 purchases
android environment sensors
AndroidEnvironmentSensorsPlugin #
Environmental sensor plugin for flutter
Android only
supported sensor
TYPE_AMBIENT_TEMPERATURE
TYPE_LIGHT
TYPE_PRESSURE
TYPE_RELATIVE_HUMIDITY
TYPE_TEMPERATURE
for more information on environment sensors
Usage
Check if sensor is available or not
AndroidEnvironmentSensors androidEnvironmentSensors =AndroidEnvironmentSensors();
final exist = await androidEnvironmentSensors.isExist(AndroidEnvironmentSensors.TYPE_LIGHT);
copied to clipboard
if sensor exist then listen to it
StreamSubscription lightSubscription = androidEnvironmentSensors.lightStream.listen((event) {
print(event);
});
copied to clipboard
Remember to cancel subscription when done
lightSubscription.cancel();
copied to clipboard
check Example
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.