我目前正在上图所示的这个flutter应用程序示例中,但是当我点击Calculate导航到下一个屏幕时,我得到一个黑屏,如下图所示
这是GitHub Repo链接:https://github.com/batman007db/bmiCalculatorApp 需要帮助!
答案 0 :(得分:0)
通常在导航中,错误键入页面的网址是很常见的。
这是我最喜欢的浏览步骤:
1)将url作为静态费用添加到到达的页面中(以避免输入错误)
static const routeName = '/your-page';
2)确认您在主页上的路线正确:
routes: {
YourPage.routeName: (ctx) => YourPage(),
},
3)确保您调用了正确的函数:
Navigator.of(context).pushReplacementNamed(YourPage.routeName);
// use pushNamed if u want to be able to go back or pushReplacementNamed if u don't want to allow going back.
4)检查您的导航页面是否已导入YourPage:
答案 1 :(得分:0)
尝试此操作,错误在于您的next
n