loading_more_list icon indicating copy to clipboard operation
loading_more_list copied to clipboard

A loading more list which supports ListView,GridView,WaterfallFlow and Slivers.

Results 19 loading_more_list issues
Sort by recently updated
recently updated
newest added

https://github.com/flutter/flutter/issues/55170 workaround: ```dart LoadingMoreCustomScrollView( slivers: [ SliverToBoxAdapter(), // Bug fix: https://github.com/flutter/flutter/issues/55170 LoadingMoreSliverList() ] ) ```

APP刷新时 列表也会刷新 然后异常 ``` IndexedStack xxxWidget for(...) LoadingMoreList xxxWidget for(...) LoadingMoreList LoadingMoreSliverList ``` Ctrl + S 热重载 和 Get.updateLocal() 所有列表都会刷新 异常发生于LoadingMoreSliverList 终端输出 ```console The following RangeError was thrown building: RangeError...

- Flutter 版本:1.22.6 - 插件版本:3.2.0 - 机型:iPhone xs / 小米 10 - **重现步骤** 修改TuChongRepository类的loadData方法,第一页加载一条,第二页加载4条 `Future loadData([bool isloadMoreAction = false]) async { String url = ''; if (isEmpty) { url =...

用这个库来加载聊天页面,第一次聊天的时候,是没有消息的,这个库会显示没有数据,请问如何禁止这个属性?

Creating a chat app where things start at the bottom is hard to do with this package. the `reverse: true` feature makes the scroll direction weird. However, can we get...

Hello, can you provide an example for building a loading more list with flutter bloc library of Felix Angelov? I am trying to implement an ExtendedNestedScrollView where the tabs will...

Stack Overflow

### Content 1. 首先这个backgroundColor 没地方用. 我搜了下,貌似没用 3. 但是没用,它自带了个buff, 不传入,它背景色为Colors.grey[200], 就会出现,当主题为dark黑色时, 它背景为灰色, 很蛋疼 ``` Widget _setbackground(bool full, Widget widget, double height) { widget = Container( width: double.infinity, height: height, child: widget,...