使用颤动底部切换页面时是否可以返回上一页

时间:2019-12-24 19:56:26

标签: flutter dart

例如,主页图标中有一个主页。用户可以从主页转到主页详细信息页面。当用户单击邮件图标时,屏幕将直接转到邮件页面。现在,当用户单击主页图标时,是否有方法可以转到主页详细信息页面(因为它是邮件页面之前的最后显示的页面)而不是主页?

bottomNavigationBar: BottomNavigationBar(
       currentIndex: 0, // this will be set when a new tab is tapped
       items: [
         BottomNavigationBarItem(
           icon: new Icon(Icons.home),
           title: new Text('Home'),
         ),
         BottomNavigationBarItem(
           icon: new Icon(Icons.mail),
           title: new Text('Messages'),
         ),
         BottomNavigationBarItem(
           icon: Icon(Icons.person),
           Title: Text('Profile')
         )
       ],
     ),

0 个答案:

没有答案