728x90
반응형
<FlatList
data={list}
keyExtractor={(index) => 'key'+index}
renderItem={({ item, index }) =>
// 랜더할 뷰
}
ItemSeparatorComponent={() => (<View style={{ height: 1, backgroundColor:AppStyle.AppThemeColorDarkGray }} />)}
onEndReachedThreshold={0}
onEndReached = {()=> console.log("끝")} // 여기서 api를 호출해준다.
/>
728x90
반응형