I'm trying to build a clone Android Calculator app so that I can simulate the display of the digits I'm using the TextField component as it, said that, I'd like to know how to disable invoking the virtual keyboard when tapping on one.
Because when I'm running the original Android Calculator I realize I can just tap on the display for pasting some numeric text and it doesn't invoke the virtual keyboard, so I'd like to get the one behaves the same way.
Idk is there that possibility?
My TextField component's code snippet:
TextField(
value = "1000",
onValueChange = {
},
modifier = Modifier
.fillMaxWidth()
.padding(0.dp)
)