SwiftUI文本字段-如何在编辑模式下设置文本字段的背景色以清除

问题描述 投票:0回答:2

为了与其他控件配合使用,我的文本字段具有框架,其高度比文本本身高。标准视图显示在带有自定义占位符的示例上方文本字段中。当我单击“文本字段”时,较小的文本区域本身具有灰色背景:enter image description here

如何将文本背景设置为清晰的颜色?

    struct TestView: View {

    @State var city: String
    @State var street: String

    var body: some View {
        VStack{
            ZStack(alignment: .center) {
                if city.isEmpty { Text("Bitte Namen eingeben")
                    .font(.system(size: 24, weight: .heavy, design: .default))
                    .foregroundColor(Color( red: 1.0, green: 0.0, blue: 0.0, opacity: 0.3))
                }
            TextField("", text: self.$city)
                .textFieldStyle(CustomTFStyle())
            }

            ZStack(alignment: .center) {
                if street.isEmpty { Text("Bitte Strasse eingeben")
                    .font(.system(size: 24, weight: .heavy, design: .default))
                    .foregroundColor(Color( red: 1.0, green: 0.0, blue: 0.0, opacity: 0.3))
                }
            TextField("", text: self.$street)
                .textFieldStyle(CustomTFStyle())
            }
        }
    }
}
    public struct CustomTFStyle : TextFieldStyle {
    public func _body(configuration: TextField<Self._Label>) -> some View {
        configuration
            .accentColor(.black)
                .frame(width: 300, height: 70, alignment: .center)
                .border(Color.gray, width: 4)
             .font(.system(size: 30, weight: .heavy, design: .default))
            .clipShape(RoundedRectangle(cornerRadius: 12))
            .shadow(radius: 12)
            .foregroundColor(.black)

    }
}
swiftui textfield clear
2个回答
0
投票

无法复制此内容。尝试清理您的项目并退出/重新启动Xcode。

尝试将修饰符添加到CustomTFStyle

.background(Color.clear)

旁注:您可能还需要考虑将AttributedString分配为占位符,而不是有条件地ZStack在Text top顶部添加一个单独的TextField

为此,您需要将UITextField包裹在UIViewRepresentable中,并在makeUIView方法中进行经典的工作。


0
投票
我的rootview的init方法中的

“ UIScrollView.appearance()。backgroundColor = .lightGray”也会影响Textfield的行为。删除这一行就可以了。

© www.soinside.com 2019 - 2024. All rights reserved.