Skip to content

Instantly share code, notes, and snippets.

@wwayne
Last active July 20, 2016 07:19
Show Gist options
  • Save wwayne/ab6366cae214c5adc078 to your computer and use it in GitHub Desktop.
Save wwayne/ab6366cae214c5adc078 to your computer and use it in GitHub Desktop.
import React, {Animated, Component} from 'react-native'
class Player extends Component {
constructor () {
super()
const width = {pts: 30, ast:...}
this.state = {
pts: new Animated.Value(width.pts)
ast: new Animated.Value(width.ast),
reb: new Animated.Value(width.reb)
}
}
handeleAnimation () {
const timing = Animated.timing
const width = {pts: 14, ast:...}
const indicators = ['pts', 'ast', 'reb']
Animated.parallel(indicators.map(item => {
return timing(this.state[item], {toValue: width[item]})
})).start()
}
render () {
const {pts, ast, reb, stl, blk, tov, min} = this.state
return (
<View>
{pts &&
<Animated.View style={[styles.bar, styles.points, {width: pts}]} />
}
{ast &&
<Animated.View style={[styles.bar, styles.assists, {width: ast}]} />
}
{reb &&
<Animated.View style={[styles.bar, styles.rebounds, {width: reb}]} />
}
<Text onPress={this.handeleAnimation.bind(this)}>Button</Text>
</View>
)
}
}
@shirleycharlin
Copy link

Hi Can I know know what as ast means?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment