-
Notifications
You must be signed in to change notification settings - Fork 17
/
main.dart
87 lines (77 loc) · 2.41 KB
/
main.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:nfc_emulator/nfc_emulator.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
NfcStatus _nfcStatus = NfcStatus.unknown;
bool _started = false;
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String? platformVersion;
NfcStatus nfcStatus = NfcStatus.unknown;
// Platform messages may fail, so we use a try/catch PlatformException.
try {
platformVersion = await NfcEmulator.platformVersion;
nfcStatus = await NfcEmulator.nfcStatus;
} on PlatformException {
platformVersion = 'Failed to get platform version.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_platformVersion = platformVersion ?? 'Unknown';
_nfcStatus = nfcStatus;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('NFC Emulator Example'),
),
body: Container(
alignment: Alignment.center,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text('Version: $_platformVersion'),
SizedBox(height: 20.0),
Text('Status: $_nfcStatus'),
SizedBox(height: 40.0),
ElevatedButton(
child: Text(_started ? "Stop Emulator" : "Start Emulator"),
onPressed: startStopEmulator),
]),
),
),
);
}
void startStopEmulator() async {
if (_started) {
await NfcEmulator.stopNfcEmulator();
} else {
await NfcEmulator.startNfcEmulator(
"666B65630001", "cd22c716", "79e64d05ed6475d3acf405d6a9cd506b");
}
setState(() {
_started = !_started;
});
}
}