- 20 Jul, 2017 5 commits
-
-
Mary authored
* adds inactiveColor and showThumb to Slider * add customizable color and showThumb tests * remove showThumb, add negative tests
-
Todd Volkert authored
-
Carlo Bernaschina authored
Fixes https://github.com/flutter/flutter/issues/11314
-
Ian Hickson authored
-
Jason Simmons authored
Create one listener that merges the leading and trailing glow controllers and use it in each paint (#11311) If a new listener is created for each paint, then the leading and trailing controllers will accumulate and invoke a list of all those listeners
-
- 19 Jul, 2017 17 commits
-
-
Carlo Bernaschina authored
Changes introduced in https://github.com/flutter/engine/commit/8ba522eeae35d8c70ada3c7b8e200ca2274f4f95 has removed from the `_flutter.listViews` the thread synchronization side effect used during benchmarks. The thread synchronization is restored via the new `_flutter.flushUIThreadTasks` RPC. Fixes https://github.com/flutter/flutter/issues/11241 Related https://github.com/flutter/engine/pull/3898
-
Ian Hickson authored
-
Carlo Bernaschina authored
Required for https://github.com/flutter/flutter/pull/11282
-
Michael Goderbauer authored
* a11y: implement new SemanticsAction "showOnScreen" (v2) This action is triggered when the user swipes (in accessibility mode) to the last visible item of a scrollable list to bring that item fully on screen. This requires engine rolled to flutter/engine#3856. I am in the process of adding tests, but I'd like to get early feedback to see if this approach is OK. * fix null check * review comments * review comments * Add test * fix analyzer warning
-
Hans Muller authored
-
Yegor authored
-
Yegor authored
* AnimatedCrossFade: shut off animations & semantics in faded out widgets * address comments
-
Ryan Macnak authored
Roll engine to "Speculatively disable GN argument 'enable_profiling' to test its effect on benchmarks." (#11303)
-
Ian Hickson authored
-
Ian Hickson authored
debugDumpLayerTree in particular was passing null in profile mode since debugLayer isn't available in profile mode.
-
Michael Goderbauer authored
* Expose the currently available semantic scroll actions * review comments * add test * refactor to set
-
Michael Goderbauer authored
* work around for appveyor connectivity issues Unfortuantelly, this slows down our build :( * review feedback
-
Todd Volkert authored
-
Dan Rubel authored
* flutter analyze --watch auto detect if in flutter repo * move isFlutterLibrary from AnalyzeOnce into AnalyzeBase for use by AnalyzeContinuously * pass --flutter-repo to analysis server when analyzing the flutter repository * enhance flutter analyze --watch to summarize public members lacking documentation
-
Devon Carew authored
* pass the value of the android sdk * swap flag * allow the user to set the android-sdk location
-
Hans Muller authored
-
Michael Goderbauer authored
-
- 18 Jul, 2017 4 commits
-
-
Jeff Brown authored
On Fuchsia, the system compositor is responsible for drawing shadows for physical model layers with non-zero elevation. Also fixed a bug where _needsCompositing was not being cleared prior to updating it.
-
Todd Volkert authored
-
Todd Volkert authored
Fixes https://github.com/flutter/flutter/issues/11238
-
-
- 17 Jul, 2017 10 commits
-
-
najeira authored
-
Michael Goderbauer authored
* Ensure that a frame is allways scheduled when a RenderObject marks itself as needing a semantics update Fixes issue 2 described in https://github.com/flutter/flutter/issues/10971 Previously, an object could call `markNeedsSemanticsUpdate` and its wish would never be granted because no frame was scheduled that would actually update the semantics. This caused an issue during scrolling on Android where at the end of the scroll the `RenderIgnorePointer` would stop blocking the semantics of the scrolled view, call `markNeedsSemanticsUpdate`, but then no frame was scheduled to actually put the semantics of the scrolled view back into the semantics tree. That made the scrolled view unusable for a11y users. At first I was a bit wary to call `requestVisualUpdate` within `markNeedsSemanticsUpdate` because technically the visual is fine, we only need the frame it schedules to update the semantics. However, it seems like we are using `requestVisualUpdate` for exactly that purpose in other places already where we just need an update to the semantics (e.g. https://github.com/flutter/flutter/blob/76a50fe0ca9641a835517ca020f9089453989011/packages/flutter/lib/src/rendering/object.dart#L2408). * add tests
-
Carlo Bernaschina authored
In https://github.com/dart-lang/sdk/commit/df8bf384eb815cf38450cb50a0f4b62230fba217 a new functionality of the Dart VM Service Protocol has been introduced. Clients connected to the Service Protocol are now able to expose services that other clients (e.g. Observatory) can invoke through the Service Protocol itself. With these changes Flutter Tools register them self as a `reloadSources` (a.k.a. HotReload) capable client. Observatory is already listening for the clients which expose this functionality and uses by default the service based version of `reloadSources` when available, so requesting a HotReload from Observatory will trigger the full Flutter HotReload. Related https://github.com/dart-lang/sdk/issues/30023 Related https://github.com/flutter/flutter/pull/11229 Related https://github.com/flutter/flutter/pull/11256
-
Ryan Macnak authored
Update --local-engine to account for changed host architecture of 32-bit Android debug builds. (#11263) Roll engine to 03e642bc8940441bbad5c2fb7d3ca868c1fdad54.
-
Sarah Zakarias authored
-
Ryan Macnak authored
Revert "Update --local-engine to account for changed host architecture of 32-bit Android debug builds. (#11251)" (#11259) This reverts commit 3f514fcf.
-
Carlo Bernaschina authored
This reverts commit 35c49897.
-
Carlo Bernaschina authored
* Register tools as a reloadSources service * Fix code style and comments * Fix nits and Add documentation * Format error message
-
Ryan Macnak authored
Update --local-engine to account for changed host architecture of 32-bit Android debug builds. (#11251) Roll engine to 7480e32854606e554ae37f8bd241c050bdc565c4.
-
Todd Volkert authored
Discovered dead code during review of #10791
-
- 15 Jul, 2017 2 commits
-
-
xster authored
-
Michael Goderbauer authored
* Adds a PageRouteObserver Required for https://github.com/flutter/plugins/pull/174. See also https://github.com/flutter/flutter/issues/11216. * formatting fixes * Make RouteObserver generic
-
- 14 Jul, 2017 2 commits
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/10917
-
Michael Goderbauer authored
-