-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support horizontal scrolling with FlexDirection.ROW #215
Comments
Hi @Saketme, Currently horizontal scrolling is not supported if you set the flex direction as FlexDirection.ROW (or ROW_REVERSE). But it could be implemented in the future, could you change the title as something like "Support horizontal scrolling with FlexDirection.ROW"? |
Done :) |
Thanks. I'll keep this as an enhancement. |
Hi @thagikura ! |
Hi @AnninaO, At this moment, you can't scroll a RecyclerView with FlexboxLayoutManager in both directions. |
Fixed by #315 |
Hello, the problem persists, when I put the FlexboxLayout (ROW mode) inside a HorizontalScrollView the items contract |
@MarioHBS were you able to resolve the issue? I am facing the same issue |
This issue still exits. |
Having the same issue |
Guys I have found a solution, simply use ChipGroup instead of FlexBox , literally everything works fine as expected |
is there a fix for this issue? experienced this after upgrading my from this is link to my xml https://github.com/open-learning-exchange/myplanet/blob/master/app/src/main/res/layout/home_card_library.xml |
Any solution to this ? |
Hello, thanks for this fantastic library. I'm trying to create a horizontally scrollable list, but
FlexboxLayoutManager
doesn't seem to be wrapping the list items. In each column, all items have the same width, which doesn't look correct. Is there something I'm missing? I'm using this code:Update: Oh wait, supplying
setAlignItems()
with something other thanSTRETCH
fixes the width of the items. As in, they're no longer equi sized. So I've realized that I want the items to be laid out in row fashion, but the list should be horizontally scrollable. Is this possible?The text was updated successfully, but these errors were encountered: