我的抽屉:
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,所以我想要从抽屉中获取一个“事件”,上面写着“我打开”,所以我可以调用onAnimationBegin来开始我的动画。因为在我的例子中,它是一个循环,只是为了看看动画是否有效。
非常感谢你的帮助