I want to switch focus from one field to the next when the user presses Enter: how would I go about it?
The items are arranged in a grid, as follows:
Since TextField inherits from Item you can use the existing focus chain using nextItemInFocusChain(). Just add the following line to the TextField:
TextField
Item
Keys.onEnterPressed: nextItemInFocusChain().forceActiveFocus()