Skip to main content

I’m using a footer paywall:

struct Paywall: View {
var body: some View {
ScrollView {
VStack {

}
}
.paywallFooter()
}
}

However, by doing so, it seems that there is no way to use the “presentPaywallIfNeeded” method, and that I would have to re-implement the logic myself. Is this correct?

Hi ​@bvrlt , sorry for the delay here, we were looking through our system and found this was never answered. 

You cannot use presentPaywallIfNeeded with a footer paywall. You can simulate the behavior of presentPaywallIfNeeded by putting an if statement around the paywall footer view modifier and check for the customer’s entitlement.


Reply