import { FlatList, ScrollView, Image, StyleSheet, Text, View, } from 'react-native'; import React, {useState} from 'react'; import images from '../assets/images/images'; import fonts from '../theme/fonts'; import colors from '../theme/colors'; import {ToggleButton} from 'react-native-paper'; import HorizontalNewsCardVariant from '../components/organisms/Cards/HorizontalNewsCardVariant'; import NewscoutTitleHeader from '../components/organisms/Headers/NewscoutTitleHeader'; import SettingsButton from '../components/organisms/Buttons/SettingsButton'; import EditButton from '../components/organisms/Buttons/EditButton'; const PROFILE_SIZE = 128; const profileTabs = ['Recently Read', 'Others']; const ProfilePage = props => { const {navigation, route, name, profileQuote, metrics} = props; const metricsCount = { bookmarks: 158, followers: 158, following: 158, }; const [categoryValue, setCategoryValue] = useState( profileTabs[0].toLowerCase(), ); return ( navigation.goBack()}> navigation.navigate('Settings')} /> navigation.navigate('Profile', {screen: 'EditProfile'}) } /> Semina Gurung The reason behind their disappointment is that iPhone users have been.. 158 Bookmarks 158 Followers 158 Following {/* */} setCategoryValue(value)}> {profileTabs.map(tab => { let valueId = tab.toLowerCase(); return ( ( {tab} )} style={[styles.underlinePill]} value={valueId} /> ); })} {/* */} ( )} // ListFooterComponent={() => } ListHeaderComponent={() => ( )} data={[{}, {}, {}]} renderItem={item => } keyExtractor={item => item.index} /> ); }; export default ProfilePage; const styles = StyleSheet.create({ profileContainer: { backgroundColor: colors.white, }, profileImageContainer: { paddingVertical: 16, alignItems: 'center', }, profileImage: { borderRadius: PROFILE_SIZE, height: PROFILE_SIZE, width: PROFILE_SIZE, }, metricsCountContainer: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-evenly', paddingVertical: 20, paddingHorizontal: 16, }, metricsCard: {}, metricsTitle: { color: colors.primaryColor, fontFamily: fonts.type.medium, fontSize: 16, }, metricsCount: { color: colors.black, fontFamily: fonts.type.semibold, fontSize: 16, textAlign: 'center', }, verticalLine: { height: '100%', width: 2, backgroundColor: colors.grayShade_400, }, underlinePillContainer: { paddingVertical: fonts.getSize(8), flexDirection: 'row', alignItems: 'space-between', justifyContent: 'space-around', paddingHorizontal: 16, }, selectedPillText: { fontFamily: fonts.type.semibold, fontSize: fonts.getSize(12), color: colors.black, borderBottomWidth: fonts.getSize(4), borderBottomColor: colors.primaryColor, borderRadius: 0, }, pillText: { fontFamily: fonts.type.semibold, fontSize: fonts.getSize(12), color: colors.gray, }, underlinePill: { width: 'auto', }, profileCardContainer: { paddingHorizontal: 16, }, });