Last updated:
0 purchases
appendable list view
Usage #
AppendableListView<AdvertisementFeedModel, AdvertisementModel>(
getPage: getFeed,
itemBuilder: (context, models, index) {
return CustomCard(
item: models[index],
onTap: () {
HapticFeedback.lightImpact();
});
},
onEmpty: Center(
child: Text(
"Oops! It's empty here...",
),
),
loadingIndicator: LoadingWidget(),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.