flutter_pay 0.9.1 copy "flutter_pay: ^0.9.1" to clipboard
flutter_pay: ^0.9.1 copied to clipboard

outdated

Flutter plugin that help you make payments through Apple and Google Pay

Google Pay Preparing #

TODO

See Android documentation

Apple Pay Preparing #

TODO

See Apple documentation

Usage #

Firstly, you need to make sure, that Pay api is available on device:

import 'package:flutter_pay/flutter_pay.dart';
//..

FlutterPay flutterPay = FlutterPay();

bool isAvailable = await flutterPay.canMakePayments();
/..

If you need to check if user has at least one active card:

import 'package:flutter_pay/flutter_pay.dart';
//..

FlutterPay flutterPay = FlutterPay();

bool isAvailable = await flutterPay.canMakePaymentsWithActiveCard();

//Also you can state allowed payment card networks:
bool isAvailable = await flutterPay.canMakePaymentsWithActiveCard(
	allowedPaymentNetworks: [
		PaymentNetwork.visa, 
		PaymentNetwork.masterCard,
	],
);

To make payment is makePayment method. This function will return to you token that you need to send to your gateway to complete payment. Example:

import 'package:flutter_pay/flutter_pay.dart';

FlutterPay flutterPay = FlutterPay();

PaymentItem item = PaymentItem(name: "T-Shirt", price: 10.98);

String token = await flutterPay.makePayment(
	merchantIdentifier: "merchant.com.flutterPay",
	currencyCode: "RUB",
	countryCode: "RU",
	allowedPaymentNetworks: [
		PaymentNetwork.visa, 
		PaymentNetwork.masterCard,
	],
	paymentItems: [item],
	merchantName: "Super Shop", 
	gatewayName: "stripe",
);

Note that some arguments affects only Apple Pay or Google Pay. For example, paymentItems affects only Apple Pay. And the last item is used for grand total label.

merchantName affects only Google Pay and will be shown to user.

gatewayName also affects only Google Pay. See Google Pay integration section.

Payment Network matrix #

Payment Network iOS Android
Visa + +
MasterCard + +
American Express + +
Interac + +
Discover + +
JCB + +
Maestro +
Electron +
Cartes Bancarries +
Union Pay +
EftPos +
Elo +
ID Credit +
Mada +
Private Label +
Quic Pay +
Suica +
V Pay +

Roadmap #

  • Basic implementation
  • Complete docs
  • Add merchant capabilities support
  • Add billing and shipping info support
69
likes
30
pub points
76%
popularity

Publisher

unverified uploader

Flutter plugin that help you make payments through Apple and Google Pay

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_pay