作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 BottomNavigationBar
当点击导航栏中的任何图标时。我希望它进入下一个屏幕。这就是我在这里使用命名路由的原因。main.dart
代码
import 'package:flutter/material.dart';
import 'Screens/profilePage1/profilePage1.dart';
void main() => runApp(MyStatefulWidget());
class MyStatefulWidget extends StatefulWidget {
@override
_MyStatefulWidgetState createState() => _MyStatefulWidgetState();
}
class _MyStatefulWidgetState extends State<MyStatefulWidget> {
int _selectedIndex = 0;
void _onItemTapped(int index) {
setState(() {
_selectedIndex = index;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
routes: {
// When navigating to the "/" route, build the FirstScreen widget.
'/first': (context) => ProfilePage1(),
// When navigating to the "/second" route, build the SecondScreen widget.
'/second': (context) => ProfilePage1(),
'/third': (context) => ProfilePage1(),
'/fourth': (context) => ProfilePage1(),
'/fifth': (context) => ProfilePage1(),
},
home: Scaffold(
body: Center(
child: routes.elementAt(_selectedIndex),
),
bottomNavigationBar: BottomNavigationBar(
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(icon: Icon(Icons.home), title: Text("")),
BottomNavigationBarItem(
icon: Icon(Icons.calendar_today), title: Text("")),
BottomNavigationBarItem(
icon: Icon(
Icons.account_circle,
size: 35,
color: Color(0xFF334192),
),
title: Text("")),
BottomNavigationBarItem(icon: Icon(Icons.message), title: Text("")),
BottomNavigationBarItem(
icon: Icon(Icons.table_chart), title: Text("")),
],
currentIndex: _selectedIndex,
selectedItemColor: Color(0xFF334192),
unselectedItemColor: Colors.grey,
onTap: (index){
},
),
),
);
}
}
在这里,我创建了 5 个命名路由。我希望它在单击特定选项卡时传递给正文。我怎么做?
最佳答案
使用 Navigator.pushNamed()
onTap: (index){
switch(index){
case 0:
Navigator.pushNamed(context, "/first");
break;
case 1:
Navigator.pushNamed(context, "/second");
break;
...etc
}
},
Navigator.pushedName() 需要
上下文 找到
祖先包含导航器路由的小部件,现在您的底部导航栏已经在根小部件中 -
MaterialApp , 其中
不是 BottomNavigationBar 的祖先,它们处于相同的上下文中。
关于list - 如何在 flutter 的BottomNavigationBar中使用命名路由?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63557096/
我是一名优秀的程序员,十分优秀!