- 21 Jul, 2017 11 commits
-
-
Devon Carew authored
* ignore postpauseevents when reloading * Update run_hot.dart comment changes to kick the appveyor bot
-
Ian Hickson authored
Fixes https://github.com/flutter/flutter/issues/11323
-
Ian Hickson authored
Mainly, this adds documentation to members that were previously lacking documentation. It also adds a big block of documentation about improving performance of widgets. This also removes some references to package:collection and adds global setEquals and listEquals methods in foundation that we can use. (setEquals in particular should be much faster than the package:collection equivalent, though both should be faster as they avoid allocating new objects.) All remaining references now qualify the import so we know what our remaining dependencies are. Also lots of code reordering in Flutter driver to make the code consistent and apply the style guide more thoroughly.
-
Collin Jackson authored
* Fix physics with NestedScrollView * Review feedback
-
Ian Hickson authored
* Optimise AnimatedSize for the tight case. * Remove `default` from a switch statement over enum (so that analyzer will complain if we add enum values). * Adopt the Size since we use it after the child may have changed (which would throw normally). * AnimatedCrossFade.layoutBuilder
-
Phil Quitslund authored
* Flutter create widget test template. Running `flutter create —with-widget-test` produces a test/widget_test.dart sample widget test. * Generate widget test bits in flutter create. * Path fix. * Added types. * Skip shell testing on windows. * formatting fixes * Update test sample to test the sample app. * Formatting tweak.
-
Phil Quitslund authored
-
gspencergoog authored
* Prefix and Suffix support for TextFields * Adding Tests * Removing spurious newline. * Fixing a small problem with the test * Code review changes * Code Review Changes * Review Changes * Export the new StrokeJoin enum * Added example for line styles, and enabled line join styles. * Reverting inadvertent change to main.dart. * Updated due to code review of engine code * Removed example. * Added arguments to named routes, with test. * Fixing some formatting * Fixing Navigator.pop for named routes. * Fixing comment. * Simplifying test. * Fixing new -> const for Text object. * Tiny text change (also to kick a new Travis build) * Added a more realistic test case. * Reverting unintentional iml changes. * Fixing trailing newline * Removing some changes that snuck in.
-
xster authored
Extract common text selection overlay logic from Material to Widget and create a Cupertino version of the overlays
-
Devon Carew authored
-
Jason Simmons authored
This is similar to an optimization done in PhysicalModelLayer::Paint in the engine
-
- 20 Jul, 2017 7 commits
-
-
Ian Hickson authored
This reverts commit e13e7806. Turns out that with this patch, we aren't actually catching all errors. For example, `flutter analyze --flutter-repo --watch` didn't report errors in `dev/devicelab/test/adb_test.dart`.
-
Michael Goderbauer authored
* fix sample code * review comments * review comments * document other members for extra bonus points
-
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 1 commit
-
-
najeira authored
-