payments_flutter_plugin 0.0.3 copy "payments_flutter_plugin: ^0.0.3" to clipboard
payments_flutter_plugin: ^0.0.3 copied to clipboard

Official Flutter plugin for integrating Koin Checkout SDK on Android and iOS, supporting PIX, Credit Card, BNPL, and PayPal with unified API.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:payments_flutter_plugin/payments_flutter_plugin.dart';

import 'views/payment_view.dart';
import 'viewmodels/payment_viewmodel.dart';

void main() {
  PaymentsFlutter.ensureRegistered();
  runApp(
    MultiProvider(
      providers: [
        ChangeNotifierProvider(create: (_) => PaymentViewModel()),
      ],
      child: const PaymentApp(),
    ),
  );
}
0
likes
140
points
26
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Official Flutter plugin for integrating Koin Checkout SDK on Android and iOS, supporting PIX, Credit Card, BNPL, and PayPal with unified API.

Repository (GitHub)
View/report issues

Topics

#payments #checkout #koin #flutter-plugin #fintech

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on payments_flutter_plugin

Packages that implement payments_flutter_plugin