我在我的 flutter 应用程序上实现了一个带有背景图像的银色应用程序栏。我想让银色应用程序栏的标题在银色应用程序栏处于扩展模式时隐藏。我只想在折叠时显示标题,如何实现此行为?
SliverAppBar(
expandedHeight: 250.0,
floating: false,
pinned: true,
title: Text("Coporate News"),
elevation: 8,
flexibleSpace: FlexibleSpaceBar(
centerTitle: true,
title: Text(""),
background: Stack(
children: [
Container(
height: 400,
child: Image.network(
news['url'],
fit: BoxFit.cover,
),
),
.......
Run Code Online (Sandbox Code Playgroud)
flutter ×1