gpt4 book ai didi

flutter - 如何使用 ListView.builder reverse :true 在顶部显示 RefreshIndicator

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

我正在构建一个简单的消息系统,用户将在其中看到消息列表。

我有一个带有 reverse:true 的 ListView.Builder,因为我希望列表在加载消息页面时显示在底部。

当他们向下拉一直滚动到顶部时,我希望出现一个刷新指示器,以便他们可以加载以前的消息,就像大多数流行的聊天应用程序一样。

然而,由于列表中有 reverse:true,他们必须在屏幕底部向上拉以在使用 RefreshIndicator 时加载以前的消息。

有没有办法在使用 reverse:true 时下拉而不是向上触发 RefreshIndicator?

最佳答案

在我看来,你想在 ListView 的底部加载更多,我认为你只需要在 ListView 的最后一项添加一个加载更多 View ,就像下面的代码:

import 'package:flutter/material.dart';
import 'dart:async';


void main() {
runApp(new MaterialApp(
home: new Scaffold(
body: new LoadMoreListView(enableLoadMore: true, count: 30,),
),
));
}

class LoadMoreListView extends StatefulWidget {

bool enableLoadMore;
int count;

LoadMoreListView({this.enableLoadMore = true, this.count = 15});

@override
State<StatefulWidget> createState() {
return new LoadMoreListViewState();
}

}

class LoadMoreListViewState extends State<LoadMoreListView> {

ScrollController _scrollController = new ScrollController();
bool isRequesting = false;

@override
void initState() {
super.initState();
_scrollController.addListener(() {
if (_scrollController.position.pixels ==
_scrollController.position.maxScrollExtent) {
///load more when the listView attached the bottom
loadMore();
}
});
}

Future<Null> loadMore() async {
if (isRequesting) {
///if is requesting ,return the next action
return null;
}
setState(() {
isRequesting = true;
});

///loading your data from any where,eg:network
return null;
}

@override
void dispose() {
_scrollController.dispose();
super.dispose();
}

@override
Widget build(BuildContext context) {
return new ListView.builder(
itemCount: _count(),
itemBuilder: _buildItem);
}

_count() {
if (widget.enableLoadMore) {
return widget.count + 1;
}
return widget.count;
}

Widget _buildItem(BuildContext context, int index) {
if (index == widget.count) {
return _buildLoadMoreView();
}
return new Container(
height: 36.0,
child: new Center(
child: new Text("I am the $index item"),
),
);
}

Widget _buildLoadMoreView() {
return new Padding(
padding: const EdgeInsets.all(8.0),
child: new Center(
child: new Opacity(
opacity: 1.0,
child: new CircularProgressIndicator(),
),
),
);
}

}

关于flutter - 如何使用 ListView.builder reverse :true 在顶部显示 RefreshIndicator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51479630/

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