-
Notifications
You must be signed in to change notification settings - Fork 7.6k
/
event_channel_demo.dart
51 lines (48 loc) · 1.97 KB
/
event_channel_demo.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:platform_channels/src/accelerometer_event_channel.dart';
/// Demonstrates how to use [EventChannel] to listen continuous values
/// of Accelerometer Sensor from platform.
///
/// The widget uses a [StreamBuilder] to rebuild it's descendant whenever it
/// listens a new value from the [Accelerometer.readings] stream. It has three
/// [Text] widgets to display the value of [AccelerometerReadings.x],
/// [AccelerometerReadings.y], and [AccelerometerReadings.z] respectively.
class EventChannelDemo extends StatelessWidget {
const EventChannelDemo({super.key});
@override
Widget build(BuildContext context) {
final textStyle = Theme.of(context).textTheme.headlineSmall;
return Scaffold(
appBar: AppBar(
title: const Text('EventChannel Demo'),
),
body: Center(
child: StreamBuilder<AccelerometerReadings>(
stream: Accelerometer.readings,
builder: (context, snapshot) {
return switch (snapshot) {
AsyncSnapshot(hasError: true) =>
Text((snapshot.error as PlatformException).message!),
AsyncSnapshot(hasData: true) => Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('x axis: ${snapshot.data!.x.toStringAsFixed(3)}',
style: textStyle),
Text('y axis: ${snapshot.data!.y.toStringAsFixed(3)}',
style: textStyle),
Text('z axis: ${snapshot.data!.z.toStringAsFixed(3)}',
style: textStyle)
],
),
_ => Text('No Data Available', style: textStyle),
};
},
),
),
);
}
}