diff --git a/Bar.js b/Bar.js index 31c7106..fd65bc3 100644 --- a/Bar.js +++ b/Bar.js @@ -143,7 +143,11 @@ export default class ProgressBar extends Component { outputRange: [innerWidth / -2, 0], }), }, { - scaleX: this.state.progress, + // Interpolation a temp workaround for https://github.com/facebook/react-native/issues/6278 + scaleX: this.state.progress.interpolate({ + inputRange: [0, 1], + outputRange: [0.0001, 1], + }), }], };