【发布时间】:2021-01-23 11:08:43
【问题描述】:
我在我的 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,
),
),
.......
【问题讨论】:
标签: flutter