Describe the bug
when using normal mobile pagination correctly working but when using tablet loading issue occurred can you check below video.

Hi @cgowthamanmca 馃憢
Thanks for opening an issue!
Thanks for bringing this up. This is likely happening because the content never fills the screen height so the scrolling offset never triggers a fetch event. I'll try to update this shortly 馃憤
@cgowthamanmca I solve this issue with a simple trick:
Use AfterLayoutMixin ( https://pub.dev/packages/after_layout ) and add this code into
overrided method: void afterFirstLayout(BuildContext context);
Future.microtask(() => _postBloc..add(PostFetched()));
the result code is like this:
@override
void afterFirstLayout(BuildContext context) {
// Fix bug in n infinite list with less items of page size or with bigger device height
Future.microtask(() => _postBloc..add(PostFetched()));
}
I hope it will be useful to you
This has been fixed in https://github.com/felangel/bloc/commit/069f16b0027bb0d8eacaa84b334bc8b30d686bd8 馃帀
Most helpful comment
Hi @cgowthamanmca 馃憢
Thanks for opening an issue!
Thanks for bringing this up. This is likely happening because the content never fills the screen height so the scrolling offset never triggers a fetch event. I'll try to update this shortly 馃憤