You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With numColumns >=2 RecyclerFlatList unlike FlatList doesn't wrap each column in a view. This leads to more reuse of cells however, if for some reason in grid setting the children are of unequal height then separators might look off. While there is a way to fix horizontal separators by adding them on top of items rather than bottom but if there is a need to add a vertical ones then it can be a problem. RFL doesn't offer vertical separators and the intent is not to add those however, even if the developers try to add those themselves the separator needs to be added to the tallest item which won't be possible to determine.
It's a good problem and we can solve it in the future. I don't see this being a major use case right now.
Image
The text was updated successfully, but these errors were encountered:
What
With
numColumns >=2
RecyclerFlatList unlike FlatList doesn't wrap each column in a view. This leads to more reuse of cells however, if for some reason in grid setting the children are of unequal height then separators might look off. While there is a way to fix horizontal separators by adding them on top of items rather than bottom but if there is a need to add a vertical ones then it can be a problem. RFL doesn't offer vertical separators and the intent is not to add those however, even if the developers try to add those themselves the separator needs to be added to the tallest item which won't be possible to determine.It's a good problem and we can solve it in the future. I don't see this being a major use case right now.
Image
The text was updated successfully, but these errors were encountered: