wear: action buttons float over chat text instead of reserving space; empty-state lifted clear of buttons

This commit is contained in:
callebtc 2026-07-28 21:34:14 +02:00
parent 5797ee18c0
commit 5e937fa816
2 changed files with 4 additions and 4 deletions

View File

@ -116,7 +116,7 @@ fun ChatScreen(onOpenPeople: () -> Unit, onOpenTextInput: () -> Unit) {
Column(
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 56.dp)
.padding(bottom = 8.dp)
.rotaryScrollable(
RotaryScrollableDefaults.behavior(scrollState),
rotaryFocus
@ -133,7 +133,7 @@ fun ChatScreen(onOpenPeople: () -> Unit, onOpenTextInput: () -> Unit) {
textAlign = TextAlign.Center,
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 16.dp)
.padding(bottom = 48.dp)
)
}
messages.forEach { message ->

View File

@ -145,7 +145,7 @@ fun DmScreen(peerID: String, onOpenTextInput: () -> Unit) {
Column(
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 56.dp)
.padding(bottom = 8.dp)
.rotaryScrollable(
RotaryScrollableDefaults.behavior(scrollState),
rotaryFocus
@ -163,7 +163,7 @@ fun DmScreen(peerID: String, onOpenTextInput: () -> Unit) {
textAlign = TextAlign.Center,
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 16.dp)
.padding(bottom = 48.dp)
)
}
messages.forEach { message ->