У меня есть TabBarView
с 3 TabBar
. Когда я нахожусь на вкладке 1, я что-то делаю, затем я перехожу на вкладку 2, когда я возвращаюсь к вкладке 1, я хочу, чтобы предыдущее состояние вкладки 1 не изменилось.
Как этого добиться в Flutter ?
Ниже скриншот моего кода
class _LandingPageState extends State<LandingPage> with SingleTickerProviderStateMixin {
int _selectedIndex = 0;
PageController pageController;
TabController tabController;
@override
void initState() {
tabController = TabController(length: 3, vsync: this, initialIndex: 0);
pageController = PageController(initialPage: 0)
..addListener(() {
setState(() {
_selectedIndex = pageController.page.floor();
});
});
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
bottomNavigationBar: BottomNavigationBar(
currentIndex: _selectedIndex,
onTap: (index) {
setState(() {
_selectedIndex = index;
tabController.animateTo(index,
duration: Duration(microseconds: 300),
curve: Curves.bounceIn);
});
},
items: [
BottomNavigationBarItem(
icon: Icon(Icons.assignment), title: Text("Các yêu cầu")),
BottomNavigationBarItem(
icon: Icon(Icons.history), title: Text("Lịch sử")),
BottomNavigationBarItem(
icon: Icon(Icons.person), title: Text("Hồ sơ")),
]),
body: TabBarView(
controller: tabController,
children: [
RequestPage(key: PageStorageKey<String>("request_page"),),
HistoryPage(key: PageStorageKey<String>("history_page")),
ProfilePage(key: PageStorageKey<String>("profile_page"))])
),
);
}