You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now i am trying to use either the delegate or the Superwall.shared.subscriptionStatus and non of them are working when it comes to listen to status changes.
To be clear, I am not using a PurchaseController.
The new SuperwallBuilder is changing the status, but the others are not... and i dont want to handle logging and other stuff with the SuperwallBuilder given it's more for UI stuff.
I was trying something like this in the initState()
_subscriptionStatusSubscription = Superwall.shared.subscriptionStatus.listen((status) {
if (status is SubscriptionStatusActive && _status is! SubscriptionStatusActive) {
_status = status;
print('Purchase Made');
}
});
And the onDismiss dont have a PaywallResult even though the documentations says it has it.
Using flutter 3.24.3
superwallkit_flutter 2.0.1
The text was updated successfully, but these errors were encountered:
Right now i am trying to use either the delegate or the Superwall.shared.subscriptionStatus and non of them are working when it comes to listen to status changes.
To be clear, I am not using a PurchaseController.
The new SuperwallBuilder is changing the status, but the others are not... and i dont want to handle logging and other stuff with the SuperwallBuilder given it's more for UI stuff.
I was trying something like this in the initState()
And the onDismiss dont have a PaywallResult even though the documentations says it has it.
Using flutter 3.24.3
superwallkit_flutter 2.0.1
The text was updated successfully, but these errors were encountered: