How can we implement Dynamic In-App Purchase in React Native? Let's say we have some features to be unlocked after some payment.
Let's consider a case: When a user wants to visit some corporate page, they have to pay some amount of money where they can subscribe for some certain amount of time. The amount is dynamic: the corporate can set any amount of money so that same should reflect there in apple purchase and apple wants In-app purchase to be implemented for that.
How can we implement dynamic In-app purchases where the amount can be set by the user of the app and that amount can be shown in the In-app purchase, which can also be changed in future.
Please help