How to navigate in mobx store using react navigation?

后端 未结 3 1521
甜味超标
甜味超标 2021-01-16 11:36

I can use this.props.navigation from screen component to navigate. How should I do the similar in mobx store file? Or should I perform navigation in store?

3条回答
  •  孤独总比滥情好
    2021-01-16 12:02

    Send this one this.props.navigation as a parameter to the store. Then use as you use on the component side.

    LoginStore.login(this.props.navigation)
    

    in the LoginStore

    @action login = (navigation) => { navigation.navigate('Page');}
    

提交回复
热议问题