I’m constructing a Flutter app with In-App Purchases carried out utilizing the in_app_purchase
plugin (or in_app_purchase_storekit
on iOS). After a profitable buy on iOS, the system routinely reveals the native Apple affirmation popup that claims one thing like “Your buy was profitable”.
I need to know:
- Is there a option to suppress or disable this default Apple affirmation popup inside a Flutter app?
- Can I absolutely exchange it with a customized Flutter animation or UI as an alternative?
- Or is that this popup necessary and unavoidable for compliance causes?
What I’ve tried / discovered:
- I regarded into the
in_app_purchase
plugin docs however didn’t discover any choices to disable the popup. - I perceive this popup comes from StoreKit (Apple’s native framework), and it may be required.
- I need to improve consumer expertise with a customized animation instantly after buy success, however having this popup feels redundant and breaks move.
Any steerage or greatest practices on learn how to deal with or work round this default iOS buy affirmation popup in Flutter could be very appreciated.
Thanks!