Replace BoxWithConstraints with Box since constraints are unused

This commit is contained in:
Hector de Isidro
2025-07-17 00:07:04 +02:00
parent 013f0c00cf
commit d0dac19119
@@ -86,7 +86,7 @@ fun ChatScreen(viewModel: ChatViewModel) {
} }
// Use WindowInsets to handle keyboard properly // Use WindowInsets to handle keyboard properly
BoxWithConstraints(modifier = Modifier.fillMaxSize()) { Box(modifier = Modifier.fillMaxSize()) {
val headerHeight = 36.dp val headerHeight = 36.dp
// Main content area that responds to keyboard/window insets // Main content area that responds to keyboard/window insets