beacon_flutter 2.0.0
beacon_flutter: ^2.0.0 copied to clipboard
The Beacon Flutter Plugin provides Flutter developers with tools useful for setting up communication between native wallets supporting Tezos and dApps that implement beacon-sdk.
import 'dart:convert';
import 'package:beacon_flutter/beacon_flutter.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Beacon Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Beacon Demo Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final _beaconPlugin = Beacon();
final TextEditingController pairingRequestController = TextEditingController(
text:
"2bZ1dGiCLs8hdFsabfvL4m3PX1kmqjgSdw2oMc1GSyk5LvEZh3yhSkpV3ZbJn8aHGDq6bU5dJ1yFMYWVfjn1JCDejikPoiWdb4P3jMncik2NZYTkEJF5GEuiyqhHDyfDY4gdffninMYynexkW9WALX3NPyLML1DB6HuwFCjKZ4CfSJgU4rPzqYKgsdGdVCka9Af6AcWaWEv4Edev171NWRNovJuPXEdE4Yf48zSoL36wxnFUMu8Xz8LV2m9iedKvJZrBLtNSYegHhczXgRJB7tHhNrHUta1xrCUecymC1UkGcXdjgCXyRXWDUfExQe3LbpF");
bool hasPeers = false;
String value = '';
@override
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) {
startBeacon();
});
}
startBeacon() async {
final Map response =
await _beaconPlugin.startBeacon(walletName: "Altme Wallet");
setState(() {
hasPeers = json.decode(response['success'].toString());
});
getBeaconResponse();
}
void getBeaconResponse() {
_beaconPlugin.getBeaconResponse().listen(
(data) {
setState(() {
value = data;
});
},
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Flutter Beacon Demo'),
),
body: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Container(
alignment: Alignment.centerLeft,
child: const Text('Pairing Request: '),
),
TextField(
controller: pairingRequestController,
maxLines: 10,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
ElevatedButton(
onPressed: !hasPeers
? null
: () async {
final Map response =
await _beaconPlugin.removePeers();
setState(() {
bool success =
json.decode(response['success'].toString());
hasPeers = !success;
});
if (!hasPeers) {
// ignore: use_build_context_synchronously
ScaffoldMessenger.of(context)
.showSnackBar(const SnackBar(
content: Text('Successfully disconnected.'),
));
}
},
child: const Text('Unpair'),
),
ElevatedButton(
onPressed: hasPeers
? null
: () async {
final Map response = await _beaconPlugin.pair(
pairingRequest: pairingRequestController.text,
);
setState(() {
bool success =
json.decode(response['success'].toString());
hasPeers = success;
});
if (hasPeers) {
// ignore: use_build_context_synchronously
ScaffoldMessenger.of(context)
.showSnackBar(const SnackBar(
content: Text('Successfully paired.'),
));
} else {
// ignore: use_build_context_synchronously
ScaffoldMessenger.of(context)
.showSnackBar(const SnackBar(
content: Text('Failed to pair.'),
));
}
},
child: const Text('Pair'),
),
],
),
Container(
alignment: Alignment.centerRight,
child: ElevatedButton(
onPressed: value.isEmpty
? null
: () async {
setState(() {
value = '';
});
await _beaconPlugin.respondExample();
},
child: const Text('Respond'),
),
),
const Divider(),
const SizedBox(height: 10),
Container(
alignment: Alignment.centerLeft,
child: const Text('Beacon Response: '),
),
SizedBox(
width: double.infinity,
child: SelectableText(
value,
textAlign: TextAlign.left,
),
),
],
),
),
),
);
}
}
copied to clipboard