2

私はxcode 12とswiftuiで作業しています。私のアプリには、スペイン語と英語のローカライズ可能なプレースホルダーを持つ textFiel があり、xcode 13 に切り替えましたが、ローカライズ可能なプレースホルダーが表示されません

ここに画像の説明を入力

これは TextField でのみ発生し、SecureField では Text でも発生しません

これは私のコードです

struct ContentView: View {
  @State var email:String = ""
    
    var body: some View {
        VStack () {
           TextField("login5", text: self.$email)
                    .autocapitalization(.none)
                    .padding()
                    .background(RoundedRectangle(cornerRadius: 50).stroke(Color("grayColor")))
        }.padding(.horizontal, 20)
    }
}
                 

ローカライズ可能な文字列

"login5" = "Correo eléctronico";
4

3 に答える 3