Hilmi BORAN

Results 2 issues of Hilmi BORAN

this failure only show when user input any value to textbox AdornedElementPlaceholder, Name='adornedElementPlaceholder' AdornedElement.(0)[0].ErrorContent TextBlock.Text String Failed to get value. ArgumentOutOfRangeException:'System.ArgumentOutOfRangeException: Specified argument was out of the range of valid...

like this, ```dart ComputedValidationRule("Password is not matching.", (text) { return pwdController.text ==pwdAgainController.text; }, ) ``` ```dart class ComputedValidationRule extends TextValidationRule { bool Function(String text) computed; ComputedValidationRule(String? error, this.computed) : super(error);...