- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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/
为了在 flutter 中获得类似模态的效果(当页面被推到当前页面的顶部时,背景为黑色并且足够透明,以便您可以在背景中看到后面的页面)。 我正在使用 ModalRoute 类在我当前页面的顶部显示一个
每次我调用 modalroute 以从命名路由中检索参数时,我都会得到 null。 这是代码片段: Navigator.pushNamed( context,
我用 flutter 编写了一个应用程序。我想更改字符串变量的状态。在我设置字符串变量的状态后,ModalRoute PopUpMenu 不显示更改的变量。如果我关闭 ModalRoute PopUp
在下面实现的代码中,我可以在页面底部显示带有 Fade 动画的对话框,现在,我想将 SlideTransition 添加到 ModalRoute这个实现从底部滑动对话框,但我不能那样做 例如,我想要的
当我将我的应用程序打开到登录屏幕时,屏幕工作正常但没有发生任何事情,现在,当我单击注册按钮并尝试单击返回登录时,出现此错误 ======== Exception caught by widge
我对 flutter 感到困惑,当我想从 statefulwidget (initstate) 读取参数并将其访问到小部件构建中时,该变量仍然为空。如何正确阅读?我的代码如下: import 'pac
在任何给定情况下是否有任何理由使用一个而不是另一个?我试图弄清楚为什么有两种方法可以做到这一点。我指的是“带参数导航”食谱食谱: https://flutter.dev/docs/cookbook/n
最近我正在迁移到空安全。更新了 firebase_analytics:^8.0.2。 现在面临 this.observer.subscribe(this, ModalRoute.of(context)
在我的应用程序中单击一个按钮会打开一个弹出窗口。单击该按钮一次,然后它工作正常,但是每当我连续单击该按钮 2 3 次时,就会出现下面给出的错误。 我收到此错误。 flutter: ══════════
我正在使用 Getx 状态管理。我有一个登录屏幕及其 GetxController。在那个 GetxController 中,我定义了一个像这样的 FormKey final formKey = Gl
我是一名优秀的程序员,十分优秀!