577 アフィ転載禁止、転載された場合は50万円を請求します 2024/12/04(水) 18:01:18.354 ID:tZY6G3zXD
これをこんな感じにSurfaceとかでラップさせたい
Surface(
modifier = Modifier.constrainAs(mainRef) {
top.linkTo(textRef.bottom, margin = 16.dp)
bottom.linkTo(buttonRef.top, margin = 16.dp)
width = Dimension.matchParent
height = Dimension.preferredWrapContent
}
) {
OutlinedTextField(
value = text,
onValueChange = { text = it. },
placeholder = { Text("入力してください") },
modifier = Modifier
.fillMaxWidth()
.padding(8.dp),
minLines = 2,
maxLines = Int.MAX_VALUE
)
}