Skip to main content

Member Item

Overview

LMMemberListItem is used to display user information associated for a like list. It showcases the user's profile image and name, along with an optional custom title.

GitHub File:

LMFeedNotificationView

Customisations

These customisations can be applied through setPostLikesListStyles on the STYLES class

PropertyTypeDescription
screenHeaderLMHeaderPropsProps to customize the screen header.
likeListItemStyleViewStyleStyle for each item in the like list.
userNameTextStyleTextStyleStyle for the user name text.
userDesignationTextStyleTextStyleStyle for the user designation text.

Usage Example

import { STYLES } from "@likeminds.community/feed-rn-core"

STYLES.setPostLikesListStyles({
screenHeader: {
showBackArrow: true,
subHeadingTextStyle: {
fontSize: 20
},
},
likeListItemStyle: {
margin: 20
},
userDesignationTextStyle: {
fontWeight: 'bold'
}
})