UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

14 lines 454 B
import React from 'react'; import { View, requireNativeComponent, Platform } from 'react-native'; const NativeSafeAreaSpacerView = requireNativeComponent('SafeAreaSpacerView'); const isIOS = Platform.OS === 'ios'; const SafeAreaSpacerView = ({ style }) => { return ( // @ts-ignore isIOS ? <NativeSafeAreaSpacerView style={style} /> : <View style={style} /> ); }; SafeAreaSpacerView.displayName = 'IGNORE'; export default SafeAreaSpacerView;