- 23 Oct, 2020 6 commits
-
-
Roc Boronat authored
-
Yash Johri authored
-
Justin McCandless authored
-
Michael Goderbauer authored
-
Cyp authored
-
Jonah Williams authored
This reverts commit bde85ea3.
-
- 22 Oct, 2020 13 commits
-
-
xubaolin authored
* Fix mutiple pointers bug * Add unit test case * Remove unnecessary map clone
-
xubaolin authored
Fixes a bug where keyboard capitalization mode was exited when pressing clear.
-
Kate Lovett authored
-
YeungKC authored
Corrects the space available to the label in an outlined text field
-
Alexander Brusher authored
-
xubaolin authored
-
Ian Hickson authored
-
stuartmorgan authored
Currently the framework handles delete, but not backspace, so embeddings all have to implement backspace handling themselves. This eliminates that inconsistency and allows simplified code in embeddings by adding backspace handling. It also fixes a bug uncovered in the delete handling where deleting a selection would also delete the next character after the selection.
-
Dan Field authored
Move service extension to correct binding so images are repainted after enabling/disabling, update test (#68793) * Move service extension to correct binding so images are repainted after enabling/disabling, update test * Update binding.dart
-
puelo authored
* Added RawKeyEvent support for iOS * Removed unused remnant * added some missing keys * Removed trailing whitespaces * commit for build * Added mapping names * Made iOS keycodes generatable and collectable * Fixed naming and formatting issues * fixed raw_keyboard_test
-
chunhtai authored
* fix simple dialog introducing additional node for semantics label * add test
-
Michael Goderbauer authored
-
Jaime Blasco authored
Enables custom text selection menus by allowing selectionControls to be passed to TextField et. al.
-
- 21 Oct, 2020 6 commits
-
-
Jacob Richman authored
Fix assert due to VSCode passing in an isolateId as well as the expected args to setPubRootDirectories. (#68721)
-
Michael Goderbauer authored
-
Justin McCandless authored
-
Zachary Anderson authored
This reverts commit ae06c19a.
-
Alexandre Ardhuin authored
-
Jacob Richman authored
* Fix null safety error in inspector service extensions taking variable numbers of args. Fixes https://github.com/flutter/flutter/issues/68627. Also fix all inspector tests that do not rely on golden image functionality so that they run with --enable-experiment=non-nullable. This verifies there is test coverage to ensure there isn't a regression. * Remove uses of dynamic.
-
- 19 Oct, 2020 5 commits
-
-
YeungKC authored
-
Greg Spencer authored
- - When I added notification of key events before processing them as text, it made it so that shortcut key bindings like the spacebar would prevent spaces from being inserted into text fields, which is obviously not desirable (and so that change was reverted). At the same time, we do want to make it possible to override key events so that they can do things like intercept a tab key or arrow keys that change the focus. This PR changes the behavior of the Shortcuts widget so that if it has a shortcut defined, but no action is bound to the intent, then instead of responding that the key is "handled", it responds as if nothing handled it. This allows the engine to continue to process the key as text entry. This PR includes: - Modification of the callback type for key handlers to return a KeyEventResult instead of a bool, so that we can return more information (i.e. the extra state of "stop propagation"). - Modification of the ActionDispatcher.invokeAction contract to require that Action.isEnabled return true before calling it. It will now assert if the action isn't enabled when invokeAction is called. This is to allow optimization of the number of calls to isEnabled, since the shortcuts widget now wants to know if the action was enabled before deciding to either handle the key or to return ignored. - Modification to ShortcutManager.handleKeypress to return KeyEventResult.ignored for keys which don't have an enabled action associated with them. - Adds an attribute to DoNothingAction that allows it to mark a key as not handled, even though it does have an action associated with it. This will allow disabling of a shortcut for a subtree.
-
Kate Lovett authored
-
Ayush Bherwani authored
-
Xavier Chrétien authored
-
- 18 Oct, 2020 1 commit
-
-
nt4f04uNd authored
-
- 17 Oct, 2020 1 commit
-
-
xster authored
-
- 16 Oct, 2020 8 commits
-
-
Hamdi Kahloun authored
Date Picker jumps back to initialDatePickerMode after day selection.
-
YeungKC authored
-
Alexandre Ardhuin authored
-
Martin Kustermann authored
-
Alexandre Ardhuin authored
-
LongCatIsLooong authored
-
Shi-Hao Hong authored
-
xubaolin authored
-