lisawray / groupie

Groupie helps you display and manage complex RecyclerView layouts.
MIT License
3.66k stars 292 forks source link

Is it possible to make ui like Instagram Discover #427

Open arifinreinaldo opened 2 years ago

arifinreinaldo commented 2 years ago

Hi, Thank you for your great library to help develop with Recyclerview.

I just want to ask if it is possible to create layout like instagram discover with this library? with rowspan and colspan Any suggestion what to look for also welcomed. Thank you very much image

Zhuinden commented 2 years ago

This is theoretically out of scope for Groupie, as Groupie manages the items in the adapter, and this is a LayoutManager responsibility.

GridLayoutManager alone does not let you have an image that takes up multiple rows, so you might need something like https://github.com/google/flexbox-layout#flexboxlayoutmanager-within-recyclerview .

Then, you can use that with Groupie.

arifinreinaldo commented 2 years ago

Thank you for the swift response, will check the reference.