usbnfcreader 0.1.0
usbnfcreader: ^0.1.0 copied to clipboard
Android USB NFC Reader Plugin for ACR122U
usbnfcreader #
Only works for ACR122U USB NFC reader for Android
Usage #
Handling Session
// Check availability
final usbnfcreader = await Usbnfcreader.instance
// Start Session
usbnfcreader.startSession(
onDiscovered: (NfcTag tag) async {
// Do something with an NfcTag instance.
},
);
// Stop Session
usbnfcreader.stopSession();
Following events are available:
- onDiscovered
- onReaderAttached
- onReaderDetached