expo / ex-navigation

Route-centric navigation for React Native
997 stars 201 forks source link

Transition doesn't work when I use performAction and jumpToItem #411

Open kiki-le-singe opened 7 years ago

kiki-le-singe commented 7 years ago

Hi

When I use this below code, there is no transition.

      this.props.navigation.performAction(({ drawer }) => {
        drawer('main').jumpToItem('contact')
      })

is it possible to run a transition like navigator.push(Router.getRoute('drawer')) ? Any ideas how I could handle transitioning to the new route ?

thanks :)