aboutsummaryrefslogtreecommitdiff
path: root/src/screens/profile/CaptionScreen.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-07-08 16:01:56 -0400
committerIvan Chen <ivan@tagg.id>2021-07-09 15:56:47 -0400
commitff783d8aebc90802079f843b27f2719173bd6b70 (patch)
treedbad5aef1d667b7070815f56e993ae1a2bb68a0b /src/screens/profile/CaptionScreen.tsx
parentf9b9a3297dd8d935d0ed5f176451075e192aee49 (diff)
Add post button
Diffstat (limited to 'src/screens/profile/CaptionScreen.tsx')
-rw-r--r--src/screens/profile/CaptionScreen.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx
index aa866f56..86628d16 100644
--- a/src/screens/profile/CaptionScreen.tsx
+++ b/src/screens/profile/CaptionScreen.tsx
@@ -18,7 +18,11 @@ import {Button} from 'react-native-elements';
import Video from 'react-native-video';
import {useDispatch, useSelector} from 'react-redux';
import FrontArrow from '../../assets/icons/front-arrow.svg';
-import {MentionInputControlled, SearchBackground} from '../../components';
+import {
+ MentionInputControlled,
+ MomentPostButton,
+ SearchBackground,
+} from '../../components';
import {CaptionScreenHeader} from '../../components/';
import TaggLoadingIndicator from '../../components/common/TaggLoadingIndicator';
import {TAGG_LIGHT_BLUE_2} from '../../constants';
@@ -314,6 +318,7 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => {
})
}
/>
+ <MomentPostButton enabled={true} onPress={() => null} />
</View>
</KeyboardAvoidingView>
</TouchableWithoutFeedback>