new-ui-standalone
1.0.0-SNAPSHOT
jvm
new-ui-standalone
/
org.jetbrains.jewel.themes.expui.standalone.control
/
TextArea
Text
Area
@
Composable
fun
TextArea
(
value
:
String
,
onValueChange
:
(
String
)
->
Unit
,
modifier
:
Modifier
=
Modifier
,
enabled
:
Boolean
=
true
,
readOnly
:
Boolean
=
false
,
textStyle
:
TextStyle
=
LocalDefaultTextStyle.current
,
placeholder
:
@
Composable
(
)
->
Unit
?
=
null
,
footer
:
@
Composable
(
)
->
Unit
?
=
null
,
isError
:
Boolean
=
false
,
visualTransformation
:
VisualTransformation
=
VisualTransformation.None
,
keyboardOptions
:
KeyboardOptions
=
KeyboardOptions.Default
,
keyboardActions
:
KeyboardActions
=
KeyboardActions()
,
maxLines
:
Int
=
Int.MAX_VALUE
,
onTextLayout
:
(
TextLayoutResult
)
->
Unit
=
{}
,
interactionSource
:
MutableInteractionSource
=
remember { MutableInteractionSource() }
,
shape
:
Shape
=
RectangleShape
,
colors
:
TextFieldColors
=
LocalTextFieldColors.current
)