mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This adds a list of key synonyms for non-printable keyboard keys that appear in more than one place So keys like LogicalKeyboardKey.shiftLeft and LogicalKeyboardKey.shiftRight now can be mapped to just LogicalKeyboardKey.shift. I also fixed a bug in the gen_keycodes tool where GLFW entries would get removed if they weren't parsed from the source on the web.
7 lines
160 B
JSON
7 lines
160 B
JSON
{
|
|
"shift": ["ShiftLeft", "ShiftRight"],
|
|
"meta": ["MetaLeft", "MetaRight"],
|
|
"alt": ["AltLeft", "AltRight"],
|
|
"control": ["ControlLeft", "ControlRight"]
|
|
}
|