ui
1.0.0-SNAPSHOT
jvm
ui
/
org.jetbrains.jewel.ui.component
/
RadioButtonRow
Radio
Button
Row
@
Composable
fun
RadioButtonRow
(
text
:
String
,
selected
:
Boolean
,
onClick
:
(
)
->
Unit
,
modifier
:
Modifier
=
Modifier
,
enabled
:
Boolean
=
true
,
outline
:
Outline
=
Outline.None
,
interactionSource
:
MutableInteractionSource
=
remember { MutableInteractionSource() }
,
style
:
RadioButtonStyle
=
JewelTheme.radioButtonStyle
,
textStyle
:
TextStyle
=
JewelTheme.textStyle
)
@
Composable
fun
RadioButtonRow
(
selected
:
Boolean
,
onClick
:
(
)
->
Unit
,
modifier
:
Modifier
=
Modifier
,
enabled
:
Boolean
=
true
,
outline
:
Outline
=
Outline.None
,
interactionSource
:
MutableInteractionSource
=
remember { MutableInteractionSource() }
,
style
:
RadioButtonStyle
=
JewelTheme.radioButtonStyle
,
textStyle
:
TextStyle
=
JewelTheme.textStyle
,
content
:
@
Composable
RowScope
.
(
)
->
Unit
)