- 27 Jun, 2018 3 commits
-
-
Jonah Williams authored
-
Ian Hickson authored
-
Jonah Williams authored
-
- 25 Jun, 2018 4 commits
-
-
liyuqian authored
This should fix https://github.com/flutter/flutter/issues/18729 I'll add a gold test, and try to figure out how to remove the saveLayer without affecting the correctness later.
-
liyuqian authored
This should fix https://github.com/flutter/flutter/issues/18731 and I've added a unit test for it.
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
- 22 Jun, 2018 5 commits
-
-
liyuqian authored
This fixes https://github.com/flutter/flutter/issues/18708
-
Jonah Williams authored
-
Jonah Williams authored
-
Jonah Williams authored
-
Adam Barth authored
-
- 21 Jun, 2018 7 commits
-
-
Hans Muller authored
-
Yegor authored
-
amirh authored
Move the notch computation from the FAB to the BAB. The notch in the BAB (bottom action bar) for the FAB (floating action button) was previously kept as part of the FAB's implementation. This was done to keep the shape of the FAB and the shape of the notch coupled. That approach resulted in a somewhat complex and 'non Fluttery' mechanism for propagating the notch computation from the FAB to the BAB. This CL uncouples the FAB and the notch computation. With the new API the BAB computes its overall shape including the notch using a NotchedShape delegate. This includes multiple breaking changes: * Scaffold.setFloatingActionButtonNotchFor is deleted. * The ComputeNotch type is deleted. * The hasNotch property of BottomAppBar is deleted. * The notchMargin property of FloatingActionButton is deleted. Quick migration guide from the previous API: | Previous API | New API | | ------------------|-------------| | BottomAppBar(hasNotch: false) | BottomAppBar() | | Using a FloatingActionButton with: BottomAppBar() / BottomAppBar(hasNotch: true) | BottomAppBar(shape: CircularNotchedRectangle()) | | Scaffold.setFloatingActionButtonNotchFor(..) | No longer supported |
-
liyuqian authored
This is a follow up on https://github.com/flutter/engine/pull/5420 and https://github.com/flutter/flutter/issues/18057 As you can see from the diff, we also mistakenly saveLayer before the clip at some places previously.
-
matthew-carroll authored
* Use RenderAnimatedOpacity within AnimatedOpacity widget (#15466) * Fixed minor bug in RenderAnimatedOpacity * Updated protected API for ImplicitlyAnimatedWidget
-
Dan Field authored
* update tests for TextStyle changes in engine * roll engine, support Foreground on TextStyle * roll to TextStyle.foreground * add tests, update docs, fixes from tests * add golden tests * stroke + gradient * update goldens hash * Use centered widget * fix typo * Disable golden tests until Linux generated files are available * update goldens
- 20 Jun, 2018 5 commits
-
-
Natalie Sampsell authored
-
Jonah Williams authored
-
Jonah Williams authored
-
-
matthew-carroll authored
* Add doc example to addLocalHistoryEntry in LocalHistoryRoute (#9392)
-
- 19 Jun, 2018 3 commits
-
-
Greg Spencer authored
-
matthew-carroll authored
* Add docs to Opacity recommending AnimatedOpacity for opacity animations (#15464)
-
Greg Spencer authored
This adds an HSLColor class which uses a perceptual color space based upon human perception of colored light (as opposed to HSV, which is based on pigment colors). You can see the difference in the color spaces here: https://en.wikipedia.org/wiki/HSL_and_HSV I also added a "within" matcher for both HSLColor and HSVColor that will check if the (floating point) color components are within a certain error. And tests.
-
- 16 Jun, 2018 3 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
Jonah Williams authored
-
- 15 Jun, 2018 7 commits
-
-
liyuqian authored
We have many hidden children because of iOS accessibility (see also #18410). For example, in the tile screen of complex_layout app, there could be up to 20 children being painted without this PR. With this PR, only 12 get painted. This should improve the performance of FL-53 by 40%.
-
Hans Muller authored
-
Jonah Williams authored
-
Jonah Williams authored
-
Jonah Williams authored
-
Michael Goderbauer authored
-
Michael Goderbauer authored
Fixes #10826. Also in this PR: If you focus a text field, scroll it out of view and then start typing it will scroll back into view.
-
- 14 Jun, 2018 1 commit
-
-
xster authored
-
- 13 Jun, 2018 2 commits
-
-
Chris Bracken authored
fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly from source, flutter_platform.dart automatically runs a kernel compile when operating in Dart 2 mode, but this assumes a functional Dart SDK is available in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts directory with an empty temp dir. Remaining work is: 1. Get the frontend server building as a dependency on Fuchsia. 2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server. This also reverts migration to Dart 2 typedef syntax. This reverts commit 6c56bb24. (#18362) This reverts commit 3daebd05. (#18316)
-
xster authored
Fix ListView dartdoc where a paragraph doesn't flow with the section heading and the other paragraphs in the section (#18430)
-