Skip to content

Commit

Permalink
[TouchableBounce] Use native animations only on Android
Browse files Browse the repository at this point in the history
Native springs are not supported on iOS yet. Waiting for that PR upstream to be rebased, reviewed, and merged.
  • Loading branch information
tiensonqin authored and ide committed Sep 26, 2016
1 parent 6fd3cd3 commit a56d170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/Components/Touchable/TouchableBounce.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ var TouchableBounce = React.createClass({
toValue: value,
velocity,
bounciness,
useNativeDriver: true,
useNativeDriver: Platform.OS === 'android',
}).start(callback);
},

Expand Down

0 comments on commit a56d170

Please sign in to comment.