카테고리 없음

react native pagenation 처리 ( 페이징 )

Machine_웅 2020. 7. 8. 14:23
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
반응형