toggle menu
ui
1.0.0-SNAPSHOT
jvm
switch theme
search in API
ui
/
org.jetbrains.jewel.ui.component
/
ComboBox
Combo
Box
@
Composable
fun
ComboBox
(
labelText
:
String
,
modifier
:
Modifier
=
Modifier
,
menuModifier
:
Modifier
=
Modifier
,
isEnabled
:
Boolean
=
true
,
outline
:
Outline
=
Outline.None
,
maxPopupHeight
:
Dp
=
Dp.Unspecified
,
interactionSource
:
MutableInteractionSource
=
remember { MutableInteractionSource() }
,
style
:
ComboBoxStyle
=
JewelTheme.comboBoxStyle
,
textStyle
:
TextStyle
=
JewelTheme.defaultTextStyle
,
onArrowDownPress
:
(
)
->
Unit
=
{}
,
onArrowUpPress
:
(
)
->
Unit
=
{}
,
onPopupStateChange
:
(
Boolean
)
->
Unit
=
{}
,
popupContent
:
@
Composable
(
)
->
Unit
)