Manage Subscriptions Sheet
Opens the manage subscriptions sheet.
Platform Compatibility
iOS 15.0+ iPadOS 15.0+ visionOS 1.0+
Tags
SwiftUI Code
@State var showManageSubscriptions = false
var body: some View {
Button("Manage subscriptions") {
showManageSubscriptions = true
}
.manageSubscriptionsSheet(isPresented: $showManageSubscriptions)
}Found an issue or have a suggestion?
Created: July 19, 2026Updated: July 19, 2026