我想从其他页面导航到页面的第二个底部。
这里的父项是BottomNavigationBar,我要对其进行配置以更改页面(我在Provider中定义了它的键,以便从其他页面访问它)。
List<Widget> pages = new List<Widget>();
BottomNavigationBar bottomNavigationBar;
updateList(){
pages.addAll({
Dashboard(),
AllServices(),
Account(),
Charge(),
});
}
int _selectedIndex = 0;
Widget _bottomNavigationBar(int selectedIndex,key) {
return BottomNavigationBar(
key: key,
onTap: (int index) => setState(() => _selectedIndex = index),
currentIndex: selectedIndex,
type: BottomNavigationBarType.fixed,
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: new Icon(Icons.home),
title: new Text("A page"),
),
BottomNavigationBarItem(
icon: new Icon(Icons.location_on),
title: new Text("B page")
),
BottomNavigationBarItem(
icon: new Icon(Icons.store),
title: new Text("C page")
),
BottomNavigationBarItem(
icon: new Icon(Icons.person),
title:new Text("D page")
),
],
);
}
@override
void initState() {
// TODO: implement initState
super.initState();
updateList();
}
@override
Widget build(BuildContext context) {
final globalKeyForBottomNavigate = Provider.of<Controller>(context, listen: false).bottomNavigate;
return Scaffold(
bottomNavigationBar: _bottomNavigationBar(_selectedIndex,globalKeyForBottomNavigate),
body: pages[_selectedIndex],
);
}
现在子页面A,B,C,D从AI页面导航到F页面。然后,如果触发了一个动作,我想导航到B页面,但是我的解决方案是更改BottomNavigationBar的索引页面F,然后导航到页面A。它可以工作,但不能直接导航到页面B和BottomNavigationBar的内容。在我的解决方案中,我说可以先更改BottomNavigationBar的索引,然后转到最后一页(这里是页面A),但是如您所见,我不知道如何直接导航到页面B。这是页面F的代码。
onTap: (){
var bottomKey=Provider.of<Controller>(context, listen: false).bottomNavigate;
final BottomNavigationBar navigationBar = bottomKey.currentWidget;
navigationBar.onTap(1);
Navigator.pop(context);
},
答案 0 :(得分:1)
您可以尝试在应用中使用环境变量。并根据操作更改环境变量的值。其次,将selectedIndex的值与该环境变量绑定,以便每当该变量更改时,它将更改selectedIndex的值,并使用索引的新值再次调用仪表板页面,它将从底部导航到所需页面。