index.js 444 B

123456789101112131415
  1. /**
  2. * @format
  3. */
  4. import 'rn-overlay';
  5. import {AppRegistry} from 'react-native';
  6. import App from './App';
  7. import {name as appName} from './app.json';
  8. console.ignoredYellowBox = [
  9. 'Warning: BackAndroid is deprecated. Please use BackHandler instead.',
  10. 'source.uri should not be an empty string',
  11. 'Invalid props.style key',
  12. ];
  13. console.disableYellowBox = true; // 关闭全部黄色警告
  14. AppRegistry.registerComponent(appName, () => App);