usbnfcreader 0.0.12
usbnfcreader: ^0.0.12 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