Hi!
Iβm experiencing an issue (or possibly a missing feature) in Paywall 2.0. In Paywalls templated (v1), everything works as expected.
When I tap anything in the paywall that requires a progress view (e.g., purchase or restore), nothing appears. It just leaves me waiting until the pay sheet pops up (for purchases). For restores, nothing appears and then the paywall dismisses. This could make users think their tap didnβt register, they need a loading indicator to know some stuff is happening.
Do I need to adjust how Iβm initializing the paywall, or is this a bug/missing feature?
iOS version: 18.2.1
Purchases SDK version: 5.17.0
Hereβs how Iβm presenting the paywall:
PaywallView(displayCloseButton: true)
.onRequestedDismissal {
self.showPaywallView.toggle()
Task { await self.purchasesManager.processInfo() }
}
BTW, I tested presenting the paywall in different ways (e.g., using `.presentPaywallIfNeeded`), but I got the same behavior.
Would appreciate any guidance on this. Thanks!