gpt4 book ai didi

android - Flutter:如何将 RefreshIndicator 与 SliverAppBar 一起使用

转载 作者:IT王子 更新时间:2023-10-29 06:35:33 30 4
gpt4 key购买 nike

我正在尝试将 RefreshIndicator 添加到 CustomScrollView。有可能吗?这是代码示例:

CustomScrollView(
slivers: <Widget>[
SliverAppBar(
title: Text('POSTAPP'),
centerTitle: true,
floating: true,
pinned: false,
),
SliverList(
delegate: SliverChildBuilderDelegate(
_createPostItem,
childCount: postRepo.posts.length,
),
),
],
);

最佳答案

只有这样:

RefreshIndicator(child: CustomScrollView(
slivers: <Widget>[
SliverAppBar(
title: Text('POSTAPP'),
centerTitle: true,
floating: true,
pinned: false,
),
SliverList(
delegate: SliverChildBuilderDelegate(_createPostItem,
childCount: postRepo.posts.length))
],
), onRefresh: () => Future.value(true));

SliverList 不可滚动,因此您不能将其包装在 RefreshIndicator 中

关于android - Flutter:如何将 RefreshIndicator 与 SliverAppBar 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52517010/

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