You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
436 B
21 lines
436 B
//
|
|
// FullButtonStyle.swift
|
|
// DouShouQiIOS
|
|
//
|
|
// Created by Pierre FERREIRA on 13/05/2024.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
struct FullButtonStyle: ButtonStyle {
|
|
func makeBody(configuration: Configuration) -> some View {
|
|
configuration.label
|
|
.padding(10)
|
|
.background(Color.yellow)
|
|
.foregroundStyle(.white)
|
|
.clipShape(Rectangle())
|
|
.cornerRadius(15)
|
|
}
|
|
}
|