forked from Ivasoft/mattermost-mobile
* Add react-navigator dependency * Add react-native-navigation dependency * react-native-navigation, ios and android config * update react-native-navigation * New navigation and code cleanup * Set ScreenBackgroundColor * Fix channel drawer event issue * Applied RNPN non-working popInitial notification * Android navbar and back button * packages and notices * MM-redux update * Fix draft on team switch * Remove custom NavBar
15 lines
387 B
JavaScript
15 lines
387 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {ViewTypes} from 'app/constants';
|
|
|
|
export function initialize() {
|
|
return async (dispatch, getState) => {
|
|
setTimeout(() => {
|
|
dispatch({
|
|
type: ViewTypes.APPLICATION_INITIALIZED
|
|
}, getState);
|
|
}, 400);
|
|
};
|
|
}
|