light 0.0.8 light: ^0.0.8 copied to clipboard
A Flutter plugin for probing data from the light sensor using a platform channel. Works for Android only, since the light sensor API is not available on iOS.
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:light/light.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _luxString = 'Unknown';
Light _light;
StreamSubscription _subscription;
void onData(int luxValue) async {
print("Lux value: $luxValue");
setState(() {
_luxString = "$luxValue";
});
}
void stopListening() {
_subscription.cancel();
}
void startListening() {
_light = new Light();
try {
_subscription = _light.lightSensorStream.listen(onData);
}
on LightException catch (exception) {
print(exception);
}
}
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
startListening();
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: const Text('Plugin example app'),
),
body: new Center(
child: new Text('Running on: $_luxString\n'),
),
),
);
}
}