aboutsummaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
authorAshm Walia <40498934+ashmgarv@users.noreply.github.com>2020-12-14 16:02:09 -0800
committerGitHub <noreply@github.com>2020-12-14 19:02:09 -0500
commit3b7bf256d83e1898642c2aab9072ffbeec8cc032 (patch)
tree9b48ff57f61414321e2c78124bd6a63101a04602 /src/routes
parent410d9224f4e198ab0b8ecae35fa05c240a2439bf (diff)
[TMA - 426] Fix recent search + Add refresh control (#138)
* Got rid of small lint errors before start * Final push * Final * disable scroll first try / logic * small change * Try to make the cover photo consistent with different screen sizes * Final change * added RefreshControl * removed scale effect * Fix misorientation of cover * remove more scale stuff * fix userIDs for different views * Mend refresh control * white bg Co-authored-by: hsalhab <husam_salhab@brown.edu>
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/profile/Profile.tsx15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/routes/profile/Profile.tsx b/src/routes/profile/Profile.tsx
index f47d25c4..3cb928e5 100644
--- a/src/routes/profile/Profile.tsx
+++ b/src/routes/profile/Profile.tsx
@@ -41,7 +41,7 @@ const Profile: React.FC<ProfileStackProps> = ({route}) => {
<ProfileStack.Navigator
screenOptions={{
headerShown: false,
- cardStyle: {backgroundColor: 'transparent'},
+ cardStyle: {backgroundColor: 'white'},
cardOverlayEnabled: true,
cardStyleInterpolator: ({current: {progress}}) => ({
cardStyle: {
@@ -98,18 +98,27 @@ const Profile: React.FC<ProfileStackProps> = ({route}) => {
<ProfileStack.Screen
name="IndividualMoment"
component={IndividualMoment}
- options={{headerShown: false}}
+ options={{
+ headerShown: false,
+ cardStyle: {backgroundColor: 'transparent'},
+ }}
initialParams={{screenType}}
/>
<ProfileStack.Screen
name="MomentCommentsScreen"
component={MomentCommentsScreen}
- options={{headerShown: false}}
+ options={{
+ headerShown: false,
+ cardStyle: {backgroundColor: 'transparent'},
+ }}
initialParams={{screenType}}
/>
<ProfileStack.Screen
name="FollowersListScreen"
component={FollowersListScreen}
+ options={{
+ cardStyle: {backgroundColor: 'transparent'},
+ }}
initialParams={{screenType}}
/>
<ProfileStack.Screen