diff options
Diffstat (limited to 'src/screens')
| -rw-r--r-- | src/screens/index.ts | 1 | ||||
| -rw-r--r-- | src/screens/moments/TagSelection.tsx | 7 | ||||
| -rw-r--r-- | src/screens/moments/index.ts | 1 | ||||
| -rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 9 |
4 files changed, 17 insertions, 1 deletions
diff --git a/src/screens/index.ts b/src/screens/index.ts index 44ae4b52..0c7d911f 100644 --- a/src/screens/index.ts +++ b/src/screens/index.ts @@ -6,3 +6,4 @@ export * from './suggestedPeople'; export * from './suggestedPeopleOnboarding'; export * from './badge'; export * from './chat'; +export * from './moments'; diff --git a/src/screens/moments/TagSelection.tsx b/src/screens/moments/TagSelection.tsx new file mode 100644 index 00000000..fe88bc90 --- /dev/null +++ b/src/screens/moments/TagSelection.tsx @@ -0,0 +1,7 @@ +import React from 'react'; + +const TagSelection: React.FC = () => { + return <></>; +}; + +export default TagSelection; diff --git a/src/screens/moments/index.ts b/src/screens/moments/index.ts new file mode 100644 index 00000000..f2f4cbc5 --- /dev/null +++ b/src/screens/moments/index.ts @@ -0,0 +1 @@ +export {default as TagSelection} from './TagSelection'; 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> |
