gpt4 book ai didi

flutter - 如何实现带有可折叠搜索栏的 SliverAppBar

转载 作者:IT王子 更新时间:2023-10-29 06:42:49 25 4
gpt4 key购买 nike

This is what I'm trying to do ,它是 iOS 上一个相当常见的 Widget。这是我的代码:

return Scaffold(
backgroundColor: Colors.white,
body: CustomScrollView(
slivers: <Widget>[
SliverAppBar(
automaticallyImplyLeading: false,
pinned: true,
titleSpacing: 0,
backgroundColor: Colors.white,
elevation: 1.0,
title: Container(
width: double.infinity,
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.spaceAround,
mainAxisSize: MainAxisSize.max,
children: <Widget>[
CupertinoButton(
padding: EdgeInsets.all(0),
onPressed: () {},
child: AutoSizeText(
'Ordenar',
style: TextStyle(
color: Color(0xff16161F),
fontFamily: 'Brutal',
fontSize: 17.0,
),
),
),
AutoSizeText(
'Equipos 14',
style: TextStyle(
color: Color(0xff16161F),
fontFamily: 'Archia',
fontSize: 22.0,
),
),
CupertinoButton(
padding: EdgeInsets.all(0),
onPressed: () {},
child: AutoSizeText(
'Editar',
style: TextStyle(
color: Color(0xff16161F),
fontFamily: 'Brutal',
fontSize: 17.0,
),
),
),
],
),
),
centerTitle: true,
),
SliverFillRemaining(
child: Center(
child: CupertinoButton(
onPressed: () {
setState(() {
(isBottom) ? isBottom = false : isBottom = true;
});
},
child: Text('YESSS'),
),
),
),
],
),
bottomNavigationBar: (isBottom) ? _toolBar() : _tabBar(),
);

我已经尝试将 CupertinoTextField() 添加到 bottom 属性,但它进入了我的 Row() 并弄乱了一切.有没有人这样做过,或者知道如何实现?

谢谢。

最佳答案

我设法解决了它。 SliverAppBar 有一个名为 flexibleSpace 的属性。在这里放置了一个 FlexibleSpaceBar,它包含一个 background 属性。现在,不要被愚弄了,这不仅限于纯色或图像。它可以带你想要的任何小部件。就我而言,我想添加一个搜索栏。因为此属性将填充整个 expandedHeight 属性,所以您需要添加一个小的空白空间,这样您的自定义小部件就不会被绘制在您的 SliverAppBar 上。这是相关的代码片段:

flexibleSpace: FlexibleSpaceBar(
background: Column(
children: <Widget>[
SizedBox(height: 90.0),
Padding(
padding: const EdgeInsets.fromLTRB(16.0, 6.0, 16.0, 16.0),
child: Container(
height: 36.0,
width: double.infinity,
child: CupertinoTextField(
keyboardType: TextInputType.text,
placeholder: 'Filtrar por nombre o nombre corto',
placeholderStyle: TextStyle(
color: Color(0xffC4C6CC),
fontSize: 14.0,
fontFamily: 'Brutal',
),
prefix: Padding(
padding:
const EdgeInsets.fromLTRB(9.0, 6.0, 9.0, 6.0),
child: Icon(
Icons.search,
color: Color(0xffC4C6CC),
),
),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8.0),
color: Color(0xffF0F1F5),
),
),
),
),
],
),
),
),

这里是 the result .当滚动向上时,搜索栏将消失。希望这可以帮助任何想要这样做的人。

关于flutter - 如何实现带有可折叠搜索栏的 SliverAppBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55736456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com