老师您好,我有一个tabs.dart为页面布局总控,其中有bottomNavigationBar
//页面列表
List _pageList = [
IndexPage(),
CommentPage(),
HistoryPage(),
ShowPage(),
MinePage()
];
List _naGroup = [
BottomNavigationBarItem(icon: Icon(Icons.home), title: Text(‘首页’)),
BottomNavigationBarItem( icon: Icon(Icons.speaker_notes), title: Text(‘点评’)),
BottomNavigationBarItem(icon: Icon(Icons.library_books), title: Text(‘历史’)),
BottomNavigationBarItem(icon: Icon(Icons.people), title: Text(‘秀’)),
BottomNavigationBarItem(icon: Icon(Icons.person), title: Text(‘我的’)),
];
业务需要在tabs.dart页面添加下拉菜单,index页面内容随着下拉菜单选择而变化。
目前的问题,当我选中下拉菜单中的某一选项时,index页面内容无法实时刷新,只能手动刷新后才会有变化,请问怎么才能做到实时刷新呢?
解锁Flutter开发新姿势,,系统掌握Flutter开发核心技术。
了解课程