Factor out the bottom bar and layer it under the side menu (close #243) (#268)

This commit is contained in:
Paul Frazee
2023-03-06 11:59:06 -06:00
committed by GitHub
parent c2a931f49c
commit f84a379376
3 changed files with 297 additions and 289 deletions
+1 -5
View File
@@ -119,7 +119,6 @@ export const Menu = observer(({onClose}: {onClose: () => void}) => {
style={[
styles.view,
theme.colorScheme === 'light' ? pal.view : styles.viewDarkMode,
store.shell.minimalShellMode && styles.viewMinimalShell,
]}>
<TouchableOpacity
testID="profileCardButton"
@@ -272,15 +271,12 @@ const styles = StyleSheet.create({
view: {
flex: 1,
paddingTop: 10,
paddingBottom: 90,
paddingBottom: 50,
paddingLeft: 30,
},
viewDarkMode: {
backgroundColor: colors.gray8,
},
viewMinimalShell: {
paddingBottom: 50,
},
profileCardDisplayName: {
marginTop: 20,