【重要】goToHome中的HomePage不要忘记替换成TabNavigator哦
来源:11-4 使用TabBar+TabBarView 实现旅拍可滑动切换多Tab(一)
星辰大海1497010
2024-02-19
当封装了导航页之后,就不需要再跳转到HomePage了。
写回答
1回答
-
星辰大海1497010
提问者
2024-02-19
修改前:
///跳转到首页 static goToHome(BuildContext context) { //跳转到主页并不让返回 Navigator.pushReplacement( context, MaterialPageRoute(builder: (context) => const HomePage())); }修改后:
///跳转到首页 static goToHome(BuildContext context) { //跳转到主页并不让返回,当封装了导航页之后,就不需要再跳转到HomePage了 Navigator.pushReplacement( context, MaterialPageRoute(builder: (context) => const TabNavigator())); }20
相似问题