🎉 first commit

This commit is contained in:
2023-07-13 11:56:17 +02:00
parent 92e03bc310
commit 3ad6ee9134
8 changed files with 328 additions and 32 deletions

View File

@ -0,0 +1,32 @@
//
// TextFieldExtensions.swift
// Luto
//
// Created by Pierre Boulc'h on 06/07/2023.
//
import Foundation
import SwiftUI
struct OvalTextFieldStyle: TextFieldStyle {
func _body(configuration: TextField<Self._Label>) -> some View {
configuration
.textFieldStyle(.plain)
.colorMultiply(.gray)
.padding(10)
.tint(.gray)
.foregroundColor(.black)
.background(.white)
.cornerRadius(20)
.shadow(color: .accentColor, radius: 2)
}
}
extension NSTextField {
open override var focusRingType: NSFocusRingType {
get { .none }
set { }
}
}