airbnb / epoxy

Epoxy is an Android library for building complex screens in a RecyclerView
https://goo.gl/eIK82p
Apache License 2.0
8.46k stars 730 forks source link

How to achieve linear Layout #1324

Closed JanuaryThomas closed 1 year ago

JanuaryThomas commented 1 year ago

I'm trying to achieve a vertical list but my screen keeps showing a horizontal view

val amenityController = AmenityController() val amenitiesListEpoxy = binding.amenitiesList amenitiesListEpoxy.setController(amenityController) amenityController.setData( amenities.take(5), true )

JanuaryThomas commented 1 year ago

I was just lazy to investigate