Garden Compose
Toggle table of contents
main-SNAPSHOT
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
Garden Compose
Core
/
io.github.gardencompose.components
Package-level
declarations
Functions
Properties
Properties
Local
Application
Window
Link copied to clipboard
val
LocalApplicationWindow
:
ProvidableCompositionLocal
<
ApplicationWindow
>
Functions
Initialize
Application
Window
Link copied to clipboard
@
Composable
fun
<
AW
:
ApplicationWindow
,
B
:
ApplicationWindow.Builder
<
*
>
>
InitializeApplicationWindow
(
builder
:
(
)
->
B
,
setContent
:
AW
.
(
Widget
?
)
->
Unit
,
title
:
String
?
,
onClose
:
(
)
->
Unit
,
modifier
:
Modifier
=
Modifier
,
styles
:
List
<
CssProvider
>
=
emptyList()
,
decorated
:
Boolean
=
true
,
defaultHeight
:
Int
=
0
,
defaultWidth
:
Int
=
0
,
deletable
:
Boolean
=
true
,
fullscreen
:
Boolean
=
false
,
maximized
:
Boolean
=
false
,
handleMenubarAccel
:
Boolean
=
true
,
modal
:
Boolean
=
false
,
resizable
:
Boolean
=
true
,
init
:
AW
.
(
)
->
Unit
=
{}
,
content
:
@
Composable
(
AW
)
->
Unit
)