Skip to content

Instantly share code, notes, and snippets.

@andresr-dev
Last active May 1, 2022 17:31
Show Gist options
  • Save andresr-dev/6edb124254735566fbed9f94cfe1169b to your computer and use it in GitHub Desktop.
Save andresr-dev/6edb124254735566fbed9f94cfe1169b to your computer and use it in GitHub Desktop.
This is an example of how to use @AppStorage
import SwiftUI
struct ContentView: View {
@AppStorage("tapCount") private var tapCount = 0
var body: some View {
Button("Tap count: \(tapCount)") {
tapCount += 1
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment