stripe_payment 0.3.0 copy "stripe_payment: ^0.3.0" to clipboard
stripe_payment: ^0.3.0 copied to clipboard

discontinuedreplaced by: flutter_stripe
outdated

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:

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_"));

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, "Stripe Test")).then((String token) {
                  setState(() {
                    _confirmNativePay = token;
                  });
                }).catchError(print);

TODO #

  • better error handling
  • internationalization
  • more stripe library implementations?
377
likes
0
pub points
92%
popularity

Publisher

unverified uploader

A Flutter plugin to integrate the stripe plugin for iOS and Android. Currently only adding a credit card as payment method is implemented.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, stripe_native

More

Packages that depend on stripe_payment