Skip to main content
Question

Paywall on ios26 beta3 is not full screen

  • July 15, 2025
  • 1 reply
  • 45 views

Forum|alt.badge.img+7

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()

        }

    }

}

This post has been closed for comments

1 reply

joan-cardona
RevenueCat Staff
Forum|alt.badge.img+6
  • RevenueCat Staff
  • July 18, 2025

Hi ​@Todd Hoff,

Do you mean the legacy paywalls vs the new v2 ones? Do you have that image as a background of your paywall or are you adding an image component?

 

Best,