暂无描述

InitialWindowSafeAreaInsets.ts 434B

12345678910111213
  1. import { UIManager } from 'react-native';
  2. import { EdgeInsets } from './SafeArea.types';
  3. const RNCSafeAreaViewConfig = UIManager.getViewManagerConfig(
  4. 'RNCSafeAreaView',
  5. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  6. ) as any;
  7. export default (RNCSafeAreaViewConfig != null &&
  8. RNCSafeAreaViewConfig.Constants != null
  9. ? RNCSafeAreaViewConfig.Constants.initialWindowSafeAreaInsets
  10. : null) as EdgeInsets | null;