Patrocinado

Complete Guide to Building NFC Reader and Writer Apps in Flutter Using NFC Manager Package – Step-by-Step Tutorial

0
1KB


Near Field Communication (NFC) is a short-range wireless technology that lets devices share data when they are close. You find it in contactless payments, smart business cards, and other daily tools that make life easy. For mobile developers, adding an NFC reader and writer to apps opens up many possibilities.

Flutter, Google’s UI toolkit, lets you build apps for mobile, web, and desktop from one codebase. It makes creating cross-platform apps with rich features more efficient. The NFC Manager Flutter package helps implement NFC reader writer features on both Android and iOS. This step-by-step tutorial will show how to build an NFC app in Flutter that can read from and write to NFC tags.

Businesses can also partner with professional Flutter app development services to streamline development and ensure robust NFC functionality.

Project Setup for Your Flutter NFC Project

Before we dive into the code, let’s get our project set up and ready.

Prerequisites for Implementing NFC in Flutter

Make sure you have the following installed and ready:

  • Flutter SDK: Install the Flutter SDK by following the official documentation.
  • Basic understanding of Dart and Flutter: You need to know the basics of the Dart language and the Flutter framework.
  • A physical device that supports NFC: You cannot test Flutter NFC reader writer apps on simulators or emulators. You need an Android or iOS device that supports NFC.

For scaling teams or projects, you can also consider working with dedicated Flutter developers for hire to speed up implementation.

Creating a New Flutter Project

To start, create a new Flutter project by running the following command in your terminal:

flutter create nfc_demo

This will create a new directory named nfc_demo with the basic Flutter project structure. Open this project in your favorite IDE, such as Visual Studio Code or Android Studio.

If you’re new, our Flutter BLoC state management tutorial is a good place to start learning about state handling in apps.

Adding Dependencies

Next, we need to add the nfc_manager package to our project. Open the pubspec.yaml file and add the following line under dependencies:

YAML

dependencies:
 flutter:
   sdk: flutter

 # The following adds the Cupertino Icons font to your application.
 # Use with the CupertinoIcons class for iOS style icons.
 cupertino_icons: ^1.0.8
nfc_manager: ^4.0.2
nfc_manager_ndef: ^1.0.1

After adding the dependency, run the following command in your terminal to install it:

Bash

flutter pub get

The nfc_manager Flutter package is the core dependency that provides the necessary APIs to interact with the device’s NFC hardware for reading and writing NFC tags.

Implementing NFC Features

With the project set up, we can now start implementing NFC in Flutter.

Checking for NFC Availability

NFC reader writer Flutter step-by-step operations flow

Before attempting any NFC operation, it’s crucial to check if the device hardware actually supports NFC. This prevents errors and allows you to provide a better user experience by, for example, disabling NFC-related UI elements.

Code Snippet:

import 'dart:io';
import 'dart:typed_data';

import 'package:flutter/material.dart';
import 'package:nfc_manager/ndef_record.dart';
import 'package:nfc_manager/nfc_manager.dart';
import 'package:nfc_manager_ndef/nfc_manager_ndef.dart';
import 'package:nfc_manager/src/nfc_manager_android/pigeon.g.dart';

import 'nfc_scan_result.dart';


// A boolean to check if NFC is available on the device.
bool isNfcAvailable = false;

Future<void> _checkNfcAvailability() async {
 setState(() async {
   isNfcAvailable = await NfcManager.instance.isAvailable();
 });
}

Code Explanation:

  • NfcManager.instance.isAvailable(): This asynchronous method returns a Future<void> which resolves to true if the device has NFC hardware and it is enabled, and false otherwise.

Reading NFC Tags

To start reading an NFC tag, you need to initiate a session and listen for tag discovery. This is the first step in building a Flutter NFC reader app.

Code Snippet:

void startRead(BuildContext context) async {
  if (_isScanning) return;

  setState(() {
    _isScanning = true;
    _status = 'Hold a tag near the device...';
  });

  try {
    await NfcManager.instance.startSession(
      pollingOptions: {NfcPollingOption.iso14443},
      onDiscovered: (NfcTag tag) async {
        try {
          final result = await _readTagData(tag);

          // Extract NDEF Text record (RTD-Text) if present
          final ndefText = extractNdefText(result);

          setState(() {
            _status = (ndefText != null && ndefText.isNotEmpty)
                ? 'Tag read successfully! Text: $ndefText'
                : 'Tag read successfully! No valid NDEF text found.';
          });
        } catch (e) {
          setState(() {
            _status = 'Error during read: $e';
          });
        } finally {
          await NfcManager.instance.stopSession();
          setState(() => _isScanning = false);
        }
      },
    );
  } catch (e) {
    setState(() {
      _status = 'Failed to start NFC session: $e';
      _isScanning = false;
    });
  }
}

