How we can split payment to multivendor using Stripe in flutter. All packages support native payment. I am working on taxi booking app. I wants to transfer 20% of payment to company's account and 80% to driver. But I am unable to find any solution to split payment in flutter.
There likely isn't a pre-built solution for you here that does everything.
While Stripe doesn't have a Flutter library today, there's a community library for Flutter: https://pub.dev/packages/flutter_stripe
Separately, Stripe offers a product called Stripe Connect that lets you split funds between yourself and a third-party which meets the requirement you outlined. They have detailed guides for various ways to integrate this and you likely want to look at this one first: https://stripe.com/docs/connect/collect-then-transfer-guide
Related
I am using the flutter in_app_purchase package found here https://pub.dev/packages/in_app_purchase and have implemented it into my app according to the google code lab found here https://codelabs.developers.google.com/codelabs/flutter-in-app-purchases#0.
Problem:
I would like to have a user checkout with multiple non-consumable products at once. I am able to create a List<PurchaseParam> containing the products a user would like to checkout with but I am unable to find any functions in the in_app_purchase package that will allow me to handle multiple product payments at once.
Does anyone know of a way to use in_app_purchases to perform multiple purchases at once? (Looking for a function name or some reference material to get me on the right track).
Any help is greatly appreciated.
Thank You!
As of 13 January 2023, the in_app_purchase package does not provide an interface for purchasing multiple items at once (aside from quantity, in the case of purchasing multiple of the same item).
However, while I've not personally ever attempted this, it appears that perhaps, at least for iOS, you may be able to simply call buyNonConsumable() multiple times to add multiple products to the payment queue. Be aware that doing so will require the purchase UI and user confirmation for each individual item. I have no idea how this might be handled on Android.
References
in_app_purchase source code for iOS
in_app_purchase source code for Android
Can SKPaymentQueue process multiple in app purchases at a time?
Purchasing multiple consumables at a time
I am implementing a discount system for subscriptions in my Flutter application, but I do not know how present different Google Play Store subscription offers with the Flutter in_app_purchases package depending on whether or not a user has a coupon code.
How can I present a specific Google Play subscription offer to a user (different than just the base subscription plan) using Flutter's in_app_purchase package?
My understanding from the in_app_purchase package docs is that I can pass the product ID of my subscription, but how can I pass in specific subscription offer?
Thanks!
I have also been looking for the same thing, but apparently it is not yet supported by the flutter plugin. Google Play Offers are quite recent, maybe we will need to wait for a while before it is available.
I opened already an issue regarding this (https://github.com/flutter/flutter/issues/110909).
I will update this answer as soon as I have something new.
I'm looking for how i can use flutter_stripe_web to make payments or a another best method to implement a stripe payments with flutter web.
You can just run the example project as a web app in Chrome browser.
Please note that flutter_stripe_web is in very early stage and I won't recommend you to use it in production, instead you should use the standard web integration.
I'm trying to implement a credit card payment using a flutter app (like Apple/Goggle pay).
The main goal is to store the relevant information about the credit card from a scan or from given details (whatever is possible) and later use it to make a payment with a payment terminal device.
An example is shown in this video: https://www.youtube.com/watch?v=aifXMV8PLYM, but unfortunately the source code of the mobile application has been removed.
Thanks,
Noy.
You are definitely able to read NFC-Tags (Credit-Cards) using Flutter. I have tested the nfc_manager package (https://pub.dev/packages/nfc_manager) successfully, with the provided example. Emulating does not seem to be supported by this package.
If you want to emulate NFC maybe checkout this package: https://pub.dev/packages/nfc_emulator
What are the popular payment processors in flutter?, because I opened a Payfort account, but have not found documentation for flutter. I only found native ios and native android. What payment processor can I use in flutter?.
You could use GooglePay by using this package.
ApplePay by using this package.
Stripe by using this package.
or Braintree by using this package.
And the PayFort package is still unavailable --maybe just yet.
Maybe you want to read the PayFort API's documentation here.
hope it will help.