我正在使用react-native的SectionList,并且无法隐藏数据集中空白部分的sectionheaders。我只想显示部分标题和不为空的部分行。
答案 0 :(得分:2)
这就是我所做的:
<SectionList
renderSectionHeader={({ section }) => (
section.data.length > 0 ? this._renderHeader(section.title) : (null)
)}
...
/>