LoginSignup
0
0

More than 1 year has passed since last update.

TextFieldのテキスト入力部分をパスワード形式に変更する方法

Posted at

新規登録機能などでよくあるパスワード入力欄の作り方です。

該当のTextFieldにobscureText: trueを追加する

TextField(
                    controller: passwordController,
                    decoration: InputDecoration(
                        border: InputBorder.none, hintText: 'password'
                    ),
                    obscureText: true, //これを追加する
                    onChanged: (text) {
                      model.password = text;
                    },
                  ),

これだけ。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0