-
|
Whenever I try using virtua inside of a flex flex-wrap container it fails to render anything below is the code <div className="flex max-h-64 flex-wrap gap-2 overflow-y-auto py-0.5">
<VList
count={filteredMemoryMaps.length}
style={{ height: "100%", width: "100%" }}
>
{filteredMemoryMaps.map((memoryMap) => (
<HoverMenuMemoryMap
key={memoryMap.id}
memoryMapName={memoryMap.name}
onClick={() =>
handleLinkNewMemoryMap({
memoryMapId: memoryMap.id,
memoryMapName: memoryMap.name,
})
}
/>
))}
</VList>
</div>the memoryMap just has a name and id property How can I customize virtua so that this can work? |
Beta Was this translation helpful? Give feedback.
Answered by
inokawa
Nov 7, 2025
Replies: 1 comment 1 reply
-
|
Do you mean you want a virtualization like https://github.com/jamiebuilds/react-gridlist ? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Stacked grid like layout will be supported in #281