E/flutter (17200(: [ERROR:flutter/lib/ui/ui_dart_state.cc(157(] 未处理的异常:NoSuchMethodError:方法'findRootAncestorStateOfType'在null上被调用。
此错误是在构建 Widget 之前使用上下文时引起的。
试试这个代码:
WidgetsBinding.instance.addPostFrameCallback((_) {
// put the code here where you are using context.
});
我希望这有所帮助,如有任何疑问,请发表评论。如果这个答案对您有帮助,那么请接受并投赞成票。
调用Navigator.of(context).pop()
后执行某些代码时出现此错误。您的BuildContext
对象为空。