- 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
-
- 02 Mar, 2021 1 commit
-
-
Michael Goderbauer authored
-
- 16 Feb, 2021 1 commit
-
-
Sam Rawlins authored
-
- 23 Jan, 2021 1 commit
-
-
Shi-Hao Hong authored
-
- 25 Nov, 2020 1 commit
-
-
Andrey Kabylin authored
-
- 20 Nov, 2020 1 commit
-
-
Greg Spencer authored
Adds Navigator.maybeOf to replace calling Navigator.of(context, nullOk: true), and removes the nullOk parameter. Also changes Navigator.of to return a non-nullable value, and removes many (120!) instances of the ! operator, reducing the possible places where a null dereference could occur.
-
- 12 Nov, 2020 1 commit
-
-
Todd Volkert authored
-
- 26 Oct, 2020 1 commit
-
-
Michael Goderbauer authored
-
- 21 Oct, 2020 1 commit
-
-
Michael Goderbauer authored
-
- 09 Oct, 2020 1 commit
-
-
Greg Spencer authored
-
- 08 Oct, 2020 1 commit
-
-
Michael Goderbauer authored
-
- 27 Sep, 2020 1 commit
-
-
Michael Goderbauer authored
-
- 31 Aug, 2020 1 commit
-
-
Chris Bracken authored
Flutter's `moreOrLessEquals` has a few advantages over `closeTo` from the `matcher` package: * It emits the epsilon value in the test result on failure. * It uses a named parameter for epsilon, which improves readability at the call site. * It has a reasonable default for epsilon in cases where something more specific isn't required. Using it also has the nice property that it aids in its own discovery when when people go looking for such functionality in new tests. This change also includes a couple unrelated whitespace formatting cleanups.
-
- 08 Aug, 2020 1 commit
-
-
Jonah Williams authored
-
- 05 Aug, 2020 1 commit
-
-
Hans Muller authored
-
- 28 Jul, 2020 1 commit
-
-
Darren Austin authored
-
- 23 Jul, 2020 1 commit
-
-
Abdur Rafay Saleem authored
-
- 16 Jul, 2020 1 commit
-
-
Todd Volkert authored
`showDialog()` and `showGeneralDialog()` were allowing transparent colors but then triggering an assertion down the stack while building the modal barrier. The assertion existed to keep from animating from transparent to transparent, but there's no need for the assertion, since we can just treat the transparent case as the same as the null case -- no animation necessary.
-
- 15 Jul, 2020 1 commit
-
-
Todd Volkert authored
The function passes most of its arguments through to `_DialogRoute`, but it wasn't providing the default values that `_DialogRoute` was, causing it to override the defaults will null values.
-
- 25 Jun, 2020 1 commit
-
-
chunhtai authored
* Add material page, cupertino page, and transition page classes * update * update comments * fix test * addressing comments * make page getter private
-
- 24 Jun, 2020 1 commit
-
-
chunhtai authored
* Add semantics sort key for modal scope and modal barrier * fix test * fix test * fix test * fix space * fix more tests * addressing comments
-
- 18 Jun, 2020 1 commit
-
-
Darren Austin authored
-
- 11 Jun, 2020 2 commits
-
-
Alexandre Ardhuin authored
* add language version 2.8 in packages/flutter * enable non-nullable analyzer flag
-
Darren Austin authored
-
- 23 Mar, 2020 1 commit
-
-
chunhtai authored
-
- 27 Feb, 2020 1 commit
-
-
Greg Spencer authored
When Focus.unfocus is called, the caller usually just thinks about wanting to remove focus from the node, but really, unfocus is a request to automatically pass the focus to another (hopefully useful) node. This PR removes the focusPrevious flag from unfocus, and replaces it with a disposition enum that indicates where the focus should go from here. The other value of the UnfocusDisposition enum is UnfocusDisposition.scope. UnfocusDisposition.previouslyFocusedChild is closest to what focusPrevious used to do: focus the nearest enclosing scope and use its focusedChild field to walk down the tree, finding the leaf focusedChild. This PR modifies it slightly so that it walks up to the nearest focusable enclosing scope before trying to focus the children. This change addresses #48903 A new mode: UnfocusDisposition.scope will focus the nearest focusable enclosing scope of this node without trying to use the FocusScopeNode.focusedChild value to descend to the leaf focused child. This is useful as a default for both text field finalization and for what happens when canRequestFocus is set to false. It allows the scope to stay focused so that nextFocus/previousFocus still work as expected, but removes the focus from primary focus. In addition to those changes, unfocus called on a FocuScope that wasn't the primary focus used to unfocus the primary focus instead. I removed that behavior, since it was buggy: if the primary focus was inside of a child scope, and you called unfocus on the parent scope, then the child scope could have focused another of its children instead, leaving the scope that you called unfocus on with hasFocus returning true still. If you want to remove the focus from the primary focus instead of the scope, that's easy enough to do: just call primaryFocus.unfocus(). Fixes #48903
-
- 05 Feb, 2020 1 commit
-
-
chunhtai authored
-
- 30 Jan, 2020 1 commit
-
-
chunhtai authored
Fixes the focus handling when popping pages so that when multiple pages are popped, the focus doesn't try to focus the interstitial pages.
-
- 29 Jan, 2020 1 commit
-
-
chunhtai authored
Navigator 2.0: Refactor the imperative api to continue working in the new navigation system (#44930)
-
- 27 Jan, 2020 1 commit
-
-
Dan Field authored
-
- 17 Jan, 2020 1 commit
-
-
Anthony authored
[a11y] Make sure RenderFractionalTranslation updates its semantics after the translation field is set (#48985)
-
- 16 Jan, 2020 2 commits
-
-
Alexandre Ardhuin authored
-
Konstantin Scheglov authored
-
- 10 Jan, 2020 1 commit
-
-
Shi-Hao Hong authored
-
- 09 Jan, 2020 1 commit
-
-
Shi-Hao Hong authored
* Implement reverseTransitionDuration in TransitionRoute
-
- 07 Jan, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 16 Dec, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 01 Nov, 2019 1 commit
-
-
Brian Egan authored
-