0

ユーザーにパスワードを 2 回入力します。しかし、これを確認する方法がわかりません。両方のパスワードのつづりが同じであることを確認するにはどうすればよいですか? 私はこれを行うことができますか?

ここに私のコードがあります(長くならないように関連する部分を入れただけです)

class _RegisterPageState extends State<RegisterPage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: SafeArea(
        child: SingleChildScrollView(
          child: Column(
            children: [
              
              _paddingPasswordWidget('Password', 'Password'),
              _paddingPasswordWidget('Password Again', 'Password Again'),
              
            ],
          ),
        ),
      ),
    );
  }
}


    _paddingPasswordWidget(String hintTextStr, String labelTextStr) {
  return Padding(
    padding: EdgeInsets.only(top: 15, left: 22, right: 22),
    child: TextFormField(
      keyboardType: TextInputType.text,
      style: TextStyle(
        color: HexColor('#868686'),
      ),
      decoration: CommonInputStyle.textFieldStyle(
        hintTextStr: hintTextStr,
        labelTextStr: labelTextStr,
      ),
      obscureText: true,
    ),
  );
}


class CommonInputStyle {
  static InputDecoration textFieldStyle(
      {String labelTextStr = "", String hintTextStr = ""}) {
  return InputDecoration(
      contentPadding: EdgeInsets.only(left: 20, top: 5, bottom: 5, right: 20),
      labelText: labelTextStr,
      hintText: hintTextStr,
      labelStyle: TextStyle(fontSize: 14, color: HexColor('#868686')),
      hintStyle: TextStyle(fontSize: 14, color: HexColor('#868686')),
      filled: true,
      fillColor: HexColor('#EEF2F4'),
      border: OutlineInputBorder(
        borderRadius: BorderRadius.circular(16),
        borderSide: BorderSide.none,
      ),
    );
  }
}
4

1 に答える 1