1

我的抽屉:

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来开始我的动画。因为在我的例子中,它是一个循环,只是为了看看动画是否有效。

非常感谢你的帮助

4

1 回答 1

0

我想,因为侧边栏是一个完整的 react 组件,所以可以使用 componentDidMount() 方法。所以你可以做的是:

componentDidMount(){
    onAnimationBegin()
}

可以在此处找到有关 componentDidMount() 方法的完整参考:https ://reactjs.org/docs/react-component.html#componentdidmount

于 2018-10-19T12:46:20.557 回答