[FIX] Paste (#1350)
This commit is contained in:
parent
ae949e6d68
commit
682ac6b4a5
|
@ -2,7 +2,7 @@ module.exports = {
|
|||
"settings": {
|
||||
"import/resolver": {
|
||||
"node": {
|
||||
"extensions": [".js", ".ios.js", ".android.js"]
|
||||
"extensions": [".js", ".ios.js", ".android.js", ".native.js"]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -3,7 +3,6 @@ import { createAppContainer, createSwitchNavigator } from 'react-navigation';
|
|||
import { createStackNavigator } from 'react-navigation-stack';
|
||||
import { createDrawerNavigator } from 'react-navigation-drawer';
|
||||
import { Provider } from 'react-redux';
|
||||
import { useScreens } from 'react-native-screens'; // eslint-disable-line import/no-unresolved
|
||||
import { Linking } from 'react-native';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
|
@ -19,8 +18,12 @@ import { defaultHeader, onNavigationStateChange } from './utils/navigation';
|
|||
import { loggerConfig, analytics } from './utils/log';
|
||||
import Toast from './containers/Toast';
|
||||
import RocketChat from './lib/rocketchat';
|
||||
import { isIOS } from './utils/deviceInfo';
|
||||
|
||||
useScreens();
|
||||
if (isIOS) {
|
||||
const RNScreens = require('react-native-screens');
|
||||
RNScreens.useScreens();
|
||||
}
|
||||
|
||||
const parseDeepLinking = (url) => {
|
||||
if (url) {
|
||||
|
|
Loading…
Reference in New Issue