Skip to content

Releases: tttstudios/react-native-paginatable

v0.3.0

03 Apr 20:41
Compare
Choose a tag to compare

Some changes in this version are to methods onLoadMore and onRefresh. If you are overwriting these two methods consider the follow updates.

// If you are using version >= 0.3
onLoadMore = ({ ...args }, onCompleteLoadMore, onLoadError) => {
    this.props.dispatch(paginationStateManager.loadMore({
	...args,
    	keyword: 'keyword'
    }, onCompleteLoadMore, onLoadError))
}

onRefresh = ({...args}, onCompleteRefreshing, onLoadError) => {
    this.props.dispatch(paginationStateManager.refresh({
        ...args,
        keyword: 'keyword'
    }, onCompleteRefreshing, onLoadError))
}

v0.2.4

24 Feb 08:24
Compare
Choose a tag to compare
0.2.4

v0.2.3

21 Feb 22:41
Compare
Choose a tag to compare

Add key prop to list.

v0.2.2

20 Feb 17:21
Compare
Choose a tag to compare

Fix issue while refreshing list.

v0.2.0

19 Feb 20:36
Compare
Choose a tag to compare

Important upgrade.

We fixed an issue with duplicated data load.

v0.1.1

07 Feb 23:16
Compare
Choose a tag to compare
0.1.1