INNER CODE UNIT · JavaScript
nextPage
phil-r/react-native-looped-carousel · index.js:228
const nextPage = this._normalizePageNumber(currentPage + 1);
// prevent from looping
if (!this.props.isLooped && nextPage < currentPage) {
return;
}
this.animateToPage(nextPage);
}
_animatePreviousPage = () => {
const { currentPage } = this.state;
const nextPage = this._normalizePageNumber(currentPage - 1);
// prevent from looping
if (!this.props.isLooped && nextPage > currentPage) {
return;
}
this.animateToPage(nextPage);