【问题标题】:Collapsing title bar flutter with animation折叠标题栏随动画飘动
【发布时间】:2020-02-11 06:48:28
【问题描述】:

我正在尝试在 Flutter 中重新创建它 -> https://blog.uptech.team/how-to-build-resizing-image-in-navigation-bar-with-large-title-8ba2e8bcb840

即,当您拖动时调整标题大小和对齐标题的应用栏(只是标题,我不想要美国队长盾牌)。我查看了 Sliver 应用栏如下:

 NestedScrollView(
        controller: _scrollController,
        physics: NeverScrollableScrollPhysics(),
        headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
          return <Widget>[
            SliverAppBar(
              automaticallyImplyLeading: false,
              backgroundColor: backgroundColor,
              expandedHeight:
                  MediaQuery.of(context).size.height * 0.25,
              floating: false,
              pinned: true,
              centerTitle: true,
              flexibleSpace: FlexibleSpaceBar(
                title: Text("Testing",
                    style: TextStyle(
                      color: Colors.white,
                    )),
              ),
            ),
          ];
        },

但是我不确定从这里下一步该去哪里。

【问题讨论】:

    标签: flutter dart flutter-sliver flutter-appbar


    【解决方案1】:

    我相信您正在寻找属于 Cupertino Widget 集合的 CupertinoSliverNavigationBar

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2015-01-18
      • 1970-01-01
      • 1970-01-01
      • 2015-09-13
      • 1970-01-01
      • 2018-05-22
      • 2012-11-13
      相关资源
      最近更新 更多