earlier it was below the notch but now as I have added support for iphone X but now only half notification is covered
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