2019-04-29 使用了react-navigation-redux-helpers3.0的请注意!!!

24212eb835 - Keep react navigation new and react-navigation-redux-helpe : 此次更新适配了react-navigation-redux-helpers3.0;

react-navigation-redux-helpers3.0的两个变更:

1.reduxifyNavigator被改名为createReduxContainer,所以:

import {createReactNavigationReduxMiddleware, reduxifyNavigator} from 'react-navigation-redux-helpers';

//改为

import {createReactNavigationReduxMiddleware, createReduxContainer} from 'react-navigation-redux-helpers';

...

const AppWithNavigationState = reduxifyNavigator(RootNavigator, 'root');

//改为

const AppWithNavigationState = createReduxContainer(RootNavigator, 'root');

2.createReactNavigationReduxMiddleware的参数顺序发生了变化:

export const middleware = createReactNavigationReduxMiddleware(

    'root',

    state => state.nav

);

//改为

export const middleware = createReactNavigationReduxMiddleware(

    state => state.nav,

    'root'

);

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容