Umair
Umair

Reputation: 1877

How to implement recurrent payment in flutter?

In ecommerce application, we have 1000+ products. And we want to do recurrent payments like daily, weekly (multiple days can be selected), monthly etc for any product. How can we do that in flutter (Android & iOS).

I check in app purchase. But the problem is that, we need to define the details regarding payment first on app store and play store. IN reality we are defining the payment on run time depending on the products buyer had choosen for deliveries.

Can anyone suggest a workflow/solution regarding this usecases.

Upvotes: 0

Views: 362

Answers (1)

Sujan Gainju
Sujan Gainju

Reputation: 4767

As per your comment reply, you deal with the physical service. In that case, you do not need to use the Apple in-app purchase. The in-app purchase is only necessary if the app is used for digital goods.

For physical goods, you can use apple pay or flutter_stripe packages. Flutter stripe doc shows its added functionality for apple pay.

Apple Pay vs Apple In-App Purchase

Check apple pay availability

Upvotes: 0

Related Questions