I have 4 buttons in my app for subscription and one time purchases. In android when we click on button its immediately loads pay-screen but in iOS its take some time to show pay wall. How to show a progress dialog until pay wall loads?
I am using like this below!
onClick: () async{
await Purchases.purchasePackage(package!);
}