rfid_c72_plugin 0.0.2 copy "rfid_c72_plugin: ^0.0.2" to clipboard
rfid_c72_plugin: ^0.0.2 copied to clipboard

Rfid C72 Sdk Plugin.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:rfid_c72_plugin_example/rfid_scanner.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: RfidScanner(),
    );
  }
}