File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/* @flow strict-local */
2
2
import React , { PureComponent } from 'react' ;
3
- import { View , StyleSheet } from 'react-native' ;
3
+ import { SafeAreaView , StyleSheet } from 'react-native' ;
4
4
import type { NavigationScreenProp } from 'react-navigation' ;
5
5
import { ActionSheetProvider } from '@expo/react-native-action-sheet' ;
6
6
@@ -25,12 +25,12 @@ export default class LightboxScreen extends PureComponent<Props> {
25
25
render ( ) {
26
26
const { src, message } = this . props . navigation . state . params ;
27
27
return (
28
- < View style = { styles . screen } >
28
+ < SafeAreaView style = { styles . screen } >
29
29
< ZulipStatusBar hidden backgroundColor = "black" />
30
30
< ActionSheetProvider >
31
31
< Lightbox src = { src } message = { message } />
32
32
</ ActionSheetProvider >
33
- </ View >
33
+ </ SafeAreaView >
34
34
) ;
35
35
}
36
36
}
You can’t perform that action at this time.
0 commit comments