aboutsummaryrefslogtreecommitdiff
path: root/src/screens
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2020-10-08 16:26:16 -0400
committerGitHub <noreply@github.com>2020-10-08 16:26:16 -0400
commit6e3fe33e5e1d3818ef8bb942c1544581ab8c0688 (patch)
tree11d86adf5ef56efadf6a1edafdc33fdba20fab80 /src/screens
parentcf0f22d4e86e44efee6ae1d4f23e0642df117b79 (diff)
[TMA-229] Moments Barebones (#50)
* added react native svg transformation to support svg icons * finished moments barebones view * resolved a warning from the svg file
Diffstat (limited to 'src/screens')
-rw-r--r--src/screens/profile/ProfileScreen.tsx4
-rw-r--r--src/screens/profile/SocialMediaTaggs.tsx2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/screens/profile/ProfileScreen.tsx b/src/screens/profile/ProfileScreen.tsx
index ea557063..cc388ffd 100644
--- a/src/screens/profile/ProfileScreen.tsx
+++ b/src/screens/profile/ProfileScreen.tsx
@@ -1,8 +1,8 @@
import React from 'react';
-import {Cover, Content, TabsGradient} from '../../components';
+import {StatusBar} from 'react-native';
import Animated from 'react-native-reanimated';
+import {Content, Cover, TabsGradient} from '../../components';
import {AuthContext} from '../../routes/authentication';
-import {StatusBar} from 'react-native';
/**
* Profile Screen for a user's logged in profile
diff --git a/src/screens/profile/SocialMediaTaggs.tsx b/src/screens/profile/SocialMediaTaggs.tsx
index 8bc5e4d8..9e4f2aea 100644
--- a/src/screens/profile/SocialMediaTaggs.tsx
+++ b/src/screens/profile/SocialMediaTaggs.tsx
@@ -2,7 +2,7 @@ import {RouteProp} from '@react-navigation/native';
import React from 'react';
import {ScrollView, StatusBar, StyleSheet, View} from 'react-native';
import LinearGradient from 'react-native-linear-gradient';
-import { AVATAR_GRADIENT } from '../../constants';
+import {AVATAR_GRADIENT} from '../../constants';
import {SocialMediaInfo, TabsGradient, TaggsFeed} from '../../components';
import {AuthContext, ProfileStackParams} from '../../routes';
import {headerBarHeightWithImage, SCREEN_HEIGHT} from '../../utils';