diff options
author | Ivan Chen <ivan@tagg.id> | 2021-06-25 20:58:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 20:58:56 -0400 |
commit | 5480267b285812c094246bb941c6deaf83f53ff5 (patch) | |
tree | 17f2e23576c000bcc90d840d14b8abc3bb9bec24 /src/routes/main/MainStackScreen.tsx | |
parent | 981051448fee6197544383e535fea7a72827d41d (diff) | |
parent | dcf45600b6e2be7820ed2d8c0f44603624f1e719 (diff) |
Merge pull request #475 from IvanIFChen/tma948-video-playback
[TMA-948] Viewing Videos
Diffstat (limited to 'src/routes/main/MainStackScreen.tsx')
-rw-r--r-- | src/routes/main/MainStackScreen.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/routes/main/MainStackScreen.tsx b/src/routes/main/MainStackScreen.tsx index 3be2ff28..9e3747f9 100644 --- a/src/routes/main/MainStackScreen.tsx +++ b/src/routes/main/MainStackScreen.tsx @@ -39,6 +39,7 @@ import MutualBadgeHolders from '../../screens/suggestedPeople/MutualBadgeHolders import {ScreenType} from '../../types'; import {AvatarHeaderHeight, ChatHeaderHeight, SCREEN_WIDTH} from '../../utils'; import {MainStack, MainStackParams} from './MainStackNavigator'; +import {ZoomInCropper} from '../../components/comments/ZoomInCropper'; /** * Profile : To display the logged in user's profile when the userXId passed in to it is (undefined | null | empty string) else displays profile of the user being visited. @@ -209,6 +210,7 @@ const MainStackScreen: React.FC<MainStackProps> = ({route}) => { options={{ ...modalStyle, gestureEnabled: false, + ...headerBarOptions('white', ''), }} /> <MainStack.Screen @@ -325,6 +327,13 @@ const MainStackScreen: React.FC<MainStackProps> = ({route}) => { gestureEnabled: false, }} /> + <MainStack.Screen + name="ZoomInCropper" + component={ZoomInCropper} + options={{ + gestureEnabled: false, + }} + /> </MainStack.Navigator> ); }; |