diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 6ba1791c..3ee0bd5b 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -93,6 +93,15 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { }, [route.params.selectedCategory]); useEffect(() => { + // if we're editing, hide tab bar + if (moment) { + navigation.dangerouslyGetParent()?.setOptions({ + tabBarVisible: false, + }); + } + }, [route.params.moment]); + + useEffect(() => { let listString = ''; // Append non-truncated usernames together and no more than 21 characters total // e.g. "@ivan.tagg" @@ -271,7 +280,14 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { <Button title="Cancel" buttonStyle={styles.button} - onPress={() => navigation.goBack()} + onPress={() => { + if (moment) { + navigation.dangerouslyGetParent()?.setOptions({ + tabBarVisible: true, + }); + } + navigation.goBack(); + }} /> </View> <CaptionScreenHeader style={styles.header} title={'Moments'} /> |