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