我使用的是react native的SectionList,无法隐藏数据集空部分的sectionheader。我只想显示不为空的节的标题和行。
这就是我所做的:
<SectionList
renderSectionHeader={({ section }) => (
section.data.length > 0 ? this._renderHeader(section.title) : (null)
)}
...
/>
<SectionList>
renderSectionHeader={({ section: { title, data } }) =>
data.length > 0 && <Text>{title}</Text>
}
...
</SectionList>