mobile: fix share extension ui on ios

This commit is contained in:
ammarahm-ed
2023-01-14 18:39:36 +05:00
parent 62d3ead9a8
commit 86fc16a8d0

View File

@@ -632,12 +632,6 @@ const ShareView = ({ quicknote = false }) => {
</View>
<View
style={{
height: Platform.isPad ? 150 : Platform.OS === "ios" ? 110 : 0
}}
/>
</View>
<View
style={{
width: "100%",
borderRadius: 10,
@@ -645,7 +639,6 @@ const ShareView = ({ quicknote = false }) => {
marginTop: 10,
alignSelf: "center",
alignItems: "center",
paddingHorizontal: 12
}}
>
<Button
@@ -696,6 +689,14 @@ const ShareView = ({ quicknote = false }) => {
}}
/>
</View>
<View
style={{
height: Platform.isPad ? 150 : Platform.OS === "ios" ? 110 : 0
}}
/>
</View>
</View>
</SafeAreaView>
);