Use full available screen
parent
e4ee6e5bb6
commit
e8eb3e131c
|
@ -337,7 +337,7 @@ export const MobileShell: React.FC = observer(() => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={styles.outerContainer}>
|
<View style={styles.outerContainer}>
|
||||||
<SafeAreaView style={styles.innerContainer}>
|
<View style={[styles.innerContainer, {paddingTop: safeAreaInsets.top}]}>
|
||||||
<HorzSwipe
|
<HorzSwipe
|
||||||
distThresholdDivisor={1.5}
|
distThresholdDivisor={1.5}
|
||||||
useNativeDriver
|
useNativeDriver
|
||||||
|
@ -403,7 +403,7 @@ export const MobileShell: React.FC = observer(() => {
|
||||||
/>
|
/>
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
</HorzSwipe>
|
</HorzSwipe>
|
||||||
</SafeAreaView>
|
</View>
|
||||||
{isTabsSelectorActive ? (
|
{isTabsSelectorActive ? (
|
||||||
<View
|
<View
|
||||||
style={[
|
style={[
|
||||||
|
@ -421,7 +421,7 @@ export const MobileShell: React.FC = observer(() => {
|
||||||
<Animated.View
|
<Animated.View
|
||||||
style={[
|
style={[
|
||||||
styles.bottomBar,
|
styles.bottomBar,
|
||||||
{paddingBottom: clamp(safeAreaInsets.bottom, 15, 40)},
|
{paddingBottom: clamp(safeAreaInsets.bottom, 15, 30)},
|
||||||
footerMinimalShellTransform,
|
footerMinimalShellTransform,
|
||||||
]}>
|
]}>
|
||||||
<Btn
|
<Btn
|
||||||
|
|
Loading…
Reference in New Issue