String? extractNdefText(NFCScanResult result) {
  final ndef = result.data['ndef'];
  if (ndef is Map && ndef['records'] is List && ndef['records'].isNotEmpty) {
    final record = ndef['records'][0];
    if (record is Map && record['type'] != null && record['payload'] != null) {
      final typeBytes = record['type'];
      final payloadBytes = record['payload'];
      if (typeBytes is List && String.fromCharCodes(typeBytes) == 'T' && payloadBytes is List) {
        final payload = Uint8List.fromList(payloadBytes);
        if (payload.isEmpty) return null;

        // NFC Forum Text RTD:
        // payload[0] = status byte
        // bit7: 0=UTF-8, 1=UTF-16
        // bits0..5: language code length (n)
        // payload[1..n]: language code
        // payload[1+n..]: text
        final status = payload;
        final isUtf16 = (status & 0x80) != 0;
        final langLen = status & 0x3F;

        if (payload.length < 1 + langLen) return null;

        final textBytes = payload.sublist(1 + langLen);
        try {
          return isUtf16 ? String.fromCharCodes(textBytes) : utf8.decode(textBytes);
        } catch (_) {
          return String.fromCharCodes(textBytes);
        }
      }
    }
  }
  return null;
}

Future<NFCScanResult> _readTagData(NfcTag tag) async {
  final result = NFCScanResult(
    tag: tag,
    timestamp: DateTime.now(),
    tagType: 'Unknown',
    uid: 'Unknown',
    data: {},
  );

  try {
    // Extract UID from common locations in raw map
    final raw = tag.data;
    List<int>? idBytes;
    if (raw is Map && raw['id'] is List) {
      idBytes = (raw['id'] as List).cast<int>();
    } else if (raw is Map && raw['nfca'] is Map && raw['nfca']['identifier'] is List) {
      idBytes = (raw['nfca']['identifier'] as List).cast<int>();
    } else if (raw is Map && raw['mifareclassic'] is Map && raw['mifareclassic']['identifier'] is List) {
      idBytes = (raw['mifareclassic']['identifier'] as List).cast<int>();
    }

    if (idBytes != null) {
      final uid = idBytes.map((b) => b.toRadixString(16).padLeft(2, '0')).join().toUpperCase();
      result.uid = uid;
      result.data['UID'] = uid;
    }

    final ndef = Ndef.from(tag);
    if (ndef != null) {
      result.tagType = 'NDEF';
      if (ndef.cachedMessage != null) {
        final message = ndef.cachedMessage!;
        result.data['ndef'] = {
          'records': message.records.map((record) {
            return {
              'type': record.type,
              'payload': record.payload,
              'tnf': record.typeNameFormat.index,
              'id': record.identifier,
            };
          }).toList(),
        };
      } else {
        result.data['ndef'] = {'records': <Map<String, dynamic>>[]};
      }
    } else {
      result.tagType = 'Non-NDEF';
    }
  } catch (e) {
    result.data['error'] = e.toString();
  }

  return result;
}

Code Explanation:

  • NfcManager.instance.startSession(…): This function starts an NFC reader/writer Flutter session.
  • onDiscovered: (NfcTag tag) async { … }: This callback is executed when an NFC tag is discovered. The NfcTag object contains the data.
  • Ndef.from(tag): We get the NDEF (NFC Data Exchange Format) specific data from the tag.
  • NfcManager.instance.stopSession(): It’s important to stop the session after processing the tag to release system resources.
  • extractNdefText(…): Parses the first NDEF Text Record (type ‘T’) and decodes the text according to the NFC Forum Text RTD specification.
  • UID extraction: Reads the tag’s unique identifier from the raw tag map and formats it as an uppercase hex string.

Read More: 

Complete Guide to Building NFC Reader and Writer Apps in Flutter Using NFC Manager Package – Step-by-Step Tutorial

 

 

 

Pesquisar
Categorias
Leia mais
Outro
Master Procurement Skills with CIPS Certified Courses
Procurement professionals in the UK are constantly seeking ways to enhance their skills,...
Por Cips Courses 2025-09-12 10:13:25 0 1KB
Outro
Celebrate Your Pet’s Personality with a Pet Photographer in Toronto
Pets are family. They bring comfort, laughter, and countless small joys that shape everyday life....
Por Just For You Photography 2025-09-26 09:05:33 0 840
Outro
Elevate Your Business Space: Commercial Remodeling in Lawrenceville, Snellville & Buford, GA
In today’s competitive market, your commercial space isn’t just a place of...
Por Jamaica Worksllc 2025-10-09 07:22:32 0 476
Outro
Study GAQM LCP-001 Dumps for Pass
Advantages of Taking GAQM LCP-001 Exam Dumps Do you intend to sit for the GAQM LCP-001...
Por Kayla Kayla 2025-10-08 05:58:01 0 512
Health
Dusky Skin Tone - Beginner's Guide for Inner Glow
Earlier, people associated beauty with fair skin- the fairer your skin was, the more beautiful...
Por Brioso Makeup 2025-11-05 07:17:39 0 141