A growing library of reusable
SwiftUI components
Button(action: {
// Action here
}) {
Text("Swiftness.app is awesome")
.fontWeight(.bold)
.foregroundColor(.white)
.padding()
.background(Color.blue)
.cornerRadius(10)
}