UNPKG

react-native-ui-lib

Version:

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

11 lines 390 B
import React from 'react'; import { View, Platform } from 'react-native'; import SafeAreaSpacerViewIos from "./SafeAreaSpacerView"; const isIOS = Platform.OS === 'ios'; const SafeAreaSpacerView = ({ style }) => { return isIOS ? <SafeAreaSpacerViewIos style={style} /> : <View style={style} />; }; SafeAreaSpacerView.displayName = 'SafeAreaSpacerView'; export default SafeAreaSpacerView;