Вы можете получить экран, по которому пользователи звонят, ширину и высоту из компонента Dimensions.
import { Dimensions } from 'react-native'
const { width, height } = Dimensions.get('window'); // if you use the width you can get the screen width by pixels. And also height is the height pixels of the phone.
const screenWidthSomePart = width * 0,6 // Иногда вы можете получить процентное соотношение экрана, так чтоВы можете использовать это.screen% 60
Если вы хотите увидеть сейф для Iphone X. Вы можете использовать SafeAreaView Componenet
import { SafeAreaView } from 'react-native'
return(
<SafeAreaView>
..... // your screen componenet
</SafeAreaView>
);