Как найти ширину Overconatiner в Native React

<View onLayout={(event) => {
  var {x, y, width, height} = event.nativeEvent.layout;
}} />
Ill Iguana