mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-18 21:23:43 +02:00
bugfix setting textfield value
This commit is contained in:
parent
7bdbbb14d2
commit
52d97fc94d
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ class AuthTextField extends AuthField {
|
|||
Widget build() => TextFormField(
|
||||
controller: _textEditingController,
|
||||
obscureText: obscureText,
|
||||
onChanged: (value) {
|
||||
value = value;
|
||||
onChanged: (v) {
|
||||
value = v;
|
||||
},
|
||||
validator: (value) {
|
||||
for (var validator in validators) {
|
||||
|
|
Loading…
Reference in a new issue