added vertical scrollbar for chat list for desktop
This commit is contained in:
parent
05a64c99a2
commit
0e223a3781
@ -1005,6 +1005,14 @@ fun BoxWithConstraintsScope.ChatItemsList(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (appPlatform.isDesktop) {
|
||||||
|
VerticalScrollbar(
|
||||||
|
modifier = Modifier.align(Alignment.CenterEnd)
|
||||||
|
.fillMaxHeight(),
|
||||||
|
adapter = rememberScrollbarAdapter(listState),
|
||||||
|
reverseLayout = true
|
||||||
|
)
|
||||||
|
}
|
||||||
FloatingButtons(chatItems, unreadCount, chat.chatStats.minUnreadItemId, searchValue, markRead, setFloatingButton, listState)
|
FloatingButtons(chatItems, unreadCount, chat.chatStats.minUnreadItemId, searchValue, markRead, setFloatingButton, listState)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user