Search code examples
react-native-iosiphone-x

Only half of the notification bar is covered in iphone X in react- native


enter image description here

earlier it was below the notch but now as I have added support for iphone X but now only half notification is covered


Solution

  • You should wrap the View in a SafeAreaView component provided by react-native.

    <SafeAreaView style={{flex: 1}}>
      <View>
        .
        .
        .
      </View>
    </SafeAreaView>
    

    SafeAreaView handles device boundaries and notch introduced from iPhone X. Docs