Message item is a component used for chat/message screen. It is a single message being sent by the user.

The component takes in several props that determine the content of the message.
Messages that are in yellow have been sent by somebody else to you, the message in green are the ones sent by you to someone else.
Currently sending pictures, attachments, and voice mail is not supported. However, we did give you the ability to select pictures from the library, select attachments, or take a picture with a camera. You can
use this information to upload information on the backend.
currentUser - determines if the user is you
messageInformation - object containing all the information for generating a single message
Object
required attributes in the object are
{
text: 'This is my message to you - be happy!',
profilePicturePath: '[url.com/mypicture](<http://url.com/mypicture>)',
dateSent: '02/21/2021'
}
Example:
<MessageItem currentUser={isCurrentUser} messageInformation={item} />