Created
November 14, 2022 03:50
-
-
Save thanakijwanavit/e16c29cc58bdceb5026a050646d71a17 to your computer and use it in GitHub Desktop.
dynamic appstorage
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
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