diff --git a/src/SortableList.js b/src/SortableList.js index 3d3ff9f..6191ebc 100644 --- a/src/SortableList.js +++ b/src/SortableList.js @@ -29,6 +29,8 @@ export default class SortableList extends Component { autoscrollAreaSize: PropTypes.number, rowActivationTime: PropTypes.number, manuallyActivateRows: PropTypes.bool, + nestedScrollEnabled: PropTypes.bool, + disableIntervalMomentum: PropTypes.bool, renderRow: PropTypes.func.isRequired, renderHeader: PropTypes.func, @@ -192,7 +194,7 @@ export default class SortableList extends Component { } render() { - let {contentContainerStyle, innerContainerStyle, horizontal, style, showsVerticalScrollIndicator, showsHorizontalScrollIndicator} = this.props; + let {contentContainerStyle, innerContainerStyle, horizontal, style, showsVerticalScrollIndicator, showsHorizontalScrollIndicator, nestedScrollEnabled, disableIntervalMomentum} = this.props; const {animated, contentHeight, contentWidth, scrollEnabled} = this.state; const containerStyle = StyleSheet.flatten([style, {opacity: Number(animated)}]) innerContainerStyle = [ @@ -211,6 +213,8 @@ export default class SortableList extends Component { return (