Toolbox
Toggle table of contents
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
Toolbox
jre
/
com.michaelflisar.toolbox.app
Package-level
declarations
Types
Functions
Types
Desktop
Prefs
Link copied to clipboard
class
DesktopPrefs
(
storage
:
Storage
)
:
BaseDesktopPrefs
Functions
Desktop
Application
Link copied to clipboard
@
Composable
fun
ApplicationScope
.
DesktopApplication
(
screen
:
Screen
,
theme
:
MyTheme
=
MyTheme.windowsDefault()
,
onCloseRequest
:
(
)
->
Unit
?
=
null
,
onPreviewKeyEvent
:
(
KeyEvent
)
->
Boolean
=
{ false }
,
onKeyEvent
:
(
KeyEvent
)
->
Boolean
=
{ false }
,
appIsClosing
:
MutableState
<
Boolean
>
=
remember { mutableStateOf(false) }
,
content
:
@
Composable
(
navigator
:
Navigator
)
->
Unit
)
Desktop
Menu
Bar
Link copied to clipboard
@
Composable
fun
DesktopMenuBar
(
items
:
List
<
MenuItem
>
)