// // CustomTextFieldStyle.swift // readeck // // Created by Ilyas Hallak on 02.08.25. // import SwiftUI struct CustomTextFieldStyle: TextFieldStyle { func _body(configuration: TextField) -> some View { configuration .padding() .background(Color(.systemGray6)) .clipShape(RoundedRectangle(cornerRadius: 12)) .overlay( RoundedRectangle(cornerRadius: 12) .stroke(Color(.systemGray4), lineWidth: 1) ) } }