File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ const StyleSheet = require('../StyleSheet/StyleSheet');
1919const Text = require ( '../Text/Text' ) ;
2020const TouchableHighlight = require ( '../Components/Touchable/TouchableHighlight' ) ;
2121const View = require ( '../Components/View/View' ) ;
22+ import SafeAreaView from '../Components/SafeAreaView/SafeAreaView' ;
2223
2324import type { ViewStyleProp } from '../StyleSheet/StyleSheet' ;
2425
@@ -84,7 +85,7 @@ class InspectorPanel extends React.Component<Props> {
8485 contents = < View style = { styles . waiting } > { this . renderWaiting ( ) } </ View > ;
8586 }
8687 return (
87- < View style = { styles . container } >
88+ < SafeAreaView style = { styles . container } >
8889 { ! this . props . devtoolsIsOpen && contents }
8990 < View style = { styles . buttonRow } >
9091 < InspectorPanelButton
@@ -108,7 +109,7 @@ class InspectorPanel extends React.Component<Props> {
108109 onClick = { this . props . setTouchTargeting }
109110 />
110111 </ View >
111- </ View >
112+ </ SafeAreaView >
112113 ) ;
113114 }
114115}
You can’t perform that action at this time.
0 commit comments