Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 899 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 899 Bytes

NFC Reader

A new flutter plugin to help developers looking to use internal hardware inside Android devices for reading NFC tags.

Supported NFC Format

Platform Supported NFC Tags
Android NDEF
import 'package:nfc_reader/nfc_reader.dart';

How to use

Android setup

Add those two lines to your AndroidManifest.xml on the top

<uses-permission android:name="android.permission.NFC" />
<uses-feature
        android:name="android.hardware.nfc"
        android:required="true" />

For better details look at the demo app.

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.