Created
February 26, 2025 12:00
-
-
Save okwasniewski/67d24546ec361cbd0b5aa32730b37290 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import StoreKit | |
class Props: ObservableObject { | |
@Published var productIDs: [String] = [] | |
} | |
struct SwiftUIStoreView: View { | |
@ObservedObject var props: Props | |
var body: some View { | |
if #available(iOS 17.0, *) { | |
SubscriptionStoreView(productIDs: props.productIDs) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment