revert desktop login dialog
Signed-off-by: dignow <linlong1265@gmail.com>
This commit is contained in:
parent
bf4854a444
commit
4707e0ed2e
@ -434,8 +434,17 @@ Future<bool?> loginDialog() async {
|
||||
}
|
||||
break;
|
||||
case HttpType.kAuthResTypeEmailCheck:
|
||||
close(true);
|
||||
verificationCodeDialog(resp.user);
|
||||
if (isMobile) {
|
||||
close(true);
|
||||
verificationCodeDialog(resp.user);
|
||||
} else {
|
||||
setState(() => isInProgress = false);
|
||||
final res = await verificationCodeDialog(resp.user);
|
||||
if (res == true) {
|
||||
close(true);
|
||||
return;
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
passwordMsg = "Failed, bad response from server";
|
||||
@ -508,7 +517,11 @@ Future<bool?> loginDialog() async {
|
||||
size: 25,
|
||||
// No need to handle the branch of null.
|
||||
// Because we can ensure the color is not null when debug.
|
||||
color: Theme.of(context).textTheme.titleLarge?.color?.withOpacity(0.55),
|
||||
color: Theme.of(context)
|
||||
.textTheme
|
||||
.titleLarge
|
||||
?.color
|
||||
?.withOpacity(0.55),
|
||||
),
|
||||
onTap: onDialogCancel,
|
||||
hoverColor: Colors.red,
|
||||
|
Loading…
x
Reference in New Issue
Block a user