Optimize layout

This commit is contained in:
2025-12-25 15:43:55 +03:00
Unverified
parent b57ca01596
commit 3f4cddf781
@@ -167,15 +167,12 @@ fun ChatInput(
}
}
Column(
Modifier.windowInsetsPadding(WindowInsets.navigationBars)
) {
// Input field with blur
Box(
modifier = Modifier
.fillMaxWidth()
.background(Color.Transparent)
.padding(horizontal = 8.dp, vertical = 8.dp)
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(start = 8.dp, end = 8.dp, bottom = 8.dp)
) {
val shape = RoundedCornerShape(24.dp)
@@ -273,4 +270,3 @@ fun ChatInput(
}
}
}
}