Remove top bar in the shell

zio/stable
Paul Frazee 2022-09-29 09:05:40 -05:00
parent 0312a8132c
commit a9f9235976
2 changed files with 5 additions and 5 deletions

View File

@ -37,8 +37,8 @@ const styles = StyleSheet.create({
outer: { outer: {
position: 'absolute', position: 'absolute',
zIndex: zIndex.FAB, zIndex: zIndex.FAB,
right: 20, right: 22,
bottom: 10, bottom: 14,
width: 60, width: 60,
height: 60, height: 60,
borderRadius: 30, borderRadius: 30,

View File

@ -183,7 +183,7 @@ export const MobileShell: React.FC = observer(() => {
return ( return (
<View style={styles.outerContainer}> <View style={styles.outerContainer}>
<View style={styles.topBar}> {/* <View style={styles.topBar}>
<TouchableOpacity onPress={onPressAvi}> <TouchableOpacity onPress={onPressAvi}>
<Image style={styles.avi} source={DEF_AVATER} /> <Image style={styles.avi} source={DEF_AVATER} />
</TouchableOpacity> </TouchableOpacity>
@ -195,7 +195,7 @@ export const MobileShell: React.FC = observer(() => {
<TouchableOpacity style={styles.topBarBtn} onPress={onPressEllipsis}> <TouchableOpacity style={styles.topBarBtn} onPress={onPressEllipsis}>
<FontAwesomeIcon icon="ellipsis" /> <FontAwesomeIcon icon="ellipsis" />
</TouchableOpacity> </TouchableOpacity>
</View> </View> */}
<SafeAreaView style={styles.innerContainer}> <SafeAreaView style={styles.innerContainer}>
<GestureDetector gesture={swipeGesture}> <GestureDetector gesture={swipeGesture}>
<ScreenContainer style={styles.screenContainer}> <ScreenContainer style={styles.screenContainer}>
@ -241,7 +241,7 @@ export const MobileShell: React.FC = observer(() => {
/> />
<Btn icon="house" onPress={onPressHome} /> <Btn icon="house" onPress={onPressHome} />
<Btn icon={['far', 'bell']} onPress={onPressNotifications} /> <Btn icon={['far', 'bell']} onPress={onPressNotifications} />
<Btn icon={['far', 'clone']} onPress={onPressTabs} /> <Btn icon="bars" onPress={onPressTabs} />
</View> </View>
<Modal /> <Modal />
{isLocationMenuActive && ( {isLocationMenuActive && (