Skip to content

Commit

Permalink
Add bottom padding to last chat item
Browse files Browse the repository at this point in the history
  • Loading branch information
jja08111 committed Jul 5, 2024
1 parent 414038a commit 1e36327
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ private fun BoxWithConstraintsScope.MessageGroupList(
MessageGroupItem(
modifier = Modifier
.fillMaxWidth()
.heightIn(min = if (isLast) maxHeight else 0.dp),
.heightIn(min = if (isLast) maxHeight else 0.dp)
.padding(bottom = if (isLast) 16.dp else 0.dp),
messageGroup = messageGroup,
)
}
Expand Down

0 comments on commit 1e36327

Please sign in to comment.