Remove top bar in the shell
parent
0312a8132c
commit
a9f9235976
|
@ -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,
|
||||||
|
|
|
@ -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 && (
|
||||||
|
|
Loading…
Reference in New Issue