onInit method

  1. @override
void onInit()
override

Called immediately after the widget is allocated in memory. You might use this to initialize something for the controller.

Implementation

@override
void onInit() {
  name = TextFieldState(
    onFocus: (s) {
      if (s.text.isNotEmpty) {
        try {
          UserName(s.text);
        } on FormatException {
          s.error.value = 'err_incorrect_input'.l10n;
        } catch (e) {
          s.error.value = e.toString();
        }
      }
    },
  );

  _updateWorker();

  _fetchUser().whenComplete(() {
    if (isClosed) {
      return;
    }

    if (user != null) {
      _contactWorker = ever(contact, (contact) {
        if (contact == null) {
          nameEditing.value = false;
        }

        _updateWorker();
      });
    }
  });

  super.onInit();
}