【发布时间】:2020-10-26 02:45:20
【问题描述】:
我在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'),
),
),
),
【问题讨论】:
标签: flutter navigation flutter-sliver