chore: merge the develop branch into master #1

Merged
reya merged 43 commits from develop into master 2026-05-23 00:50:13 +00:00
Showing only changes of commit 43116958a2 - Show all commits

View File

@@ -168,7 +168,7 @@ fun ChatScreen(
.fillMaxSize() .fillMaxSize()
.padding(bottom = innerPadding.calculateBottomPadding()) .padding(bottom = innerPadding.calculateBottomPadding())
) { ) {
if (groupedMessages.isNotEmpty()) { if (messages.isNotEmpty()) {
LazyColumn( LazyColumn(
modifier = Modifier modifier = Modifier
.weight(1f) .weight(1f)
@@ -189,7 +189,9 @@ fun ChatScreen(
} }
} else { } else {
Box( Box(
modifier = Modifier.fillMaxSize(), modifier = Modifier
.weight(1f)
.fillMaxWidth(),
contentAlignment = Alignment.Center contentAlignment = Alignment.Center
) { ) {
Column(horizontalAlignment = Alignment.CenterHorizontally) { Column(horizontalAlignment = Alignment.CenterHorizontally) {