Description
I cloned iced master 2ce5df0 and built the examples on Windows. While testing keyboard-based interaction, I found that iced doesn't perform keyboard interactions for most widgets, that native or desktop-web toolkits generally have.
In Pokedex, when I click on the button (and optionally drag my cursor off of it), it does not put keyboard focus onto the button, and pressing Enter or Space does not activate the button.
You cannot focus a slider and use arrow keys to adjust it either. This can be seen in the second page of the tour app. (#366 says this is fixed, but I haven't had any luck.)
You cannot switch between radio buttons using the keyboard either. (third page of tour)
You cannot focus a checkbox and use Space (or Enter?) to toggle its value.
Page Down, keyboard arrow keys, and space do not move the scroll area either. I'm not sure how people expect native apps to treat this.
- Help browsers and office apps work more like documents or web pages, and respond to Page Down.
- In Okular's settings dialog (Qt), Page Down scrolls the dialog if the background is focused, or changes a spinbox widget value if it's focused. I'm not sure I like how Qt handles keyboard input (Qt's handling of scrolling is worse).
In a text box, Tab doesn't switch to a different widget.
There may be more discrepancies with native UI that I haven't found yet.