Faire un composant réactable prenez la hauteur et la largeur de la fenêtre actuelle

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