diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-13 14:58:25 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-13 14:58:25 -0600 |
commit | e8eb3e131cd0ca91c2307d482ea3e839adc1917f (patch) | |
tree | 56167ee9552312a92dd4504c1694afb61a032f77 /src | |
parent | e4ee6e5bb6221711ca5e875bc4069a8024f09a32 (diff) | |
download | voidsky-e8eb3e131cd0ca91c2307d482ea3e839adc1917f.tar.zst |
Use full available screen
Diffstat (limited to 'src')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index bc1343aa3..0e42cc134 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -337,7 +337,7 @@ export const MobileShell: React.FC = observer(() => { return ( <View style={styles.outerContainer}> - <SafeAreaView style={styles.innerContainer}> + <View style={[styles.innerContainer, {paddingTop: safeAreaInsets.top}]}> <HorzSwipe distThresholdDivisor={1.5} useNativeDriver @@ -403,7 +403,7 @@ export const MobileShell: React.FC = observer(() => { /> </Animated.View> </HorzSwipe> - </SafeAreaView> + </View> {isTabsSelectorActive ? ( <View style={[ @@ -421,7 +421,7 @@ export const MobileShell: React.FC = observer(() => { <Animated.View style={[ styles.bottomBar, - {paddingBottom: clamp(safeAreaInsets.bottom, 15, 40)}, + {paddingBottom: clamp(safeAreaInsets.bottom, 15, 30)}, footerMinimalShellTransform, ]}> <Btn |