Skip to content

Commit

Permalink
warn when setting pagingEnabled when snapToInterval at the same time
Browse files Browse the repository at this point in the history
Reviewed By: fkgozali

Differential Revision: D5326342

fbshipit-source-id: 2bf6b66f81e9aedaad288495f254f04af32dc63d
  • Loading branch information
sahrens authored and facebook-github-bot committed Jun 27, 2017
1 parent 2b1795c commit afa4792
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Libraries/Components/ScrollView/ScrollView.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const flattenStyle = require('flattenStyle');
const invariant = require('fbjs/lib/invariant');
const processDecelerationRate = require('processDecelerationRate');
const requireNativeComponent = require('requireNativeComponent');
const warning = require('fbjs/lib/warning');

import type {NativeMethodsMixinType} from 'ReactNativeTypes';

Expand Down Expand Up @@ -313,8 +314,10 @@ const ScrollView = React.createClass({
/**
* When set, causes the scroll view to stop at multiples of the value of
* `snapToInterval`. This can be used for paginating through children
* that have lengths smaller than the scroll view. Used in combination
* with `snapToAlignment`.
* that have lengths smaller than the scroll view. Typically used in
* combination with `snapToAlignment` and `decelerationRate="fast"`.
* Overrides less configurable `pagingEnabled` prop.
*
* @platform ios
*/
snapToInterval: PropTypes.number,
Expand Down Expand Up @@ -605,6 +608,10 @@ const ScrollView = React.createClass({
if (Platform.OS === 'ios') {
ScrollViewClass = RCTScrollView;
ScrollContentContainerViewClass = RCTScrollContentView;
warning(
!this.props.snapToInterval || !this.props.pagingEnabled,
'snapToInterval is currently ignored when pagingEnabled is true.'
);
} else if (Platform.OS === 'android') {
if (this.props.horizontal) {
ScrollViewClass = AndroidHorizontalScrollView;
Expand Down

0 comments on commit afa4792

Please sign in to comment.