Skip to content

Instantly share code, notes, and snippets.

@laevandus
Last active August 30, 2020 00:43
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 laevandus/b1098047772dfb83c0ef6645068ef9c5 to your computer and use it in GitHub Desktop.
Save laevandus/b1098047772dfb83c0ef6645068ef9c5 to your computer and use it in GitHub Desktop.
import ButtonKit
import SwiftUI
struct ContentView: View {
var body: some View {
Button("Title", action: tap).buttonStyle(FunkyButtonStyle())
}
func tap() {
print("Tapped")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment