ccid 0.1.1 copy "ccid: ^0.1.1" to clipboard
ccid: ^0.1.1 copied to clipboard

A Flutter plugin for smart card reader using CCID protocol with PC/SC-like APIs.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:ccid/ccid.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Smart Card Transceiver',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(),
    );
  }
}

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

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  final _ccidPlugin = Ccid();
  CcidCard? _card;
  String? _selectedReader;
  List<String> _readers = [];
  final _capduController = TextEditingController();
  final _rapduController = TextEditingController();
  final List<String> _history = [];

  @override
  void initState() {
    super.initState();
    _refreshReaders();
  }

  Future<void> _refreshReaders() async {
    final readers = await _ccidPlugin.listReaders();
    setState(() {
      _readers = readers;
      _selectedReader = readers.isNotEmpty ? readers[0] : null;
    });
  }

  Future<void> _connectCard() async {
    if (_selectedReader != null) {
      final card = await _ccidPlugin.connect(_selectedReader!);
      setState(() {
        _card = card;
      });
    }
  }

  Future<void> _sendApdu() async {
    if (_card != null) {
      final rapdu = await _card!.transceive(_capduController.text);
      setState(() {
        _rapduController.text = rapdu ?? '';
        _history.insert(0, 'C-APDU: ${_capduController.text}, R-APDU: $rapdu');
      });
    }
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Smart Card Transceiver'),
      ),
      body: Padding(
        padding: const EdgeInsets.all(16.0),
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.start,
          children: [
            Row(
              children: [
                DropdownButton<String>(
                  value: _selectedReader,
                  items: _readers.map((String value) {
                    return DropdownMenuItem<String>(
                      value: value,
                      child: Text(value),
                    );
                  }).toList(),
                  onChanged: (value) {
                    setState(() {
                      _selectedReader = value;
                    });
                  },
                ),
              ],
            ),
            Row(
              children: [
                ElevatedButton(
                  onPressed: _refreshReaders,
                  child: const Text('Refresh'),
                ),
                const SizedBox(width: 16),
                ElevatedButton(
                  onPressed: _connectCard,
                  child: const Text('Connect'),
                ),
              ],
            ),
            const SizedBox(height: 16),
            TextField(
              controller: _capduController,
              decoration: const InputDecoration(
                labelText: 'C-APDU (hex)',
              ),
            ),
            const SizedBox(height: 16),
            ElevatedButton(
              onPressed: _sendApdu,
              child: const Text('Send APDU'),
            ),
            const SizedBox(height: 16),
            TextField(
              controller: _rapduController,
              decoration: const InputDecoration(
                labelText: 'R-APDU',
              ),
              readOnly: true,
            ),
            const SizedBox(height: 16),
            const Text('History:'),
            Expanded(
              child: ListView.builder(
                itemCount: _history.length,
                itemBuilder: (context, index) {
                  return Text(_history[index]);
                },
              ),
            ),
          ],
        ),
      ),
    );
  }
}
3
likes
160
pub points
33%
popularity

Publisher

verified publishernfc.im

A Flutter plugin for smart card reader using CCID protocol with PC/SC-like APIs.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

convert, dart_pcsc, flutter, platform_detector, plugin_platform_interface

More

Packages that depend on ccid