Components | Description |
---|---|
Users | The Users component is designed to display a list of Users . |
Messages | The Messages component is designed to manage the messaging interaction for either individual User or Group conversations. |
onItemPress
of the Users Component, UsersWithMessages achieves navigation from Users to Messages component.Friends
Component
. By using event you can extend existing functionality. Being global events, they can be applied in Multiple Locations and are capable of being Added or Removed.
The UsersWithMessages component and its components do not directly generate any events.
User
.
Messages
subcomponent to navigate from Messages to DetailsAppBarOptions
, the default behavior of UsersWithMessages will also be overridden.Users
and Messages
component. Hence, each of these components will have its individual `Configuration“.
Configurations
expose properties that are available in its individual components.usersConfiguration
props as demonstrated below:
UsersConfiguration
can be found under Users.
Example
Let’s say you want to change the style of the Users subcomponent and, in addition, you only want to display friends in the users list.
You can modify the style using the usersStyle
property and filter the list with the usersRequestBuilder
property.
messagesConfiguration
props as demonstrated below:
MessagesConfiguration
can be found under Messages.
Example
Let’s say you want to change the style of the Messages subcomponent and, in addition, you only want to hide message header.
You can modify the style using the messagesStyle
property and hide the message header with the hideMessageHeader
property.