diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-06-23 17:49:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-23 17:49:46 -0400 |
| commit | 981051448fee6197544383e535fea7a72827d41d (patch) | |
| tree | 10015427c4c62a1dbf73cad4dfd0ee2dd43b110c /src/routes | |
| parent | 8c2b915678b852f597c38ab00d18c22bf62d2051 (diff) | |
| parent | f9a3acb40dd224591f8e7039e84e428d4363a841 (diff) | |
Merge pull request #474 from IvanIFChen/tma944-video-moment-userflow
[TMA-944] Share Video Moment User Flow
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/main/MainStackNavigator.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/routes/main/MainStackNavigator.tsx b/src/routes/main/MainStackNavigator.tsx index 8fce5e2f..522a18dd 100644 --- a/src/routes/main/MainStackNavigator.tsx +++ b/src/routes/main/MainStackNavigator.tsx @@ -2,7 +2,6 @@ * Note the name userXId here, it refers to the id of the user being visited */ import {createStackNavigator} from '@react-navigation/stack'; -import {Image} from 'react-native-image-crop-picker'; import { CommentBaseType, MomentTagType, @@ -38,13 +37,17 @@ export type MainStackParams = { }; CaptionScreen: { title?: string; - image?: Image; + media?: {filename: string; uri: string; isVideo: boolean}; screenType: ScreenType; selectedTags?: MomentTagType[]; moment?: MomentType; }; TagFriendsScreen: { - imagePath: string; + media: { + filename: string; + uri: string; + isVideo: boolean; + }; selectedTags?: MomentTagType[]; }; TagSelectionScreen: { |
