This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
struct SearchTextFieldStyle: TextFieldStyle { | |
@Binding var a: String | |
public func _body(configuration: TextField<Self._Label>) -> some View { | |
HStack(spacing:0){ | |
Image(systemName: "magnifyingglass") | |
.foregroundColor(.secondary) |