gpt4 book ai didi

flutter - 在ShowDialog的TextField上显示错误文本

转载 作者:行者123 更新时间:2023-12-03 07:56:14 24 4
gpt4 key购买 nike

我正在尝试建立一个AlertDialog,以在删除帐户之前重新验证用户。重新验证不起作用时,我想显示错误文本。
通过使用print()语句,可以正确处理错误。但是,我无法获取TextField将错误显示为对用户的反馈。我认为这一定与SimpleDialog本身的状态有关,而不是与外部小部件的状态有关。
这是代码:


Future _validate({String email, String password}) async {
setState(() {
_wrongEmail = false;
_wrongPassword = false;
_emailErrorText = null;
_passwordErrorText = null;
});

try {
if (await userDataBase.checkCorrectEmail(
email: email, loggedInUser: widget.user.id)) {
throw FirebaseAuthException(
message: 'email is not correct', code: 'user-not-found');
}
await userDataBase.authenticateUser(email, password);
} catch (e) {
if (e.code == 'wrong-passwod') {
setState(() {
_passwordErrorText = 'Password not Correct';
});
} else if (e.code == 'user-not-found') {
setState(() {
_emailErrorText = 'Email not Correct';
});
} else {
setState(() {
_emailErrorText = 'Email not Correct';
_passwordErrorText = 'Password not Correct';

_wrongPassword = true;
_wrongEmail = true;
});
}
throw e;
}
}

Future _authenticate({String email, String password}) async {
try {
await _validate(email: email, password: password);
} catch (e) {
print(e.code);
print(_wrongEmail);
print(_emailErrorText);
return;
}

print('correct behaviour');

// Navigator.pop(context);
// setState(() {
// _loading = true;
// });

// await userDataBase.deleteUser(widget.user.id);
// Navigator.of(context).popUntil((route) => route.isFirst);
}

Future _confirmIdentity() {
final emailController = TextEditingController();
final passwordController = TextEditingController();
_emailErrorText = null;
_passwordErrorText = null;
return showDialog(
context: context,
builder: (context) => AlertDialog(
content: Container(
height: 200,
child: Column(
children: [
Text('Confirm Your Identity'),
TextField(
controller: emailController,
decoration: InputDecoration(
errorText: _wrongEmail ? _emailErrorText : null,
labelText: 'email'),
),
TextField(
controller: passwordController,
decoration:
InputDecoration(
errorText: _wrongPassword ? _passwordErrorText : null,
labelText: 'password'
),
),
Spacer(),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
FlatButton(
onPressed: () {
_authenticate(
email: emailController.text,
password: passwordController.text);
},
child: Text('Confirm'),
),
FlatButton(
onPressed: () => Navigator.pop(context),
child: Text('Cancel'),
),
],
)
],
),
),
),
);
}

谢谢。我可以发布所有的小部件代码ecc。如果您需要它:它是一个有状态的小部件。

最佳答案

对于1st 2 if条件,您正在设置错误消息,但未将各自的 bool(boolean) 标志设置为true。
例:

if (e.code == 'wrong-passwod') {
setState(() {
_passwordErrorText = 'Password not Correct';
});
}
在这里,在 setState()函数中,您还需要设置 _wrongPassword = true;

关于flutter - 在ShowDialog的TextField上显示错误文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65089618/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com