我的应用程序中有几个页面。导航如下。
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => ContactsPage(
username: _username),
));
然后,当我按下android上的后退按钮时,我会看到以下警告。
The following assertion was thrown while dispatching notifications for FocusManager:
Looking up a deactivated widget's ancestor is unsafe.
如何摆脱此警告?这些页面不是对话框,它们是有状态的小部件。