Use full available screen

zio/stable
Paul Frazee 2022-12-13 14:58:25 -06:00
parent e4ee6e5bb6
commit e8eb3e131c
1 changed files with 3 additions and 3 deletions

View File

@ -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