Here's what I got:
The text in the form is shifted, as I understand it, with built-in indents. Can I somehow remove them so that the text can be seen normally?
OutlinedTextField(
value = enterS,
onValueChange = {},
readOnly = true,
placeholder = { Text(text = "Test")},
modifier = Modifier
.width(70.dp)
.height(40.dp),
textStyle = TextStyle(textAlign = TextAlign.Center))