From 79edd43bd998e5f9f425b1c8150cd8f3592e47d6 Mon Sep 17 00:00:00 2001 From: Shravya Ramesh Date: Thu, 25 Feb 2021 14:42:31 -0800 Subject: try blocks, else --- src/screens/profile/CaptionScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/screens/profile') diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 91aaa617..01e859ba 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -13,7 +13,7 @@ import { } from 'react-native'; import {Button} from 'react-native-elements'; import {useDispatch, useSelector} from 'react-redux'; -import {MainStackParams} from 'src/routes'; +import {MainStackParams} from '../../routes'; import {SearchBackground, TaggBigInput} from '../../components'; import {CaptionScreenHeader} from '../../components/'; import TaggLoadingIndicator from '../../components/common/TaggLoadingIndicator'; -- cgit v1.2.3-70-g09d2 From fa4e2917b35478c340ac849fefbf1575d73cf969 Mon Sep 17 00:00:00 2001 From: ankit-thanekar007 Date: Fri, 26 Feb 2021 17:01:01 -0800 Subject: Statusbar issue --- src/screens/main/NotificationsScreen.tsx | 2 +- src/screens/profile/ProfileScreen.tsx | 2 +- src/screens/search/SearchScreen.tsx | 2 +- src/screens/suggestedPeople/SuggestedPeopleScreen.tsx | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src/screens/profile') diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx index 511680ea..aa53c4a9 100644 --- a/src/screens/main/NotificationsScreen.tsx +++ b/src/screens/main/NotificationsScreen.tsx @@ -153,7 +153,7 @@ const NotificationsScreen: React.FC = () => { return ( - + Notifications diff --git a/src/screens/profile/ProfileScreen.tsx b/src/screens/profile/ProfileScreen.tsx index 9cdba555..5edc6277 100644 --- a/src/screens/profile/ProfileScreen.tsx +++ b/src/screens/profile/ProfileScreen.tsx @@ -46,7 +46,7 @@ const ProfileScreen: React.FC = ({route}) => { return ( <> - + diff --git a/src/screens/search/SearchScreen.tsx b/src/screens/search/SearchScreen.tsx index f0be7c9e..84efa931 100644 --- a/src/screens/search/SearchScreen.tsx +++ b/src/screens/search/SearchScreen.tsx @@ -139,7 +139,7 @@ const SearchScreen: React.FC = () => { return ( - + { }; navigateToAnimatedTutorial(); StatusBar.setHidden(stausBarRef.current); + StatusBar.setBarStyle('light-content'); return () => { StatusBar.setHidden(false); + StatusBar.setBarStyle('dark-content'); }; }, [navigation, suggested_people_linked]), ); -- cgit v1.2.3-70-g09d2