我的抽屉:
const AppDrawerNavigator = createDrawerNavigator({
Home: {
screen: HomeScreen,
},
}, {
contentComponent: Sidebar
}
)
这里是我的侧边栏组件:(表示清楚)
render() {
const routes = [{
title: "Home",
icon: "home",
route: "HomeScreen",
},
{
title: "Settings",
icon: "cog",
route: "Settings",
}]
handleViewRef = ref => this.view = ref;
bounce = () => this.view.bounce(80000)
return (
<Animatable.View animation="fadeInDown" iterationCount="infinite" direction="alternate">
<View style={ styles.tab}>
{
routes.map(e => (
<TouchableOpacity key={e.route} style={ styles.link } onPress={_ => this.navigate(e.route)}>
<Icon style={styles.ico} name={e.icon} size={20}/>
<Text style={styles.txt}> {e.title} </Text>
</TouchableOpacity>
)
)}
</Animatable.View>
如您所见,我使用https://github.com/oblador/react-native-animatable中的动画视图
此库具有onAnimationBegin,所以我想存档的是从抽屉中获取一个“事件”,该事件说“ im open”,因此我可以调用onAnimationBegin开始动画。因为在我的例子中,这是一个循环,只是看动画是否有效。
非常感谢您的帮助
答案 0 :(得分:0)
我认为,由于侧边栏是一个完整的react组件,因此可以使用componentDidMount()方法。 因此,您可以做的是:
componentDidMount(){
onAnimationBegin()
}
有关componentDidMount()方法的完整参考可以在这里找到:https://reactjs.org/docs/react-component.html#componentdidmount