@plusscommunities/pluss-core-app 8.0.28-beta.1 → 8.0.28-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@ import AutoHeightImage from "react-native-auto-height-image";
|
|
|
19
19
|
import {
|
|
20
20
|
withSafeAreaInsets,
|
|
21
21
|
SafeAreaView,
|
|
22
|
+
SafeAreaProvider,
|
|
22
23
|
} from "react-native-safe-area-context";
|
|
23
24
|
import ImageCropOverlay from "./ImageCropOverlay";
|
|
24
25
|
|
|
@@ -292,8 +293,9 @@ class ExpoImageManipulator extends Component {
|
|
|
292
293
|
}}
|
|
293
294
|
>
|
|
294
295
|
{uri !== undefined ? (
|
|
295
|
-
<
|
|
296
|
-
<
|
|
296
|
+
<SafeAreaProvider>
|
|
297
|
+
<View style={styles.container}>
|
|
298
|
+
<SafeAreaView style={[{ width }, styles.headerContainer]}>
|
|
297
299
|
{!cropMode ? (
|
|
298
300
|
<View
|
|
299
301
|
style={[
|
|
@@ -384,7 +386,8 @@ class ExpoImageManipulator extends Component {
|
|
|
384
386
|
)}
|
|
385
387
|
</ScrollView>
|
|
386
388
|
</SafeAreaView>
|
|
387
|
-
|
|
389
|
+
</View>
|
|
390
|
+
</SafeAreaProvider>
|
|
388
391
|
) : (
|
|
389
392
|
<View style={styles.container}>
|
|
390
393
|
<Text style={styles.prepareMessageText}>Preparing...</Text>
|