2019-04-29 使用了react-navigatio

2019-04-29  本文已影响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'

);

上一篇 下一篇

猜你喜欢

热点阅读