- 24 Jun, 2021 1 commit
-
-
Jonah Williams authored
-
- 14 Jun, 2021 1 commit
-
-
Greg Spencer authored
This adds avoid_dynamic_calls to the list of lints, and fixes all instances where it was violated. Importantly, this lint is NOT turned on for flutter/packages/test, because those changes are happening in another PR: #84478
-
- 12 Jun, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 08 Jun, 2021 1 commit
-
-
Dan Field authored
-
- 07 Jun, 2021 1 commit
-
-
Dan Field authored
-
- 02 Jun, 2021 2 commits
-
-
Dan Field authored
- 01 Jun, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 11 May, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 10 May, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 07 May, 2021 4 commits
-
-
Hans Muller authored
This reverts commit 3ab799bb.
-
Dan Field authored
-
Michael Goderbauer authored
-
Todd Volkert authored
-
- 26 Apr, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 15 Apr, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 08 Apr, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 03 Apr, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 02 Apr, 2021 1 commit
-
-
Mateus Felipe C. C. Pinto authored
-
- 31 Mar, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 29 Mar, 2021 2 commits
-
-
Michael Goderbauer authored
-
- 27 Mar, 2021 1 commit
-
-
YeungKC authored
Let InkWell/Ink/ancestor support GlobalKey so that splash does not stop when changing position. (#71138)
-
- 26 Mar, 2021 2 commits
-
-
Alexandre Ardhuin authored
-
xubaolin authored
-
- 18 Mar, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 17 Mar, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 12 Mar, 2021 1 commit
-
-
Greg Spencer authored
Update samples to use repo analysis options, Fix sample templates and a ton of analyzer issues (#77868)
-
- 11 Mar, 2021 1 commit
-
-
Konstantin Scheglov authored
-
- 06 Mar, 2021 1 commit
-
-
Ian Hickson authored
-
- 04 Mar, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 26 Feb, 2021 1 commit
-
-
Kate Lovett authored
-
- 18 Feb, 2021 1 commit
-
-
creativecreatorormaybenot authored
-
- 17 Feb, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 13 Feb, 2021 1 commit
-
-
Todd Volkert authored
The FocusManager constructor was registering global event handlers on the shared RawKeyboard instance and the global pointer router. This posed a few problems: (1) there was no way to unregister these handlers, and (2) instantiating a second FocusManager would overwrite the existing focus manager's RawKeyboard handler. This was manifesting in unexpected ways, such as the fact that constructing a second BuildOwner (for a parallel tree, for instance) was obliterating the event handler for the main BuildOwner's focus manager, thus messing with focus. This change separates those global event registrations into a dedicated method, registerGlobalHandlers(), and overrides dispose() to properly unregister those handlers.
-
- 11 Feb, 2021 1 commit
-
-
Todd Volkert authored
This can be useful for offscreen widget trees, where the caller wants to completely tear down the tree (properly clean up) when they're done with the tree, to ensure they're not leaving behind any event listeners that could be registered by child elements (which could lead to memory leaks and unexpected behavior).
-
- 09 Feb, 2021 2 commits
-
-
Kate Lovett authored
This reverts commit fe003535.
-
Kate Lovett authored
-
- 26 Jan, 2021 1 commit
-
-
Todd Volkert authored
This gets away from the extra static map for global key registrations in favor of the data structures being instance properties of the build owner. This still allows for semantically-equivalent static access through the binding (which in turn gives access to the build owner). This also adds a `BuildOwner.globalKeyCount` getter to get the count of global keys associated with widgets currently in the tree.
-
- 22 Jan, 2021 1 commit
-
-
Kate Lovett authored
-