小编Ush*_*ndo的帖子

Flutter 展开时隐藏 Silver 应用栏的标题

我在我的 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

6
推荐指数
1
解决办法
3588
查看次数

标签 统计

flutter ×1