Last updated:
0 purchases
loadany
LoadAny #
A new Flutter loads more package.
中文说明
Support #
CustomScrollView
SliverListView
SliverGridView
SliverListView substitute ListView
SliverGridView substitute GridView
Custom loading style
External nested RefreshIndicator
Feed streaming
Usage #
Add LoadAny
import 'package:loadany/loadany.dart';
copied to clipboard
LoadStatus status = LoadStatus.normal;
LoadAny(
onLoadMore: getLoadMore,
status: status,
footerHeight: 40,
endLoadMore: true,
bottomTriggerDistance: 200,
child: CustomScrollView(
slivers: <Widget>[
SliverGrid(...),
SliverList(...),
],
),
)
copied to clipboard
/// Load More Get Data
Future<void> getLoadMore() async {
setState(() {
status = LoadStatus.loading;
});
Timer.periodic(Duration(milliseconds: 5000), (Timer timer) {
timer.cancel();
int length = list.length;
for (var i = 1; i < 11; ++i) {
list.add(length + i);
}
if (length > 80) {
status = LoadStatus.completed;
} else if (length >= 50 && length < 70) {
status = LoadStatus.error;
} else {
status = LoadStatus.normal;
}
setState(() {});
});
}
copied to clipboard
Getting Started #
Getting Started
Screenshot #
Loading
Error
Completed
Issues and feedback #
Please file issues to send feedback or report a bug. Thank you!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.