2021-04-10 18:45:44 +00:00
|
|
|
import 'dart:io';
|
|
|
|
import 'dart:math';
|
|
|
|
import 'dart:typed_data';
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:nearby_connections/nearby_connections.dart';
|
2021-04-11 02:52:37 +00:00
|
|
|
import 'package:flutter_udid/flutter_udid.dart';
|
2021-04-10 18:45:44 +00:00
|
|
|
|
2021-04-10 19:01:03 +00:00
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
|
2021-04-10 18:45:44 +00:00
|
|
|
class BluetoothPage extends StatefulWidget {
|
2021-04-10 19:01:03 +00:00
|
|
|
BluetoothPage({Key? key, required this.title}) : super(key: key);
|
2021-04-10 18:45:44 +00:00
|
|
|
final String title;
|
|
|
|
|
|
|
|
@override
|
|
|
|
_BluetoothPageState createState() => _BluetoothPageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _BluetoothPageState extends State<BluetoothPage> {
|
2021-04-11 02:52:37 +00:00
|
|
|
final Future<String> _id = FlutterUdid.consistentUdid;
|
2021-04-10 19:48:24 +00:00
|
|
|
// String getId() =>
|
|
|
|
// SharedPreferences.getInstance().then((s) => s.getString('id') ?? '0');
|
2021-04-10 18:45:44 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: Text(widget.title),
|
|
|
|
),
|
2021-04-11 02:52:37 +00:00
|
|
|
body: FutureBuilder<String>(
|
|
|
|
future: _id, // a previously-obtained Future<String> or null
|
|
|
|
builder: (BuildContext context, AsyncSnapshot<String> snapshot) {
|
|
|
|
String content = "Loading id...";
|
|
|
|
if (snapshot.hasData) {
|
|
|
|
content = "ID: ${snapshot.data!}";
|
|
|
|
}
|
|
|
|
return ListView(
|
|
|
|
children: <Widget>[
|
|
|
|
Container(
|
|
|
|
child: Text(content),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}),
|
2021-04-10 18:45:44 +00:00
|
|
|
);
|
|
|
|
}
|
2021-04-10 19:48:24 +00:00
|
|
|
|
|
|
|
void showSnackbar(dynamic a) {
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
|
|
|
|
content: Text(a.toString()),
|
|
|
|
));
|
|
|
|
}
|
2021-04-10 18:45:44 +00:00
|
|
|
}
|