- 05 Apr, 2017 17 commits
-
-
Ian Hickson authored
-
Ian Hickson authored
-
Ian Hickson authored
-
Ian Hickson authored
This yak shave went as follows: Fix https://github.com/flutter/flutter/issues/8795 by adding stocks to the examples README. Notice the layers entry in that README isn't quite right either. Update that. Check the layers/README file is worth pointing at. Update the layers/README. Let's run some of the layer tests to see if they still work. Oops, need to update them to gradle. Ok let's try running them again. Oops, sector is broken. Add a test for sector. Fix sector. Find you need to add an assert to a const constructor. Notice we need to turn const asserts on for the analyzer. Notice the analysis_options files are out of sync with each other and with the full list of lints. Turn on the lints that should be on. Fix the bugs that finds.
-
Michael Thomsen authored
-
Michael Goderbauer authored
* Roll Dart to 1.23.0-dev.11.3. This is expected to fix the Windows crashes reported in https://github.com/flutter/flutter/issues/8912. * fix tests * Roll to 1.23.0-dev.11.5 * Fix tests
-
Collin Jackson authored
-
Sarah Zakarias authored
-
Adam Barth authored
Mostly related to semantics and scrolling.
-
Ian Hickson authored
-
Ian Hickson authored
Add some commentary around DefaultTabController.initialIndex. Fix typo (nuull) in TabBar. Make some asserts more detailed.
-
Ian Hickson authored
-
Ian Hickson authored
-
Ian Hickson authored
* Add tolerance argument to FrictionSimulation. * Change FrictionSimulation.through to setting tolerance via the constructor rather than afterwards. * Allow SimulationGroup constructor to take tolerance argument. * Add a toString for SpringDescription. * Add a toString for SpringSimulation. * Push this change to BouncingScrollSimulation.
-
Ian Hickson authored
-
Hans Muller authored
-
Ian Hickson authored
This issue is being tracked at: https://github.com/dart-lang/sdk/issues/29230
-
- 04 Apr, 2017 21 commits
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/9186
-
Jason Simmons authored
-
James Robinson authored
This package now depends on collection and quiver. The package level dependencies in the BUILD.gn file should match the list of dependencies in the pubspec.yaml file for the Fuchsia build to function.
-
Alexandre Ardhuin authored
-
xster authored
* Just realized the creation order is the other way around * Works * Revert previous partial solution * Change pumpAndSettle to pump for gestures
-
Yegor authored
-
Yegor authored
-
Dwayne Slater authored
Uninstalling the app removes the data and cache directories, so this allows application data to persist across multiple flutter run invocations. This also handles the edge case where the app fails to install due to an error in installation (e.g. debug keystore changes, switching from a release keystore to a debug keystore, etc.).
-
Todd Volkert authored
-
Chris Bracken authored
-
Michael Thomsen authored
* Make IntelliJ metadata files consistent with the current flutter create template * Add missing IJ files from current flutter create template * Remove run config from layers as it requires running with -t * Remove workspace.xml files per review feedback
-
Jakob Andersen authored
Gradle projects are evaluated in lexicographical order, and the plugin projects are at the same level as the :app project, so if a plugin has a name that comes before 'app' (like, for example, any name that starts with a capital letter), the plugin project will be evaluated before :app. Since :app applies the Flutter Gradle plugin, which tries to modify the dependencies of the plugin projects, we have a problem if the plugin projects have already been evaluated. Adding evaluationDependsOn(':app') to the plugin projects fixes this. Updated example projects to the latest (plugin-enabled) Gradle build files. Also removed two unused imports in `pluginClass.java.tmpl`.
-
xster authored
* Add new metric to size_tests instead * Small lints
-
Adam Barth authored
The underlying issue was fixed by the new focus system. Fixes #1523
-
Adam Barth authored
This patch adds docs for many of the sliver widgets.
-
Adam Barth authored
-
Adam Barth authored
These where used only by the old focus system. Let's remove them before they grow more clients.
-
Adam Barth authored
TextFormField doesn't actually have many properties because it wraps a TextField. Rather than trying to document all the arguments in the constructor, we now refer to the docs for TextField, which explain the parameters in a more readable way. Fixes #7245
-
Adam Barth authored
This method seemed overly specific to the needs of one particular subclass. This patch duplicates some code but makes the API conceptually cleaner. Fixes #8267
-
Adam Barth authored
We should always use the maxWidth from the incomming constraints to size the text inside the editable because the EditableText itself always expands to fill its width. Also, make sure InputDecoration always expands horizontially (even when there's no icon) for consistency. Fixes #9149
-
Chris Bracken authored
-
- 03 Apr, 2017 2 commits
-
-
Hans Muller authored
-
xster authored
* Moved stuff around yet * Fix depedencies * Add more dartdoc comments to packages * Remove Cupertino dependency on material * Removed mountain_view package and added page transition test * Fix analyze warnings * Remove commented code * Partial solution. Still need to stop the animation on the previous page for modal * Some review notes * Move the cupertino back gesture controller’s lifecycle management back to its parent * Reviews * Add background color * Directional curves, full screen transition * Don’t perform the exit animation if the incoming page is a dialog * It works! * Test structures * Add a bunch of more tests and fix the gallery * One more comment * Review notes * final controller * Use that sweet sweet `is!` keyword * Play golf, because I’m bitter that there’s no nullable `as` or something in dart * Remove a space * Review notes * Remove the last deprecated test
-