xuelongqy / flutter_easy_refresh

A flutter widget that provides pull-down refresh and pull-up load.
https://xuelongqy.github.io/flutter_easy_refresh/
MIT License
3.9k stars 635 forks source link

ListView 嵌套 GridView 导致刷新出问题 #677

Closed tang5011235 closed 1 year ago

tang5011235 commented 1 year ago

return ListView.builder(itemBuilder: (_,__){ return GridView.count( shrinkWrap: true, crossAxisCount: 4, physics: NeverScrollableScrollPhysics(), children: [ Container( color: Colors.blue, ), Container( color: Colors.red, ), Container( color: Colors.green, ), Container( color: Colors.red, ), Container( color: Colors.red, ), ], ); },itemCount: 10,);

xuelongqy commented 1 year ago

请提供详细信息,并重新开启此issue