我正在使用flutter auto_route软件包进行导航。当我在上下文上浏览屏幕时,会发生此错误。例如:
如果我写

 ExtendedNavigator.named('BuyRouter').push(HomeRoutes.profileScreen);
这可以正常工作并在BuyRouter屏幕上推送,但是我遇到的问题是我想在上下文上推送屏幕。
当我将其应用于上下文时。
  ExtendedNavigator.root.push(HomeRoutes.profileScreen);
找不到错误404页面/配置文件屏幕。

最佳答案

ExtendedNavigator.of(context).push(HomeRoutes.profileScreen)
解决了问题。

10-08 03:35