gpt4 book ai didi

android - 'package :flutter/src/widgets/will_pop_scope. dart':断言失败:第 135 行 pos 12: '_route == ModalRoute.of(context)':不正确

转载 作者:行者123 更新时间:2023-12-04 23:56:01 36 4
gpt4 key购买 nike

我正在使用 Getx 状态管理。我有一个登录屏幕及其 GetxController。在那个 GetxController 中,我定义了一个像这样的 FormKey final formKey = GlobalKey<FormState>();

当我从任何其他屏幕使用此 Get.offAllNamed(Routes.loginScreen); 直接导航回 LOGINSCREEN(用于注销)时我遇到了这个问题。

我试过了 flutter clean , 但它不起作用。我似乎找不到解决方法。

如果有人能找到解决方案,那将是一个很大的帮助。

he following assertion was thrown building Form-[LabeledGlobalKey<FormState>#f1349](state: FormState#45516):
'package:flutter/src/widgets/will_pop_scope.dart': Failed assertion: line 135 pos 12: '_route == ModalRoute.of(context)': is not true.
2

Either the assertion indicates an error in the framework itself, or we should provide substantially more information in this error message to help you determine and fix the underlying cause.
In either case, please report this assertion by filing a bug on GitHub:
https://github.com/flutter/flutter/issues/new?template=2_bug.md

The relevant error-causing widget was
Form-[LabeledGlobalKey<FormState>#f1349]
lib\…\login_screen\login_screen.dart:40
When the exception was thrown, this was the stack
#2 _WillPopScopeState.didUpdateWidget
package:flutter/…/widgets/will_pop_scope.dart:135
#3 StatefulElement.update
package:flutter/…/widgets/framework.dart:4682
#4 Element.updateChild
package:flutter/…/widgets/framework.dart:3293
#5 ComponentElement.performRebuild
package:flutter/…/widgets/framework.dart:4520
#6 StatefulElement.performRebuild
package:flutter/…/widgets/framework.dart:4667

登录界面

class LoginScreen extends StatelessWidget {
final controller = Get.find<AuthController>();
@override
Widget build(BuildContext context) {
return Column(
children: [
Form(
key: controller.formKey,
child: Column(
children: [
TextFormField(
controller: controller.phoneController,
keyboardType: TextInputType.phone,
style: TextStyles.black14,
decoration: InputDecoration(
hintText: 'Phone Number',
hintStyle: TextStyles.hintStyle14,),
validator: (value) {
print(value);
if (value.length != 10) {
return 'Invalid phone number';
}
return null;
},
),
TextButton(
onPressed: () {
controller.login();
},
child: Text('Login'))
],
);
}
}

Controller

import 'package:app/routing/routes.dart';
import 'package:app/utilities/shared_prefs.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';

class AuthController extends GetxController {
//Handling loading state
bool loading = false;

final formKey = GlobalKey<FormState>();

login() async {
if (!formKey.currentState.validate()) return;
loading = true;
update();

//API CALL
}

//Sign out user
signOut() async {
SharedPrefs().clear();
Get.offAllNamed(Routes.loginScreen);
}
}

这是流程。登录屏幕 --> 主屏幕 --> 其他屏幕

调用 controller.signOut()来自 OtherScreen 导致此错误

最佳答案

如果尝试重置全局 key ,则会发生这种情况。

要解决此问题,您可以将 GlobalKey 和 TextEditingController 移动到页面本身,而不是在 Controller 中声明它们。

class LoginScreen extends StatelessWidget {

final formKey = GlobalKey<FormState>();

TextEditingController phoneController = TextEditingController();


final controller = Get.find<AuthController>();
@override
Widget build(BuildContext context) {
return Column(
children: [
Form(
key:formKey,
child: Column(
children: [
TextFormField(
controller:phoneController,
keyboardType: TextInputType.phone,
style: TextStyles.black14,
decoration: InputDecoration(
hintText: 'Phone Number',
hintStyle: TextStyles.hintStyle14,),
validator: (value) {
print(value);
if (value.length != 10) {
return 'Invalid phone number';
}
return null;
},
),
TextButton(
onPressed: () {
//Validate here
if (!formKey.currentState!.validate()) return;
controller.login();
},
child: Text('Login'))
],
);
}
}

关于android - 'package :flutter/src/widgets/will_pop_scope. dart':断言失败:第 135 行 pos 12: '_route == ModalRoute.of(context)':不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67581389/

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