Skip to content

Instantly share code, notes, and snippets.

import SwiftUI
struct DuolingoButtonStyle: ButtonStyle {
func makeBody(configuration: Configuration) -> some View {
configuration.label
.textCase(.uppercase)
.fontWeight(.bold)
.fontDesign(.rounded)
.frame(maxWidth: .infinity)
.padding()