-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Description
I have a rendering bug that doesn't occur with the normal ListView. It occurs when I use section Headers.
After some scrolling, the items start overlapping each other. I'm assuming that the trick with emptying out invisible boxes is not taking sections into consideration.
I call SGListView like so
<SGListView
ref="sglist"
automaticallyAdjustContentInsets={false}
dataSource={this.state.ds}
renderRow={renderRow}
contentContainerStyle={this.props.contentContainerStyle}
stickyHeaderIndices={[]}
initialListSize={this.props.initialListSize}
scrollRenderAheadDistance={1}
pageSize={12}
scrollEnabled={scrollEnabled}
onScroll={onScroll}
scrollEventThrottle={0}
onMomentumScrollEnd = {onScrollEnd}
onEndReached={this.handleLoadMore}
onEndReachedThreshold={70}
renderSectionHeader={this.props.renderSectionHeader}
renderFooter={this.renderFooter}
contentContainerStyle={[localStyle.container,contentContainerStyle]}
onLayout={this.setListHeight}
refreshControl={
<RefreshControl
refreshing={showRefresh}
onRefresh={onRefresh}
/>
}
/>
Metadata
Metadata
Assignees
Labels
No labels