- 21 Jun, 2018 6 commits
-
-
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
-
Alexander Aprelev authored
* Serialize compilation requests.
-
Zachary Anderson authored
-
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 11 commits
-
-
Natalie Sampsell authored
-
Yegor authored
-
Jonah Williams authored
-
Alexander Aprelev authored
* Roll to 549c855e89341b97436b3417542fc8f997492df7 * Clean up return void - see https://github.com/dart-lang/sdk/issues/33218
-
Jonah Williams authored
-
-
Mikkel Nygaard Ravn authored
-
Florian Loitsch authored
-
matthew-carroll authored
* Add doc example to addLocalHistoryEntry in LocalHistoryRoute (#9392)
-
Ian Hickson authored
The new matcher package deprecates isInstanceOf which seems eggregious.
-
Andrew Davies authored
-
- 19 Jun, 2018 5 commits
-
-
Florian Loitsch authored
Fix test. This makes the buildbot green again.
-
Greg Spencer authored
-
matthew-carroll authored
* Add docs to Opacity recommending AnimatedOpacity for opacity animations (#15464)
-
Michael Goderbauer authored
Reported for the hello_world compile benchmark in devicelab for now.
-
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.
-
- 18 Jun, 2018 2 commits
-
-
Florian Loitsch authored
* Roll the engine. This engine includes a VM that defaults to sync-async. flutter/engine@c8eeee4 Roll the Dart VM.
-
Danny Tuppeny authored
Seems like VS Code may have started using lowercase extension folders recently (our identifier is `Dart-Code.flutter` but now the folder is named `dart-code.flutter`), so this makes the check not sensitive to casing. Also reuse extension identifier for download link
-
- 16 Jun, 2018 5 commits
-
-
Jonah Williams authored
-
Michael Goderbauer authored
-
Jonah Williams authored
-
Jonah Williams authored
-
Michael Goderbauer authored
... and make sure they fail if they can't report the size.
-
- 15 Jun, 2018 11 commits
-
-
Ian Hickson authored
This reverts commit 77508722.
-
Ian Hickson authored
-
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
-
Stanislav Baranov authored
Add flutter tool support for creating app-specific VM snapshots.
-
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.
-
Mikkel Nygaard Ravn authored
-