The old style paywall did display full screen on ios26 beta3, but the new style paywall does not. Attached image.
struct OnboardingFlow: View {
let purchases = PurchaseManager.shared
var body: some View {
VStack {
if let offering = purchases.offering {
PaywallView(
offering: offering,
displayCloseButton: true
)
.ignoresSafeArea()
}
else {
ProgressView()
}
}
.task {
await purchases.fetchOfferings()
}
}
}