feat: Enhance SetPasswordScreen to hide info when keyboard is visible with animated transitions

This commit is contained in:
k1ngsterr1
2026-01-09 03:10:04 +05:00
parent 961e89d8ee
commit 3cad4edd9b
2 changed files with 27 additions and 8 deletions

View File

@@ -338,8 +338,11 @@ fun ChatsListScreen(
drawerState = drawerState,
drawerContent = {
ModalDrawerSheet(
modifier = Modifier.width(300.dp),
drawerContainerColor = drawerBackgroundColor
modifier = Modifier
.width(300.dp)
.fillMaxHeight(),
drawerContainerColor = drawerBackgroundColor,
windowInsets = WindowInsets(0, 0, 0, 0) // Remove all insets to cover entire screen
) {
// Header with logo and theme toggle
Box(
@@ -471,7 +474,9 @@ fun ChatsListScreen(
)
}
Spacer(modifier = Modifier.height(32.dp))
// Spacer to push content above navigation bar
Spacer(modifier = Modifier.navigationBarsPadding())
Spacer(modifier = Modifier.height(16.dp))
}
}
) {