aboutsummaryrefslogtreecommitdiff
path: root/src/screens/profile/CaptionScreen.tsx
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-05-19 12:01:55 -0700
committerShravya Ramesh <shravs1208@gmail.com>2021-05-20 17:54:33 -0700
commitf0b3aa2590303e3441b6ddc4cd0fcdfd0f59bbd4 (patch)
tree29a06205782652d910b20cbd8286298a878a8b00 /src/screens/profile/CaptionScreen.tsx
parent8641391ac28e5a1b2ca513755a44b71ef3ee64e9 (diff)
Add new folder, Add new screen, Add temp button
Diffstat (limited to 'src/screens/profile/CaptionScreen.tsx')
-rw-r--r--src/screens/profile/CaptionScreen.tsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx
index a41abba6..15abe965 100644
--- a/src/screens/profile/CaptionScreen.tsx
+++ b/src/screens/profile/CaptionScreen.tsx
@@ -10,6 +10,8 @@ import {
StyleSheet,
TouchableWithoutFeedback,
View,
+ TouchableOpacity,
+ Text,
} from 'react-native';
import {MentionInput} from 'react-native-controlled-mentions';
import {Button} from 'react-native-elements';
@@ -26,7 +28,7 @@ import {
updateProfileCompletionStage,
} from '../../store/actions';
import {RootState} from '../../store/rootReducer';
-import {SCREEN_WIDTH, StatusBarHeight} from '../../utils';
+import {normalize, SCREEN_WIDTH, StatusBarHeight} from '../../utils';
import {mentionPartTypes} from '../../utils/comments';
/**
@@ -118,6 +120,11 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => {
onChange={setCaption}
partTypes={mentionPartTypes('blue')}
/>
+ <TouchableOpacity style={{width: SCREEN_WIDTH}}>
+ <Text style={{color: 'white', fontSize: normalize(14)}}>
+ Tag Friends
+ </Text>
+ </TouchableOpacity>
</View>
</KeyboardAvoidingView>
</TouchableWithoutFeedback>