cktap_protocol 0.1.0 copy "cktap_protocol: ^0.1.0" to clipboard
cktap_protocol: ^0.1.0 copied to clipboard

A flutter library implementing the Coinkite tap protocol for use with the Satscard and Tapsigner. The plugin is effectively a wrapper around Nunchuk's tap-protocol library.

example/lib/main.dart

import 'package:cktap_protocol_example/bloc/card_bloc.dart';
import 'package:cktap_protocol_example/ui/home_screen.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';

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

class MyApp extends MaterialApp {
  MyApp({super.key})
      : super(
          home: BlocProvider(
            create: (_) => CardBloc(),
            child: const HomeScreen(),
          ),
        );
}
0
likes
130
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter library implementing the Coinkite tap protocol for use with the Satscard and Tapsigner. The plugin is effectively a wrapper around Nunchuk's tap-protocol library.

Repository (GitHub)
View/report issues

Documentation

API reference

Funding

Consider supporting this project:

app.mash.com

License

MIT (license)

Dependencies

cktap_transport, ffi, flutter, plugin_platform_interface

More

Packages that depend on cktap_protocol