Update on feed button, new groups UI search and round borders

This commit is contained in:
Adolfo Reyna
2023-01-23 22:25:27 -05:00
parent acab0eef66
commit 47f3ad5919
6 changed files with 116 additions and 25 deletions

View File

@@ -60,11 +60,11 @@ let ProfileCard = ({ profileid, hideIcon, profileObj }) => {
return (
<Card style={styles.content}>
<Card.Content>
<Card.Content style={{padding:0}}>
<IconButton icon={icon} style={{
position: "absolute",
right: 5,
top: 5,
right: 0,
top: 0,
}} />
<List.Item
title={profile.profile?.firstName + " " + profile.profile?.lastName}
@@ -74,6 +74,7 @@ let ProfileCard = ({ profileid, hideIcon, profileObj }) => {
descriptionStyle={{}}
onPress={onPress}
descriptionNumberOfLines={4}
style={{padding:0}}
/>
</Card.Content>
</Card>
@@ -86,6 +87,8 @@ export default React.memo(ProfileCard);
const styles = StyleSheet.create({
content: {
margin: 4,
padding: 0,
borderRadius: 10,
},
centerItems: {
justifyContent: 'center',