stripe_payment 0.3.1 stripe_payment: ^0.3.1 copied to clipboard
A Flutter plugin to integrate the stripe plugin for iOS and Android. Currently only adding a credit card as payment method is implemented.
stripe_payment #
A Flutter plugin to integrate the stripe plugin for iOS and Android.
It supports:
- Adding a credit card as payment method
- SCA and 2FA (two factor authentication)
- confirm + setup payments
- Apple / Google Pay (check setup instructions on https://pub.dev/packages/stripe_native)
Android #
Please be aware that your main activity must extend from FlutterFragmentActivity. Otherwise the Android dialog would've looked very nasty.
Include this into your project's android/gradle.properties file
android.useAndroidX=true
android.enableJetifier=true
Usage #
To set your publishable key set:
import 'package:stripe_payment/stripe_payment.dart';
StripePayment.setSettings(StripeSettings(publishableKey: "pk_test_", merchantIdentifier: "Test", androidProductionEnvironment: false));
from somewhere in your code, e.g. your main.dart file.
To open the dialog for adding a credit card source:
StripeSource.addSource().then((String token) {
print(token); //your stripe card source token
});
Confirming payments:
StripePayment.confirmPayment(_paymentMethodId, _currentSecret).then((String token) {
setState(() {
_confirmPaymentId = token;
});
}).catchError(print);
Native payment (refer to https://pub.dev/packages/stripe_native#-readme-tab-)
StripePayment.useNativePay(Order(20, 1, 1, "EUR")).then((String token) {
setState(() {
_confirmNativePay = token;
});
}).catchError(print);
TODO #
- ❌ better error handling
- ❌ internationalization
- ❌ more stripe library implementations?