作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含底部导航的应用程序,当应用程序加载时,它默认为第一页。如果我单击第二页,然后从第二页导航到另一个未链接到底部导航栏的单独页面。当我单击此页面中 Appbar 中的后退按钮时,我将再次转到第一页而不是第二页。
导航 Controller :
import 'package:flutter/material.dart';
import '../pages/TaxCalcPage.dart';
import '../pages/TaxInfoPage.dart';
import '../pages/SettingsPage.dart';
class BottomNavigationBarController extends StatefulWidget {
@override
_BottomNavigationBarControllerState createState() =>
_BottomNavigationBarControllerState();
}
class _BottomNavigationBarControllerState extends State<BottomNavigationBarController> {
final List<Widget> pages = [
TaxCalcPage(
key: PageStorageKey('Page1'),
),
TaxInfoPage(
key: PageStorageKey('Page2'),
),
SettingsPage(
key: PageStorageKey('Page3'),
)
];
final PageStorageBucket bucket = PageStorageBucket();
int _selectedIndex = 0;
Widget _bottomNavigationBar(int selectedIndex) => BottomNavigationBar(
onTap: (int index) => setState(() => _selectedIndex = index),
currentIndex: selectedIndex,
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home), title: Text('Tax Calculators')),
BottomNavigationBarItem(
icon: Icon(Icons.info), title: Text('Tax Information')),
BottomNavigationBarItem(
icon: Icon(Icons.settings), title: Text('Settings')),
],
);
@override
Widget build(BuildContext context) {
return Scaffold(
bottomNavigationBar: _bottomNavigationBar(_selectedIndex),
body: PageStorage(
child: pages[_selectedIndex],
bucket: bucket,
),
);
}
}
return Scaffold(
appBar: AppBar(
leading: Builder(
builder: (BuildContext context) {
return IconButton(
icon: const Icon(Icons.chevron_left),
iconSize: (0.06 * ratio) * width,
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
onPressed: () => Navigator.of(context).pushAndRemoveUntil(MaterialPageRoute(builder: (BuildContext context) => BottomNavigationBarController()), (Route route) => route == null),
);
},
),
最佳答案
使用 Navigator.of(context).pop();
应该带您回到具有正确状态的前一个屏幕。为了更好地理解它,请查看这篇文章:https://medium.com/flutter-community/flutter-push-pop-push-1bb718b13c31
如果这不起作用,您必须保存 BottomNavigationBar
的当前索引并在返回后将其传递回您的导航 Controller 。
关于 flutter 导航回所选页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57362166/
我是一名优秀的程序员,十分优秀!