I am trying to auto select a text field for a MacOS application. I added .focusable() but this does not change the result and the text field is still not auto selected and I need to click onto the text field to start typing.
...
TextField("text", text: $inputText)
.focusable()
...