diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-19 16:42:14 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-20 17:54:34 -0700 |
commit | 8ad9571539f1cf8b468dc830fb3643f567ba11e5 (patch) | |
tree | 334a63821f711c445e6239884eef071be67ff741 | |
parent | f1af15c7f38178fb8a3576c8af92f828dea8a0ed (diff) |
Navigate to Tagg selection screen
-rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 15abe965..fb382e53 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -120,7 +120,9 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { onChange={setCaption} partTypes={mentionPartTypes('blue')} /> - <TouchableOpacity style={{width: SCREEN_WIDTH}}> + <TouchableOpacity + style={{width: SCREEN_WIDTH}} + onPress={() => navigation.navigate('TagSelection')}> <Text style={{color: 'white', fontSize: normalize(14)}}> Tag Friends </Text> |