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
I've found that when using <VirtualList> I could not style the list <div>. The styles I needed were:
display: flex;
flex-flow: column;
width:100%;
Suggest A Solution
I think the right way is to let us have an optional listClass prop so we can style the list directly. This will not break any existing implementations. Like this:
First of many issues on virtual I expect, this is why I hate shipping jsx here. The user should be in full control of rendering.
Well listClass seems like an appropriate solution, if you submit a PR, I'll probably merge it.
Describe The Problem To Be Solved
I've found that when using
<VirtualList>
I could not style the list<div>
. The styles I needed were:Suggest A Solution
I think the right way is to let us have an optional
listClass
prop so we can style the list directly. This will not break any existing implementations. Like this:The text was updated successfully, but these errors were encountered: