我用电动键构建一个应用程序, 我将主页和配置页建成两页, 之后我在主页上添加了两个按钮, 一个用此代码导航到配置页 :
void _gotoConfigurationPage() {
Navigator.push(context, MaterialPageRoute(builder: (context) {
return const ConfigurationPage(title: ConfigurationPage );
}));
}
但当我试图调试安卓模拟器或安卓手机中的应用程序时, 导航工作不起作用, 其他按钮停止工作, 但是当我在模拟器或手机上打开应用程序时, 导航工作就成功了!
我做错什么了吗?
伊迪莎白•伊迪莎白•伊迪莎白•伊迪莎白•伊迪莎白•伊迪莎白•伊迪莎白
这是用于导航到配置页面的主页按钮的代码 。
floatingActionButton: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
FloatingActionButton(
onPressed: _gotoConfigurationPage,
tooltip: Configuration ,
child: const Icon(Icons.settings),
),
FloatingActionButton(
onPressed: _action2,
tooltip: Action2 ,
child: const Icon(Icons.settings),
),
],
),