Closed
Description
Hello,
I just want to understand why VirtualizedSectionList
is not exposed ?
SectionList
inherit from it and is exposed, so I'm a little bit confused...
I need this class because my datas are immutable, so I need to specify the getItem props, to handle this kind of data, something that isn't possible with SectionList
if I'm right.
EDIT: After a bit of reading of the code, I saw that getItem
is override in VirtualizedSectionList
, to follow the same logic as with VirtualizedList
, getItem
should be specify in SectionList
, to allow the same behaviour as excepted when we use VirtualizedList
with immutable datas.