Skip to content

Instantly share code, notes, and snippets.

@SebastianBoldt
Last active January 30, 2022 08:53
Show Gist options
  • Save SebastianBoldt/70eeef94b23e3901e756fc27bdde3572 to your computer and use it in GitHub Desktop.
Save SebastianBoldt/70eeef94b23e3901e756fc27bdde3572 to your computer and use it in GitHub Desktop.
struct ContentView: View {
var body: some View {
VStack {
Button("Async") {
Task {
await asyncFunction()
}
}
}
}
func asyncFunction() async {
// e.g. await and assign to a @State
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment