Rachel
Toggle table of contents
3.5.0
common
Target filter
common
Switch theme
Search in API
Skip to content
Rachel
love.yinlin.compose.ui
/
love.yinlin.compose.ui.input
/
ComboBox
Combo
Box
@
Composable
fun
ComboBox
(
items
:
List
<
String
>
,
onSelect
:
(
Int
)
->
Unit
,
modifier
:
Modifier
=
Modifier
,
index
:
Int
=
-1
,
hint
:
String
=
""
,
enabled
:
Boolean
=
true
,
padding
:
PaddingValues
=
Theme.padding.value
,
style
:
TextStyle
=
LocalStyle.current
,
shape
:
Shape
=
Theme.shape.v7
,
border
:
Dp
=
Theme.border.v7
,
maxFlyoutHeight
:
Dp
=
Theme.size.cell1
)