robert-luoqing / flutter_list_view

MIT License
45 stars 17 forks source link

Use inside CustomScrollView #38

Open tomasweigenast opened 2 months ago

tomasweigenast commented 2 months ago

Is there any workaround to make FlutterListView work inside a CustomScrollView?

paurakhsharma commented 1 month ago

I was also looking for this functionality, @tomasweigenast did you find any solution?

tomasweigenast commented 1 month ago

I didn't

robert-luoqing commented 1 month ago

Actually, you can use FlutterSliverList to do it. Please ref https://github.com/robert-luoqing/flutter_list_view/blob/master/lib/src/flutter_list_view.dart

The key point is how much functionality will be exposed.

robert-luoqing commented 1 month ago

https://github.com/robert-luoqing/flutter_list_view/blob/master/example/lib/testlist.dart It is a sample to demonstrate how to use this component in custom scroll view

paurakhsharma commented 1 month ago

@robert-luoqing Is it possible to have Slivers as the childrens of the FlutterListView?

robert-luoqing commented 1 month ago

It is possible, I will extend the functionality in coming days.

paurakhsharma commented 1 month ago

Awesome, thank you. Can you please update here when you add it or should I create a new issue for it?