Skip to content

Instantly share code, notes, and snippets.

@thanakijwanavit
Created November 14, 2022 03:50
Show Gist options
  • Save thanakijwanavit/e16c29cc58bdceb5026a050646d71a17 to your computer and use it in GitHub Desktop.
Save thanakijwanavit/e16c29cc58bdceb5026a050646d71a17 to your computer and use it in GitHub Desktop.
dynamic appstorage
struct ProductDetail: View {
@AppStorage private var isLocal: Bool
private var product: GumroadProduct
init(product: GumroadProduct) {
self.product = product
self._isLocal = AppStorage(wrappedValue: false, "LOCAL_LIBRARY_PRESENCE_PRODUCTID_\(product.id)")
}
var body: some View {
Text("ProductView")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment