Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created January 4, 2021 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sturdysturge/057f8e5a20a0dc535fb95aa5c697506e to your computer and use it in GitHub Desktop.
Save sturdysturge/057f8e5a20a0dc535fb95aa5c697506e to your computer and use it in GitHub Desktop.
struct DeleteAllButton: View {
@Binding var text: String
var body: some View {
Button("Delete all") {
self.text = ""
}
.padding(10)
.background(Color(UIColor.secondarySystemFill))
.foregroundColor(Color.primary)
.cornerRadius(5)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment