* Started with bottom tabs layout * code clean up * Added animation to bottom tab bar * returns null if not focused * code clean up * Updating layout * Updated modal screen * Updated animation * Updated animation * Fix SafeArea on Home * A few clean ups * code clean up * Fix issue with navigation on Android * Use React Navigation in combination of RNN & create bottom tab bar * Set tab bar line separator height to 0.5 * Fix snapshot tests * Add home tab mention badge * Apply new themes * Home Tab badge * Remove unused constants Co-authored-by: Avinash Lingaloo <> Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
15 lines
427 B
TypeScript
15 lines
427 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import keyMirror from '@utils/key_mirror';
|
|
|
|
const Navigation = keyMirror({
|
|
NAVIGATION_CLOSE_MODAL: null,
|
|
NAVIGATION_NO_TEAMS: null,
|
|
NAVIGATION_ERROR_TEAMS: null,
|
|
NAVIGATION_SHOW_OVERLAY: null,
|
|
NAVIGATION_DISMISS_AND_POP_TO_ROOT: null,
|
|
BLUR_POST_DRAFT: null,
|
|
});
|
|
|
|
export default Navigation;
|