I’m using a footer paywall:
1struct Paywall: View {2 var body: some View {3 ScrollView {4 VStack {5 …6 }7 }8 .paywallFooter()9 }10}
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?