- 23 Feb, 2024 1 commit
-
-
Nate authored
This pull request fixes #143803 by taking advantage of Dart's null-aware operators. And unlike `switch` expressions ([9 PRs](https://github.com/flutter/flutter/pull/143634) and counting), the Flutter codebase is already fantastic when it comes to null-aware coding. After refactoring the entire repo, all the changes involving `?.` and `??` can fit into a single pull request.
-
- 24 Jan, 2024 1 commit
-
-
Jesús S Guerrero authored
Revert "[web] - Fix broken `TextField` in semantics mode when it's a sibling of `Navigator`" (#142129) Reverts flutter/flutter#138446 b/322136071
-
- 22 Jan, 2024 1 commit
-
-
Hassan Toor authored
When a `TextField` is rendered before a `Navigator`, it breaks in semantics mode. This is because the framework generates the incorrect semantics tree (excludes the TextField) and when that tree gets sent to the engine, we don't get the signal to create the corresponding `<input>` element. This happens for a few reasons: * `ModalBarrier` uses `BlockSemantics` to drop the semantics of routes beneath the current route in `Navigator` * `ModalBarrier` mistakenly recognizes the widget outside of the `Navigator` to be its sibling * So we end up dropping the semantics node of the `TextField` rendered before it. The fix is to let `Navigator` generate a semantics node so that `ModalBarrier` doesn't mistakenly think widgets outside of `Navigator` are its siblings. `Navigator` doesn't currently do this, which causes all the nodes generated from its widget subtree to be directly attached to the parent semantics node above `Navigator` - since this is also the parent of `TextField`, it considers them siblings. Fixes https://github.com/flutter/flutter/issues/129324
-
- 15 Dec, 2023 1 commit
-
-
Polina Cherkasova authored
-
- 25 Sep, 2023 1 commit
-
-
Polina Cherkasova authored
-
- 20 Sep, 2023 1 commit
-
-
Kostia Sokolovskyi authored
-
- 18 Sep, 2023 1 commit
-
-
Michael Goderbauer authored
New feature in upcoming Dart 3.2. See https://github.com/dart-lang/language/issues/2020. Feature is enabled by bumping the min SDK version to 3.2. Part of https://github.com/flutter/flutter/issues/134476.
-
- 19 May, 2023 1 commit
-
-
chunhtai authored
fixes https://github.com/flutter/flutter/issues/126100
-
- 18 Jan, 2023 1 commit
-
-
Michael Goderbauer authored
-
- 27 Oct, 2022 1 commit
-
-
chunhtai authored
-
- 29 Jul, 2022 1 commit
-
-
Greg Spencer authored
-
- 31 May, 2022 1 commit
-
-
Alexandre Ardhuin authored
* more const immutable classes * more const constructors in dev/ and examples/
-
- 26 May, 2022 1 commit
-
-
Pierre-Louis authored
* Use `curly_braces_in_flow_control_structures` for `widgets` * fix comments * fix comments
-
- 25 May, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 24 May, 2022 1 commit
-
-
Xilai Zhang authored
Revert "Add ability for `ModalRoutes` to ignore pointers during transitions and do so on `Cupertino` routes (#95757)" (#104520) This reverts commit 4c0b0be2.
-
- 19 May, 2022 1 commit
-
-
Will Lockwood authored
Add ability for `ModalRoutes` to ignore pointers during transitions and do so on `Cupertino` routes (#95757)
-
- 13 May, 2022 1 commit
-
-
- 27 Apr, 2022 1 commit
-
-
Phil Quitslund authored
-
- 18 Apr, 2022 1 commit
-
-
Greg Spencer authored
-
- 14 Apr, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 08 Mar, 2022 1 commit
-
-
Andrei Diaconu authored
-
- 03 Feb, 2022 1 commit
-
-
Ian Hickson authored
-
- 21 Jan, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 30 Aug, 2021 1 commit
-
-
Alexander Dahlberg authored
-
- 16 Aug, 2021 1 commit
-
-
Dan Field authored
-
- 27 Jul, 2021 1 commit
-
-
Greg Spencer authored
* Randomize tests, exclude tests that fail with randomization. * Disable some more tool tests
-
- 20 Jul, 2021 1 commit
-
-
Taha Tesser authored
-
- 15 Jul, 2021 1 commit
-
- 14 Jul, 2021 3 commits
-
-
Ian Hickson authored
-
Zachary Anderson authored
This reverts commit 31de052e.
-
Ian Hickson authored
-
- 13 Jul, 2021 2 commits
-
-
Ian Hickson authored
This reverts commit e2490f29.
-
Ian Hickson authored
-
- 01 Jul, 2021 1 commit
-
-
Greg Spencer authored
This reverts commit b5f9612c because it is taking about 40% longer to run the tests, which is causing timeouts.
-
- 29 Jun, 2021 1 commit
-
-
Greg Spencer authored
This turns on order shuffling for all tests that don't fail with it on, marking those tests that do fail with a tag so that they will be run without shuffling on. To determine which tests fail with it on, I ran all the tests 100 times with different random shuffle seeds, and then also ran it with the date seeds from today until the end of July, and tagged all of the test suites (files) that fail, with a seed that caused them to fail.
-
- 02 Jun, 2021 1 commit
-
-
Anis Alibegić authored
-
- 13 May, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 28 Apr, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 25 Mar, 2021 1 commit
-
-
Tapaswi Satyapanthi authored
Resolved contradictory documentation of showGeneralDialog and default value of 'barrierLabel' argument (#78890)
-
- 23 Mar, 2021 1 commit
-
-
chunhtai authored
* Add dismiss action to modal barrier * fix test * fix another test
-