Open namjh654 opened 3 years ago
VirtualizedLists should never be nested inside plain ScrollViews with the same orientation - use another VirtualizedList-backed container instead.
해결 <FlatList numColumns={5} // 배열 5줄 가운데 공백 출력 data={this.state.seat} renderItem={this.renderItem} // keyExtractor ={(item) => item.id} nestedScrollEnabled />
flatlist 안에 nestedScrollEnabled 추가.
https://machine-woong.tistory.com/293
VirtualizedLists should never be nested inside plain ScrollViews with the same orientation - use another VirtualizedList-backed container instead.
해결 <FlatList numColumns={5} // 배열 5줄 가운데 공백 출력 data={this.state.seat} renderItem={this.renderItem} // keyExtractor ={(item) => item.id} nestedScrollEnabled />
flatlist 안에 nestedScrollEnabled 추가.