Jitendra
04/26/2023, 12:56 PMCustomTextField(
text = message, onValueChange = { message = it },
onSend = onSend,
modifier = Modifier.constrainAs(bottom) {
// top.linkTo(box.bottom, margin = 16.dp)
top.linkTo(box.bottom, margin = 16.dp)
end.linkTo(parent.end)
bottom.linkTo(parent.end)
},
)
it keep giving error “Unresolved reference: linkTo” on bottom.linkto(parent.end)Kirill Grouchnikov
04/26/2023, 1:14 PMbottom.linkTo(parent.bottom)
?Kirill Grouchnikov
04/26/2023, 1:15 PMJitendra
04/26/2023, 1:19 PMbottom.linkTo(parent.bottom)
this is also saying same errorKirill Grouchnikov
04/26/2023, 1:23 PMJitendra
04/26/2023, 1:25 PMDan MacNeil
04/26/2023, 2:11 PMJitendra
04/26/2023, 10:03 PM