Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { AppRegistry, Platform } from 'react-native';
import KeyboardManager from 'react-native-keyboard-manager';
import Root from './app/containers/Root';
AppRegistry.registerComponent('rnmobile', () => Root);
if (Platform.OS === 'ios') {
KeyboardManager.setEnableDebugging(__DEV__);
KeyboardManager.setEnable(true);
KeyboardManager.setEnableAutoToolbar(false);
}