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?