- 03 Jan, 2018 4 commits
-
-
Yegor authored
* modernize capability names in devicelab task manifest * replace windows too
-
Alexander Markov authored
* Roll engine to 37789650cb1254199426e5de5cc66c2ba63cbaf2 * Fix large integer literals in packages/flutter/test/services/message_codecs_test.dart
-
Alexander Aprelev authored
Try again now since texture-related test-breaking PR was backed out.
-
Michael Goderbauer authored
Fixes #13743 Fixes #12379 Follow-up to #13745 Also adds an option to hide gestures introduced by `InkWell` and `InkResponse` from the semantics tree (see also `GestureDetector.excludeFromSemantics`).
-
- 02 Jan, 2018 8 commits
-
-
Chris Bracken authored
Reformats a SafeArea introduced in #13853.
-
Leaf Petersen authored
* Remaining code changes for Dart 2.0 SDK roll
-
Chris Bracken authored
Applies horizontal safe area insets to the animation demo in the Gallery. Specifically, this ensures the back button is positioned consistently with iOS expectations and that that main image card in the detail view respects safe area insets. This is to support the iPhone X sensor housing notch and other similarly creative display features when in landscape orientation.
-
Chris Bracken authored
Applies horizontal safe area insets to the video demo in the Gallery. This is to support the iPhone X sensor housing notch and other similarly creative display features when in landscape orientation.
-
Alexander Aprelev authored
* Revert "Roll engine to e122f4825726035e4579471ef83848b1aa796444 dart roll" This reverts commit c7dfadfa. * Revert "Roll engine to just before dart roll" This reverts commit d5cc8657.
-
Alexander Aprelev authored
-
Alexander Aprelev authored
-
Mikkel Nygaard Ravn authored
-
- 27 Dec, 2017 3 commits
-
-
KyleWong authored
Avoids running pod install if .flutter-plugins and its flutter framework pod dependency didn't change
- 23 Dec, 2017 2 commits
-
-
Alexander Aprelev authored
-
Alexander Aprelev authored
Executables have '.exe' extension on Windows. We do have to specify extension for gen_snapshot since when running with local engine, we are looking for that exact file before launching it.
-
- 22 Dec, 2017 5 commits
-
-
amirh authored
-
Todd Volkert authored
This reverts the change to `user_accounts_drawer_header.dart` (and the associated test), as it was causing regressions in layout of the drawer header. https://github.com/flutter/flutter/issues/13743
-
xster authored
-
xster authored
* Create CupertinoScrollbar * handle main axis margin * Adaptive material scrollbar and tests * Small tweaks * reapply changes on head * Docs * start * Refactored ScrollbarPainter to be more immutable * fix tests * fix bug: one animationcontroller pointed to multiple painters * some docs tweak * remove unused import * review * review * add dispose
-
Michael Goderbauer authored
**tl;dr:** A `RenderObject` can only be an effective semantics boundary if it actually owned a `SemanticsNode` in the previous tree generation. When using the `BlockSemantics` widget it is possible to introduce `RenderObject`s that are configured to be a semantics boundary, but because their semantics are blocked by `BlockSemantics` they will not (immediately) end up owning a `SemanticsNode`. When now a descendant of such a node-less semantics boundary marks itself as needing a semantics update we walk up the tree until we find the closest semantics boundary (which is our node-less `RenderObject`). We now incorrectly assume that this semantics boundary has a valid `SemanticsNode` and only regenerate the semantics subtree below this node. However, because the identified semantics boundary doesn't actually own a valid `SemanticsNode` asserts are throwing (e.g. `Child with id xx is invisible and should not be added to tree.`). To fix this problem, we can just abort the walk if we reach a semantics boundary without a semantics node because (for now) we know that the semantics information of this branch will not make it into the final semantics tree. If the semantics block is ever removed, the current algorithm re-generates the semantics for the entire branch and the semantics will be up-to-date then despite the abort. I've added a test to verify this to make sure it continues to work even when we change the algorithm. Fixes https://github.com/flutter/flutter/issues/13326. /cc @gavindoughtie FYI
-
- 21 Dec, 2017 14 commits
-
-
amirh authored
-
Zachary Anderson authored
-
Ian Hickson authored
This attempts to apply some of what we learnt from UX studies, namely that people wonder how to add multiple children to widget that take one child.
-
Ian Hickson authored
This is a collection of fixes I've run into recently.
-
Ian Hickson authored
Hopefully this will fix the performance regression in https://github.com/flutter/flutter/pull/13680 but with an easier way to flip the switch.
-
Leaf Petersen authored
Small code changes as part of moving the framework SDK forward to a 2.0 dev version.
-
Ian Hickson authored
This cleans up lerp, lerpFrom, lerpTo, and scale methods, and their documentation. Fixes https://github.com/flutter/flutter/issues/12377.
-
Sarah Zakarias authored
-
Mikkel Nygaard Ravn authored
-
Alexander Aprelev authored
This reverts commit dbd3eb67. Commit above fixed initial problem with frontend_server on Windows, but caused another more explicit problem with gen_snapshot down the line.
-
Alexander Aprelev authored
-
Yegor authored
* localize a11y tab labels in the TabBar * break import cycle * test boilerplate * fix German translation * more test boilerplate fixes
-
Yegor authored
* other accounts a11y; show accounts button a11y * layout with bigger tap areas; all semantics * internationalize UserAccountsDrawerHeader a11y labels * better Russian translation * break import cycle * address comments
-
Greg Spencer authored
This reverts commit 765191e7. because the updated packages cause a gradle build problem.
-
- 20 Dec, 2017 4 commits
-
-
Greg Spencer authored
This adds our self-compiled copy of the MinGit executable (built from the flutter/git repo) to the archive when building an archive for Windows. I also tweaked the internal API for prepare_package.dart so that there's a single entry point to build an archive.
-
Hans Muller authored
-
Michael Goderbauer authored
-
Ian Hickson authored
Fixes #12877 by reverting #9472
-