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/44104519834fcd8850eafe071af40247 to your computer and use it in GitHub Desktop.
Save laevandus/44104519834fcd8850eafe071af40247 to your computer and use it in GitHub Desktop.
import SwiftUI
public struct FunkyButtonStyle: ButtonStyle {
public init() {}
public func makeBody(configuration: Self.Configuration) -> some View {
configuration.label.padding()
.background(Color.red)
.cornerRadius(16)
.foregroundColor(.white)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment