Nthily
val context = LocalContext.current Box( modifier = Modifier .width(200.dp) .height(120.dp) .background(Color.Gray) .clickable { Toast.makeText(context, "Clicked", Toast.LENGTH_LONG).show() } ) { BasicTextField( state = rememberTextFieldState(), decorator = { Box(Modifier.border(1.dp, Color.Red)) { it() } } ) }
BasicTextField
Zach Klippenstein (he/him) [MOD]
A modern programming language that makes developers happier.