react-native-indicator
Advanced tools
Comparing version 0.6.1 to 0.6.2
@@ -32,3 +32,3 @@ /** | ||
for (let i = 0; i < this.props.barNumber; i++) { | ||
heights.push(new Animated.Value(this.props.barHeight)); | ||
heights.push(new Animated.Value(this.props.barHeight/3)); | ||
} | ||
@@ -66,4 +66,4 @@ | ||
return Animated.sequence([ | ||
Animated.timing(self.state.heights[i], {toValue: 5, duration: 500, delay: i*200}), | ||
Animated.timing(self.state.heights[i], {toValue: self.props.barHeight, duration: 500}) | ||
Animated.timing(self.state.heights[i], {toValue: self.props.barHeight, duration: 400, delay: i*200}), | ||
Animated.timing(self.state.heights[i], {toValue: self.props.barHeight/3, duration: 400}) | ||
]) | ||
@@ -70,0 +70,0 @@ } |
{ | ||
"name": "react-native-indicator", | ||
"version": "0.6.1", | ||
"version": "0.6.2", | ||
"description": "React Native Indicator Component", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1282193