web_hid 0.2.1+1 web_hid: ^0.2.1+1 copied to clipboard
A starting point for Dart libraries or applications.
// ignore_for_file: avoid_print, avoid_web_libraries_in_flutter
import 'dart:html' show Event, EventListener;
import 'dart:js' show allowInterop;
import 'package:flutter/material.dart';
import 'package:web_hid/web_hid.dart';
import 'ledger_nano_s_page.dart';
import 'mac_key_page.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 Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('web_hid example'),
),
body: Center(
child: Column(
children: [
ElevatedButton(
child: const Text('canUse'),
onPressed: () {
bool canUse = canUseHid();
print('canUse $canUse');
},
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
child: const Text('hid.subscribeConnect'),
onPressed: () {
hid.subscribeConnect(_handleConnect);
print('hid.subscribeConnect success');
},
),
ElevatedButton(
child: const Text('hid.unsubscribeConnect'),
onPressed: () {
hid.unsubscribeConnect(_handleConnect);
print('hid.unsubscribeConnect success');
},
),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
child: const Text('hid.subscribeDisconnect'),
onPressed: () {
hid.subscribeDisconnect(_handleDisconnect);
print('hid.subscribeDisconnect success');
},
),
ElevatedButton(
child: const Text('hid.unsubscribeDisconnect'),
onPressed: () {
hid.unsubscribeDisconnect(_handleDisconnect);
print('hid.unsubscribeDisconnect success');
},
),
],
),
ElevatedButton(
child: const Text('Mac Key Conf'),
onPressed: () {
var route = MaterialPageRoute(builder: (context) {
return const MacKeyPage();
});
Navigator.of(context).push(route);
},
),
ElevatedButton(
child: const Text('Ledger Nano S'),
onPressed: () {
var route = MaterialPageRoute(builder: (context) {
return const LedgerNanoSPage();
});
Navigator.of(context).push(route);
},
),
],
),
),
);
}
}
final EventListener _handleConnect = allowInterop((Event event) {
print('_handleConnect $event');
});
final EventListener _handleDisconnect = allowInterop((Event event) {
print('_handleDisconnect $event');
});