App Store Overlay
Presents a StoreKit overlay when a given condition is true.
Platform Compatibility
iOS 14.0+ iPadOS 14.0+ visionOS 1.0+
Tags
SwiftUI Code
@State var showAppStoreOverlay = false
var body: some View {
Button("Manage subscriptions") {
showAppStoreOverlay = true
}
.appStoreOverlay(isPresented: $showAppStoreOverlay) {
SKOverlay.AppConfiguration(appIdentifier: "1234567890", position: .bottom)
}
}Found an issue or have a suggestion?
Created: July 19, 2026Updated: July 19, 2026