我在下面使用SliverAppBar
,我想在通过Navigation.pushReplacement
到达此页面时删除后退按钮
此 SliverAppBar 嵌套在页面中,该页面返回嵌套在底部栏导航中。
我应该如何删除后退按钮
SliverAppBar(
expandedHeight: 120.0,
floating: true,
pinned: false,
snap: true,
elevation: 40,
backgroundColor: Colors.orange,
flexibleSpace: FlexibleSpaceBar(
centerTitle: true,
title: Padding(
padding: const EdgeInsets.only(top: 25),
child: Text('Hello'),
),
),
),
添加automaticallyImplyLeading = false
SliverAppBar 中有一个属性自动暗示领先。将此设置为 false。默认情况下,这是真的。
欲了解更多信息,请访问此处