Last updated:
0 purchases
paginated items builder
PaginatedItemsBuilder For Flutter #
Easier to display items in a list/grid view from your controllers directly or handling state internally with support for pagination.
Saves the results in state to avoid unnecessary api calls everytime screen is pushed.
Screenshots #
Usage #
To use this plugin, add paginated_items_builder as a dependency in your pubspec.yaml file.
dependencies:
flutter:
sdk: flutter
paginated_items_builder:
copied to clipboard
First and foremost, import the widget.
import 'package:paginated_items_builder/paginated_items_builder.dart';
copied to clipboard
You can now add a PaginatedItemsBuilder widget to your widget tree.
Here, let's consider a list of posts.
First, in the controller, let's define a variable for handling the posts response.
(typically inside the specific controller) and a public getter to access it in the UI.
PaginatedItemsResponse<Post>? _postsResponse;
PaginatedItemsResponse<Post>? get postsResponse => _postsResponse;
copied to clipboard
Now, define a function to handle the state of the list, function that handles calling the api and
getting the results.
And return the response handler from it.
Future<PaginatedItemsResponse<Post>?> updatePosts({bool reset = false}) async {
final res = await apiFunction(
// startKey is optional and only required when you have pagination support in api
startKey: reset ? null : _postsResponse?.paginationKey,
);
if (reset || _postsResponse == null) {
// if res here is null, then an exception is thrown...
_postsResponse = res;
} else {
_postsResponse?.update(res);
}
notifyListeners();
return _postsResponse;
}
copied to clipboard
The apiFunction can be defined as:
Future<PaginatedItemsResponse<Post>> apiFunction({
// can be string or int (page number) or any other type.
dynamic startKey,
}) async {
// startKey necessary if pagination support
final res = await _api.getPosts(startKey: startKey);
return PaginatedItemsResponse<Post>(
// list of items
listItems: res.data?.posts,
// only required to pass if pagination supported, else null. (can be of any type)
paginationKey: res.data?.paginationKey,
// unique id, should only be passed in the repository function.
// required for functions like `updateItem`, `findByUid`
// and avoiding duplication of items in list (compares uid)
idGetter: (post) => post.id,
);
}
copied to clipboard
You can also log the result directly by using the log() function on the PaginatedItemsResponse
directly...
final response = PaginatedItemsResponse<Post>(
listItems: res.data?.posts,
paginationKey: res.data?.paginationKey,
idGetter: (post) => post.id,
);
response.log();
copied to clipboard
Now, can use this widget like shown in the widget tree:
(No need to handle a refresh indicator separately. It is already present.)
When the reset from fetchPageData fn is true, your code should handle the logic to update
and replace the existing contents. Basically update all items. Much like a pull-down refresh.
The fetchPageData provides the reset flag(boolean).
If that is true, that means an action was triggered which requires to
force reload the items of the list.
The reset flag will be true only when the itemsFetchScope is either
ItemsFetchScope.noItemsRefresh i.e. no items were found, and user
clicked the refresh icon OR ItemsFetchScope.pullDownToRefresh i.e.
the user wants to refresh the list contents with pull-down action OR
ItemsFetchScope.onErrorRefresh if an error occurs.
PaginatedItemsBuilder<Post>(
response: controller.postsResponse,
fetchPageData: (reset) => controller.updatePosts(reset: reset),
// whether to turn all the existing cards into loaders or not.
// If true, all the already displayed items will convert into
// loaders, and then the new list will be rendered.
// If false, then nothing will change on the screen while the data
// is being fetched, when the data arrives, the content in the
// cards will replace.
showLoaderOnResetGetter: (itemsFetchScope) => [
ItemsFetchScope.noItemsRefresh,
ItemsFetchScope.onErrorRefresh,
ItemsFetchScope.pullDownToRefresh,
].contains(itemsFetchScope),
/// whether to display items in a list or grid view.
itemsDisplayType: ItemsDisplayType.list,
/// there are params to customize your list / grid view even further.
/// Read more below...
itemBuilder: (context, index, item) => Text('Item$index : $item'),
),
copied to clipboard
... and a lot of parameters that can be passed. Read more.
If the state is handled using PaginationItemsStateHandler, then response and fetchPageData is handled internally
and is provided in the builder callback.
Use it as follows:
/// function which calls the API and returns `PaginatedItemsResponse`.
Future<PaginatedItemsResponse<Post>> updatePosts(dynamic paginationKey) async {
return await PostsRepository.getPosts(startKey: paginationKey);
}
PaginationItemsStateHandler<Post>(
fetchPageData: updatePosts,
builder: (response, fetchPageData) {
return PaginatedItemsBuilder<Post>(
response: response,
fetchPageData: fetchPageData,
itemBuilder: (context, idx, post) => PostCard(post),
loaderItemsCount: 12,
);
},
),
copied to clipboard
Want to use the shimmer loader somewhere else?
What if you have multiple PaginatedItemsBuilder widgets in a single view,
then every builder has it's own loader, and you want a pull down refresh
handler on the main page, and at the same time don't want every widget
to render it's own loader, instead, have a common global loader for the entire page.
Then you can use LoaderShimmer, which is basically shimmer with the
ShimmerConfig properties as defaults, that can also be changed(if required)...
LoaderShimmer(
baseColor: Colors.grey, // defaults to `ShimmerConfig.baseColor`
// ... and more properties
child: ListView(
children: [
// disable individual loaders for these builders by passing false
// in the showLoaderOnReset flag in the updateX methods..
PaginatedItemsBuilder1(),
PaginatedItemsBuilder2(),
PaginatedItemsBuilder3(),
],
),
);
copied to clipboard
PaginatedItemsBuilder Config #
To see the shimmer loader in play, you need to provide a mock items getter.. What basically happens
is that this 'MockItem' is basically an object of the class T which is passed in
the PaginatedItemsBuilder class.
Generate a class like shown:
class MockItems {
static dynamic getByType<T>([String? mockItemKey]) {
final key = mockItemKey ?? T.toString();
switch (key) {
case 'Category':
// a widget can also be returned from here, instead of an object...
// if a widget is returned, then widget is rendered directly...
return _category;
}
}
static final _category = Category.fromJson({
'id': 'id',
'name': '■■■■■■',
});
}
copied to clipboard
and then pass the reference to the getByType function to the PaginatedItemsBuilderConfig.
PaginatedItemsBuilder.config = PaginatedItemsBuilderConfig(
mockItemGetter: MockItems.getByType,
);
copied to clipboard
In the PaginatedItemsBuilderConfig, you can also customize the shimmer loader colors etc.
PaginatedItemsBuilder.config = PaginatedItemsBuilderConfig(
mockItemGetter: MockItems.getByType,
shimmerConfig: ShimmerConfig(
baseColor: Colors.grey[300],
highlightColor: Colors.grey[200],
),
// ...and a lot more params
);
copied to clipboard
Supporting multiple themes #
The config can be initialized in the MaterialApp's builder property. It is also possible to
pass different colors for different themes as shown:
MaterialApp(
title: 'PaginatedItemsBuilder Demo',
builder: (context, child) {
late final Color shimmerBaseColor;
late final Color shimmerHighlightColor;
switch (Theme.of(context).brightness) {
case Brightness.light:
shimmerBaseColor = Colors.grey[300]!;
shimmerHighlightColor = Colors.grey[100]!;
break;
case Brightness.dark:
shimmerBaseColor = const Color(0xFF031956);
shimmerHighlightColor = const Color(0x80031956);
break;
}
PaginatedItemsBuilder.config = PaginatedItemsBuilderConfig(
mockItemGetter: MockItems.getByType,
shimmerConfig: ShimmerConfig(
baseColor: shimmerBaseColor,
highlightColor: shimmerHighlightColor,
duration: const Duration(seconds: 1),
),
);
return child!;
},
);
copied to clipboard
Want to show items as a grid? Change the cross axis count? Pass in a custom scroll controller?
Well, there are a lot of parameters that can be customized in PaginatedItemsBuilder
See the example directory for a complete sample app.
Created & Maintained By Rithik Bhandari #
GitHub: @rithik-dev
LinkedIn: @rithik-bhandari
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.