📜  flutter textformfield 类型密码 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:16.347000             🧑  作者: Mango

代码示例1
TextFormField(
    obscureText: true,
    
    // Additionally, consider adding these properties to prevent input 
    // suggestions because they risk revealing at least part of the 
    // password input to screen viewers.
    enableSuggestions: false,
    autocorrect: false,
    ...
)