- 07 Feb, 2017 20 commits
-
-
Adam Barth authored
There appears to be an issue with children before the center widget. I've filled a bug about that issue and will follow up in a later patch.
-
Adam Barth authored
We need to study these benchmark numbers more carefully. See #7937
-
Michael Goderbauer authored
-
Hans Muller authored
-
Hans Muller authored
-
zhenqiu1101 authored
Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. (#7944) * Add find.descendant API to support find descendants of an element by passing the current element and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant. * Add find.descendant API to support find descendants of an element by passing the current element finder and the finder of descendant.
-
Hans Muller authored
-
Jason Simmons authored
-
Chris Bracken authored
-
Chris Bracken authored
* Support thinning iOS frameworks to supported architectures When building against frameworks that are distributed as multi-architecture fat binaries, we want to strip the frameworks we distribute down to only the architectures specified in $ARCHS. This patch adds: * The ability to specify commands to xcode_backend.sh (if none is specified, run BuildApp for backward compatibility). * A 'thin' command that invokes lipo to thin down the distributed as described above. * Add framework thinning step to iOS build Invokes xcode_backend.sh thin on the build application. * Limit architectures to arm64 in Xcode template Flutter does not yet support armv7 iOS devices. Limit the $ARCHS build variable to arm64 until then.
-
Phil Quitslund authored
* has all the cherry-picks fixing known issues merged.
-
Michael Goderbauer authored
-
Devon Carew authored
-
Adam Barth authored
Also, move the creation of the ScrollPosition to ScrollController. Finally, remove TestScrollable in favor of CustomScrollView, which is the production version of this widget.
-
Chris Bracken authored
-
Adam Barth authored
If you pass a ScrollController to a Scrollable2, you can use the controller to read and write the scroll offset without having to find the Scrollable2State object.
-
Michael Goderbauer authored
Reason: https://github.com/flutter/flutter/issues/4273
-
Ian Hickson authored
-
Adam Barth authored
In particular, we now use ListView in the about dialog.
-
Michael Goderbauer authored
Required to run tests on Windows bots.
-
- 06 Feb, 2017 8 commits
-
-
Adam Barth authored
These arguments are actually required because we assert that they're not null.
-
Ian Hickson authored
-
Adam Barth authored
These widget don't have any clients anymore. Consider using GridView instead.
-
Ian Hickson authored
-
Jacob Richman authored
* Small Flutter strong mode cleanup fixes. These are cases where strong mode down cast composite errors generally indicated cases that would performance or correctness issues if Flutter code was run in a strong mode VM. * Fix Command API so that it is always in terms of Map<String,String>. * Fix typedef
-
Michael Goderbauer authored
-
Adam Barth authored
After this patch, the old grid code is not used in the framework.
-
Adam Barth authored
This patch uses sliver-based two more gallery demos, the stocks example, in the date picker, and in markdown.
-
- 05 Feb, 2017 1 commit
-
-
Adam Barth authored
This patch converts the Shrine home page to using a sliver-based grid. This required using a CustomScrollView to mix the block at the top with the grid below.
-
- 04 Feb, 2017 11 commits
-
-
Adam Barth authored
We now create a GridLayout object that memoizes the layout information for a given SliverConstraints. This approach is both more efficient (because the delegate no longer needs to re-solve its layout for each child) and allows for more code sharing between delegates. The SliverGridRegularTileLayout will also be useful for the date picker. Also, document the grid delegates.
-
Adam Barth authored
This patch moves the resonsibility for wrapping repaint boundaries around children to SliverChildDelegate, which means delegates can choose whether or no to use repaint boundaries. Also introduce SliverChildBuilderDelegate to make it easier to use the builder pattern with sliver lists. This functionality will be used by date picker, which wants to use a SliverGrid but doesn't need a repaint boundary around every day in a month grid.
-
Adam Barth authored
Someone on stack overflow was mutating the list of recipes and getting confused about why the UI didn't redraw. Making kPestoRecipes a constant might help avoid that confusion.
-
weisong0 authored
* allow mulitple observers for Navigator and MaterialApp * add test for the navigator observers * fix style * add test for adding/removing a navigator observer
-
Adam Barth authored
Also, use CustomScrollView in Shrine and fix a bug with one-line grids not painting properly due to their reporiting zero paintExtent.
-
Adam Barth authored
This quantity is actually the layoutOffset of the child, not its scroll offset.
-
Adam Barth authored
This widget has no clients. Please use GridView.extent instead.
-
Chris Bracken authored
-
Chris Bracken authored
If ensureDirectoryExists fails -- e.g. because a file file of the same name as the directory to be created exists, ensure that we exit cleanly with a useful error message.
-
Ian Hickson authored
-
Chris Bracken authored
Allows for better testing of functions that throw ToolExit to bail out.
-