Don't allow multiple tap on purchase button Close #393

This commit is contained in:
Sean Goldin 2023-01-29 00:37:23 -06:00 committed by GitHub
parent 8a40799a3d
commit c25f94eed1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,15 +97,19 @@ struct SupportAppView: View {
} }
Spacer() Spacer()
Button { Button {
isProcessingPurchase = true if !isProcessingPurchase {
Task { isProcessingPurchase = true
do { Task {
_ = try await Purchases.shared.purchase(product: product) do {
purchaseSuccessDisplayed = true let result = try await Purchases.shared.purchase(product: product)
} catch { if !result.userCancelled {
purchaseErrorDisplayed = true purchaseSuccessDisplayed = true
}
} catch {
purchaseErrorDisplayed = true
}
isProcessingPurchase = false
} }
isProcessingPurchase = false
} }
} label: { } label: {
if isProcessingPurchase { if isProcessingPurchase {