feat: Enhance SetPasswordScreen to hide info when keyboard is visible with animated transitions
This commit is contained in:
@@ -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))
|
||||
}
|
||||
}
|
||||
) {
|
||||
|
||||
Reference in New Issue
Block a user