Skip to content

Instantly share code, notes, and snippets.

@adellibovi
Last active June 7, 2019 21:29
Show Gist options
  • Save adellibovi/671065eac26bc3ed2c7202ae52829d2f to your computer and use it in GitHub Desktop.
Save adellibovi/671065eac26bc3ed2c7202ae52829d2f to your computer and use it in GitHub Desktop.
struct CustomView : View {
@State var numOfTaps: Int = 0
var body: some View {
Text("\(numOfTaps) taps")
.tapAction { self.numOfTaps += 1 }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment