Hi
where can I find the documentation for PaywallView.
currently I’m using it like this:
PaywallView()
.onRequestedDismissal {
state = .paymentRequiredInfo
}
.onPurchaseCompleted { CustomerInfo in
state = .ready
}
.onPurchaseFailure({ NSError in
state = .error(StaticErrorMessage("Payment error"))
})After Purchase is completed, callback method onPurchaseCompleted is not called. If I try to purchase again I’m getting “already purchased” dialog info.
So my question are why onPurchaseCompleted is not called and where is the documentation for PaywallView.
Regards
