I have problem on the text alignment when no outgoing avatar. it will reserve some gap on the text like the following:
I tried to setup the sender message bubble width with the following code but it will mask the input text (eg input 123 but show 1 in the bubble)
CGFloat finalWidth = MAX(stringSize.width + horizontalInsetsTotal, self.minimumBubbleWidth) + self.additionalInset;
if ([messageSender isEqualToString:[layout.collectionView.dataSource senderId]]) {
finalWidth = finalWidth - 25;
}
How can I cancel the gap?