- 27 Jan, 2017 14 commits
-
-
Ian Hickson authored
Move the drive/run common stuff to RunCommandBase, rather than the superclass which applies to everything. Implement --no-resident (fixes https://github.com/flutter/flutter/issues/5448). This is particularly useful when running flutter from scripts. Rename RunAndStayResident to ColdRunner.
-
Ian Hickson authored
-
Adam Barth authored
Uses SliverPadding to implementing paddding in ScrollView. Also, deploy ScrollView in more places now that it implements padding. Finally, remove loader_app.dart because it is not referenced.
-
Adam Barth authored
We now report an accurate estimate when the lastIndex is the final index in the list. Also, we now project forward from the lastIndex using the extent of the reified children instead of trying to project forward from index 0. This new algorithm leads to estimation error as you reach the end of a list, avoiding some ballistic overscrolls.
-
Ian Hickson authored
...for the port arguments
-
Ian Hickson authored
-
Ian Hickson authored
Rumours have it that this is faster now. Fixes https://github.com/flutter/flutter/issues/5154
-
Ian Hickson authored
Turns out MacOS has a really low open files limit and so if you try to open EVERY FILE AT THE SAME TIME it falls over. This just opens the files one at a time, the way we used to back in the old days.
-
Ian Hickson authored
-
Chris Bracken authored
Almost all real-world apps will want a custom app delegate, and 'flutter create' code-gens one by default. This brings the samples in line with our templates and the most common use case.
-
Adam Barth authored
When we start a ballisitic scroll activity to correct an out-of-range scroll offset, make sure we start with a velocity that is headed in the right direction.
-
Michael Goderbauer authored
-
Ian Hickson authored
-
Ian Hickson authored
...and add --diagnostic-port. ...and document port 0.
-
- 26 Jan, 2017 13 commits
-
-
xster authored
* Add a check in case the flutter directory in .packages no longer exists. Clean up and prompt user * Update documentation to use flutter packages get for end-users instead of flutter update-packages. * Merge missing sdk error with the multiple sdk error. They're really the same thing. * Use flutterPath in both checks. * Change file_system’s copy folder to copy director which takes into account the file system * Test support files * Add test and split into 2 messages again. * Move tests to run in memory file system's copy. Tested with dev/bots/test.sh
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/7661
-
Todd Volkert authored
This yields a cleaner separation between common testing code and actual tests (a distinction which is important in Google's internal build system).
-
Todd Volkert authored
We converted all code to use method generics in #7235, but we shouldn't have touched the `http` folder since this code is pulled from upstream.
-
Michael Goderbauer authored
The zip files downloaded from cloud storage are not clearly separated into engine artifacts and tools anyways. Also, because of this unclear separation, we were downloading `linux-x64/artifacts.zip` twice before.
-
Ian Hickson authored
-
Adam Barth authored
This patch deploys ScrollView in a number of demos and manual tests.
-
P.Y. Laligand authored
-
Chris Bracken authored
-
xster authored
* Tweak the contributor guide with info on working with the flutter tool * Slight phrasing * Review edits on doc phrasing * Review notes * Small review tweak
-
Ian Hickson authored
-
Ian Hickson authored
-
Todd Volkert authored
-
- 25 Jan, 2017 13 commits
-
-
Adam Barth authored
When you put a box in a Viewport2, it might paint outside its allocated bounds. This patch teaches Viewport2 to clip when that happens.
-
Ian Hickson authored
-
Hans Muller authored
-
Ian Hickson authored
-
Adam Barth authored
This patch introduces ScrollView, which is a convenience widget for using a SliverBlock. This patch also switches a number of tests from Block to ScrollView. Once we support more features of block (e.g., padding and shrinkwrapping), we'll be able to move over more clients.
-
Chris Bracken authored
-
xster authored
* Change file_system’s copy folder to copy director which takes into account the file system * Address review comments. Test with 2 different instances of file systems.
-
Michael Goderbauer authored
-
Adam Barth authored
-
Hans Muller authored
-
Ian Hickson authored
-
Ian Hickson authored
-
Michael Goderbauer authored
Follow-up to #7625
-