diff options
Diffstat (limited to 'src/components/profile/ProfileHeader.tsx')
-rw-r--r-- | src/components/profile/ProfileHeader.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/profile/ProfileHeader.tsx b/src/components/profile/ProfileHeader.tsx index 62c103fd..25789525 100644 --- a/src/components/profile/ProfileHeader.tsx +++ b/src/components/profile/ProfileHeader.tsx @@ -27,8 +27,14 @@ const ProfileHeader: React.FC<ProfileHeaderProps> = ({isProfileView}) => { style={styles.follows} mode="followers" count={318412} + isProfileView={isProfileView} + /> + <FollowCount + style={styles.follows} + mode="following" + count={1036} + isProfileView={isProfileView} /> - <FollowCount style={styles.follows} mode="following" count={1036} /> </View> </View> </View> @@ -41,6 +47,7 @@ const styles = StyleSheet.create({ top: SCREEN_HEIGHT / 2.4, paddingHorizontal: SCREEN_WIDTH / 20, marginBottom: SCREEN_HEIGHT / 10, + position: 'absolute', }, row: { flexDirection: 'row', |