首页 > 解决方案 > Accepting payments in Flutter Web

问题描述

I am creating an application in Flutter Web that needs to collect payment information to create subscription charges. My plan was to use Stripe to do this, however, after making all the necessary methods for Stripe, I found that Stripe only accepts card data through Stripe Elements. Upon further research, I saw that essentially all payment platforms do this to maintain PCI compliance.

Is there any method of embedding Stripe elements(or any equivalent) into my application or is there an easier method of accepting payments with Flutter Web?

标签: flutterstripe-paymentspayment-gatewaypaymentflutter-web

解决方案


有一个非官方的 Flutter Stripe 包,可能是你想要的:https ://pub.dev/packages/stripe_payment


推荐阅读