google / flexbox-layout

Flexbox for Android
Apache License 2.0
18.22k stars 1.79k forks source link

For Horizontal Recyclerview scrollbar doesn't scroll until the right edge of the screen #593

Open NewAndOldAdrian opened 2 years ago

NewAndOldAdrian commented 2 years ago

Hello, I'm using FlexboxLayoutManager for Recyclerview with this configuration:

val flexboxLayoutManager = FlexboxLayoutManager(requireContext()).apply { flexDirection = FlexDirection.COLUMN justifyContent = JustifyContent.FLEX_START flexWrap = FlexWrap.WRAP }

The Recyclerview has horizontal orientation and the main issue is in some cases depending on the number of items the scrollbar does not reach towards the right edge of the recyclerview. I can scroll the entire content of the recyclerview(thats not an issue) but sometimes the scrollbar doesn't reflect my real progress.

Can someone help me with this issue? Thx