How to set Keyboard type of TextField in SwiftUI?

后端 未结 7 1477
灰色年华
灰色年华 2021-02-03 19:46

I can\'t seem to find any information or figure out how to set the keyboard type on a TextField for SwiftUI. It would also be nice to be able to enable the secure text property,

7条回答
  •  长发绾君心
    2021-02-03 20:25

    To set TextField's keyboard type you need to add modifier .keyboardType().

    TextField(placeHolder, text: your text)
        .keyboardType(.numberPad)
    

提交回复
热议问题