IbrahimEltayfe
IbrahimEltayfe
When using the draggable widget or any other widget that uses offset, the positioning appears to be skewed or displaced. it does not retain its intended positions accurately during the...
[Bug] PageRequestListener gets triggered everytime i modify in itemList while a request is loading
### Steps to reproduce 1. Setup PagingController and add PageRequestListener callback ``` final MyPagingController pagingController = MyPagingController(firstPageKey: 1); pagingController.addPageRequestListener((pageKey) { print("NOTIFIED"); //put your request here }); ``` 2. Add a...
When specifying the cacheExtent value in the list, the PagingController triggers multiple requests (fetches page 1 and page 2), even when the user has not scrolled yet. ``` PagedListView( cacheExtent:...