gpt4 book ai didi

flutter - 如何使 SliverAppBar 在 sub_page 的 SliverList 之前滚动

转载 作者:IT王子 更新时间:2023-10-29 06:59:16 24 4
gpt4 key购买 nike

当我滚动时,我希望可以先滚动 SliverAppBar。我该怎么做?现在是 sub_page 第一。

预期效果:在滚动操作中,首选项是 SliverAppBarSliverAppBar显示/隐藏后,继续滚动sub_page。演示(https://github.com/fanybook/cornerstone/blob/master/_docs/flutter_improve_scroll_priority.mp4?raw=true)

重点是有子页面(和 BottomNavigationBar)。如果单页可以通过多个SliverAppBar/bottom和NestedScrollView的body/SliverList来实现。

enter image description here

最佳答案

您要查找的内容的最小示例 -

Widget build(BuildContext context) {
return DefaultTabController(
length: 3,
child: Scaffold(
body: CustomScrollView(
slivers: <Widget>[
SliverAppBar(
title: Text('Demo'),
pinned: false,

bottom: PreferredSize(
child: TabBar(
tabs: <Widget>[
Text('Tab 1'),
Text('Tab 2'),
Text('Tab 3'),
],
),
preferredSize: Size.fromHeight(25.0)),
),
SliverList(
delegate: SliverChildBuilderDelegate((context, int) {
return Text('Dummy text');
}),
),
],
),
),
);
}

enter image description here

关于flutter - 如何使 SliverAppBar 在 sub_page 的 SliverList 之前滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53863663/

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