mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
The Dart bindings changed syntax a bit. This CL updates shake-to-reload to match the new names. R=rafaelw@chromium.org Review URL: https://codereview.chromium.org/987103003
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
<script>
|
|
import '/sky/framework/shell.dart' as shell;
|
|
import 'dart:sky';
|
|
import 'package:sky/services/sensors/sensors.mojom.dart';
|
|
|
|
// TODO(abarth): We should factor this out into a kinematics library.
|
|
class _ShakeDetector extends SensorListener {
|
|
_ShakeDetector() {
|
|
SensorServiceProxy sensorService = new SensorServiceProxy.unbound();
|
|
shell.requestService(sensorService);
|
|
|
|
_stub = new SensorListenerStub.unbound()..impl = this;
|
|
sensorService.ptr.addListener(SensorType_ACCELEROMETER, _stub);
|
|
}
|
|
|
|
void onAccuracyChanged(int accuracy) {
|
|
}
|
|
|
|
void onSensorChanged(SensorData data) {
|
|
double value = data.values[0] + data.values[1] + data.values[2];
|
|
if (isShaking && value < 15.0)
|
|
didCompleteShake();
|
|
else if (value > 40.0)
|
|
isShaking = true;
|
|
}
|
|
|
|
void didCompleteShake() {
|
|
window.location.assign(document.URL);
|
|
_stub.close();
|
|
}
|
|
|
|
bool isShaking = false;
|
|
SensorListenerStub _stub;
|
|
}
|
|
|
|
_ShakeDetector _detector;
|
|
|
|
void _init(_) {
|
|
_detector = new _ShakeDetector();
|
|
}
|
|
</script>
|