I've got some TextFields neatly arranged in a TableView. When I move the cursor to a different place and press delete, it always jumps back to the end of the text. Strangely, this only happens in a TableViewRow, other TextFields don't show this behaviour. Is there any way to fix this?
Minimal example:
<TableView> <TableViewSection> <TableViewRow> <TextField value="Move my cursor and delete a character!" /> </TableViewRow> </TableViewSection> </TableView>