login property

TextFieldState login
latefinal

TextFieldState of a login text input.

Implementation

late final TextFieldState login = TextFieldState(
  onChanged: (_) {
    login.error.value = null;
    password.error.value = null;
    password.unsubmit();
    repeatPassword.unsubmit();
  },
  onSubmitted: (s) {
    password.focus.requestFocus();
    s.unsubmit();
  },
);