在Flutter中,bottomNavigationBar是一个常用的组件,用于创建底部导航栏。通过ontab属性,可以在用户切换底部导航栏的选项卡时重新构建同一页面。
要实现这个功能,可以按照以下步骤进行操作:
class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _selectedIndex = 0;
List<Widget> _pages = [
Page1(),
Page2(),
Page3(),
];
void _onTabTapped(int index) {
setState(() {
_selectedIndex = index;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Bottom Navigation Bar'),
),
body: _pages[_selectedIndex],
bottomNavigationBar: BottomNavigationBar(
currentIndex: _selectedIndex,
onTap: _onTabTapped,
items: [
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: 'Page 1',
),
BottomNavigationBarItem(
icon: Icon(Icons.business),
label: 'Page 2',
),
BottomNavigationBarItem(
icon: Icon(Icons.school),
label: 'Page 3',
),
],
),
);
}
}
通过以上步骤,就可以实现在Flutter中通过ontab在同一页面上重建bottomNavigationBar的功能。根据具体需求,可以在_pages列表中添加更多的页面,并在BottomNavigationBarItem中设置对应的图标和标签。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云