TextFieldState constructor

TextFieldState({
  1. String? text,
  2. dynamic onChanged(
    1. TextFieldState
    )?,
  3. FutureOr<void> onFocus(
    1. TextFieldState
    )?,
  4. FutureOr<void> onSubmitted(
    1. TextFieldState
    )?,
  5. RxStatus? status,
  6. FocusNode? focus,
  7. bool approvable = false,
  8. bool editable = true,
  9. bool submitted = true,
  10. String? error,
})

Implementation

TextFieldState({
  String? text,
  this.onChanged,
  this.onFocus,
  this.onSubmitted,
  RxStatus? status,
  FocusNode? focus,
  bool approvable = false,
  bool editable = true,
  bool submitted = true,
  String? error,
}) : focus = focus ?? FocusNode() {
  controller = TextEditingController(text: text);
  isEmpty = RxBool(text?.isEmpty ?? true);

  this.editable = RxBool(editable);
  this.status = Rx(status ?? RxStatus.empty());
  this.approvable = approvable;
  this.error.value = error;

  if (submitted) {
    _previousSubmit = text;
  }

  _previousText = text;

  changed.value = _previousSubmit != text;

  String prev = controller.text;

  controller.addListener(() {
    PlatformUtils.keepActive();

    changed.value = controller.text != (_previousSubmit ?? '');

    if (controller.text != prev) {
      onChanged?.call(this);

      prev = controller.text;
      this.error.value = null;
      resubmitOnError.value = false;
    }
  });

  this.focus.addListener(() async {
    isFocused.value = this.focus.hasFocus;

    if (onFocus != null) {
      if (controller.text != _previousText &&
          (_previousText != null || controller.text.isNotEmpty)) {
        isEmpty.value = controller.text.isEmpty;
        if (!this.focus.hasFocus) {
          await onFocus?.call(this);
          _previousText = controller.text;
        }
      }
    }
  });
}