payjoin_flutter 0.23.0 copy "payjoin_flutter: ^0.23.0" to clipboard
payjoin_flutter: ^0.23.0 copied to clipboard

A Flutter library for the [Payjoin Dev Kit](https://payjoindevkit.org/)

example/lib/main.dart

import 'package:bdk_flutter_demo/screens/home.dart';
import 'package:bdk_flutter_demo/styles/theme.dart';
import 'package:flutter/material.dart';
import 'package:payjoin_flutter/common.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    PConfig.initializeApp();
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Payjoin Flutter Demo',
      theme: theme(),
      home: const Home(),
    );
  }
}
5
likes
140
points
62
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter library for the [Payjoin Dev Kit](https://payjoindevkit.org/)

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

collection, ffi, flutter, flutter_rust_bridge, freezed_annotation, meta, mockito, uuid

More

Packages that depend on payjoin_flutter

Packages that implement payjoin_flutter