flutter 找不到错误 404 页面 /profileScreen

Error 404 page not found /profileScreen in flutter

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

 ExtendedNavigator.named('BuyRouter').push(HomeRoutes.profileScreen);

这有效并在 BuyRouter 屏幕上推送,但我遇到的问题是我想在上下文中推送屏幕。 当我将其应用于上下文时。

  ExtendedNavigator.root.push(HomeRoutes.profileScreen);

出现错误 404 页面未找到/配置文件屏幕。

ExtendedNavigator.of(context).push(HomeRoutes.profileScreen)

问题已解决。