Anyone ever incorporate stripe into a flutter app? Anyone know of any good place to look? Are there any good videos on this topic?
There are a couple of libraries on pub.dev that work with flutter. I don't like them because they are not official, and the problem you can bump into with them is PCI DSS compliance. You have to make sure you don't have direct access to the credit card numbers before they are sent to stripe and prove it, otherwise you will need to fill out the most high level assessment. It's a lot of paperwork (Worth reading it tho)
https://stripe.com/en-pt/guides/pci-compliance
Because of this , I recommend you use a webview in flutter and use the official javascript library. It's only a couple of lines of javascript and you can copy it from the Stripe website.
You will need back end server but everything you need for it is in the documentation on Stripe's website.
This was an amazingly thoughtful response. Thank you! I really appreciate it.
Checkout this flutter library for Stripe
https://github.com/jonasbark/flutter_stripe_payment
Thanks for the suggestion. Have you used that package before?
Nope, I use the PHP library