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( Box(
modifier = Modifier modifier = Modifier
.fillMaxWidth() .fillMaxWidth()
.background(Color.Transparent) .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) val shape = RoundedCornerShape(24.dp)
@@ -272,5 +269,4 @@ fun ChatInput(
) )
} }
} }
}
} }