This is my first time using MessageKit. I am trying to customize my view but I can't find any helpful information on how to do so like setting insets and changing color of background.
I want to start the view from below the title bar and change the background color and the background color of the messages.
func backgroundColor(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> UIColor {
return isFromCurrentSender(message: message) ? UIColor.myGold : UIColor.headingGold
}
Any help will be appreciated.