New about sheet (#294)

* about sheet

* version

* about page
This commit is contained in:
callebtc
2025-08-23 12:04:21 +02:00
committed by GitHub
parent e92266c025
commit 26520991cf
3 changed files with 372 additions and 130 deletions
@@ -22,7 +22,7 @@ import androidx.compose.ui.zIndex
* - MessageComponents: Message display and formatting
* - InputComponents: Message input and command suggestions
* - SidebarComponents: Navigation drawer with channels and people
* - DialogComponents: Password prompts and modals
* - AboutSheet: App info and password prompts
* - ChatUIUtils: Utility functions for formatting and colors
*/
@Composable
@@ -399,9 +399,9 @@ private fun ChatDialogs(
onDismiss = onPasswordDismiss
)
// App info dialog
AppInfoDialog(
show = showAppInfo,
// About sheet
AboutSheet(
isPresented = showAppInfo,
onDismiss = onAppInfoDismiss
)