Faça um componente reatnativo tomar a altura e a largura da janela atual

import { Dimensions } from 'react-native'; //Import the Dimensions

<View 
style={{width: Dimensions.get('window').width, 
  height: Dimensions.get('window').height }} />

//You can customize this as you want

Anatu Green