I am facing a similar issue with my Flutter App. I used in_app_purchase v0.3.5 plugin for flutter. I am also not getting the products when I call getProducts although my paid agreement is signed and my product is approved in app store connect. I keep getting a prompt to login with my credentials when I open the screen in the app which shows the in app purchases. Here is my code:
Futurevoid _getProducts() async {
SetString ids = Set.from(['5_hints']);
ProductDetailsResponse response = await _iap.queryProductDetails(ids);
setState(() {
_products = response.productDetails;
});
}
This code works fine on Android and I am able to display and purchase IAP there.
Any suggestions on what I might be missing?
Thanks,
Radha