Home > Enterprise >  Example code for Stripe Connect [Flutter]
Example code for Stripe Connect [Flutter]

Time:03-08

Is there an example code/documentation for Stripe Connect that handle business onboarding/registration for flutter application?

I can't find it on the package documentation flutter_stripe

CodePudding user response:

Stipe is simplest way to integrate payment gateway solution.

Here is a tutorial to implement this. LINK

When you go onboard just need to change the api keys and code will remains the same.

CodePudding user response:

you can call Stripe API to create an account link (see doc), and open the account link's URL in a Webview inside your Flutter application.

However, I think it's better to let your user experience the onboarding flow in a keyboard friendly environment such as desktop, because they need to fill up lots of information.

  • Related