fix(chat): increase message text size from bodyMedium to bodyLarge
Closes #112
This commit is contained in:
parent
9eefa79c64
commit
7b21394cc6
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ private fun MessageBubble(message: MessageEntity, isMine: Boolean) {
|
||||||
Column(modifier = Modifier.padding(horizontal = 12.dp, vertical = 8.dp)) {
|
Column(modifier = Modifier.padding(horizontal = 12.dp, vertical = 8.dp)) {
|
||||||
Text(
|
Text(
|
||||||
text = message.body,
|
text = message.body,
|
||||||
style = MaterialTheme.typography.bodyMedium
|
style = MaterialTheme.typography.bodyLarge
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = timeFormat.format(Date(message.sentAt)),
|
text = timeFormat.format(Date(message.sentAt)),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue