- 08 Dec, 2017 8 commits
-
-
Chris Bracken authored
Includes: flutter/engine#4427 flutter/engine#4428
-
Chris Bracken authored
Includes: flutter/engine#4422 (Dart SDK roll)
-
Michael Goderbauer authored
-
Yusuke Konishi authored
* Remove unnecessary error message * Add AUTHOR
-
Chris Bracken authored
Updates scaffold to expose bottom padding to the associated BottonNavigationBar (if present). BottomNavigationBar is now responsible for adjusting itself to account for bottom padding. This change is necessary to support the updated BottomNavigationBar layout for the iPhone X.
-
xster authored
* Remove MediaQuery padding for various PopupRoutes that don't extend to the edge of the screen * bottom sheet doesn't actually need handling. Scaffold does it already. Add test for others.
-
Chris Bracken authored
Now that keyboard height is modelled as a (bottom) view inset, migrate scaffold bottom resizing to use view insets instead of bottom padding, which, after an engine roll, will only be used for safe areas. Until the aforementioned engine roll, the keyboard height is still included in both bottom padding and view insets. As such resizeToAvoidBottomPadding still drives bottom padding removal until that roll lands. Renames _ScaffoldLayout.bottomPadding to bottomViewInset
-
Chris Bracken authored
Also adds a TODO that should have landed with flutter/flutter#13423.
-
- 07 Dec, 2017 18 commits
-
-
Jason Simmons authored
-
Chris Bracken authored
This patch contains no framework changes. This change adjusts a test bottom navigation bar height to be greater than the media bottom padding. This change is pre-factoring to clarify diffs in an upcoming change that will expose bottom padding to the bottom navigation bar in order to allow it to visually adapt its appearance in the presence of bottom padding such as thatexposed for the iPhone X home screen indicator. Since the bottom padding was previously greater than the height of the bottom navigation bar, the height of insideBottomNavigation bar was driven to 0 when padding is exposed.
-
Ian Hickson authored
This allows the scheduler library to depend on the services library and the painting library to depend on the scheduler library without the services library having to depend on the scheduler library. While I was at it I also cleaned up some of the binding logic: the licenses logic can now be overridden (and the test library does so), and the image cache can now be overridden as well.
-
Kevin Moore authored
This reverts commit 9315a79b. There is an unfortunate interaction with verifyThenRunCommand
-
Kevin Moore authored
-
Chris Bracken authored
Scaffold bottom padding now applies the maximum of window viewInsets.bottom (typically used for iOS safe areas) and padding.bottom (typically used for keyboard height).
-
Yegor authored
-
Jacob Richman authored
Make regular Alignment values look more like enumProperties while leaving more complex AlignmentDirectional values unchanged.
-
Devon Carew authored
* route device issue diagnostics to flutter doctor * review comments * review comments
-
Sarah Zakarias authored
-
Jakob Andersen authored
Add support for configuring the base storage URL for Flutter's artifacts. If FLUTTER_STORAGE_BASE_URL is set, use it instead of storage.googleapis.com. The pub server can be overridden by setting PUB_HOSTED_URL.
-
Sarah Zakarias authored
This reverts commit f40a9398.
-
Sarah Zakarias authored
-
Sarah Zakarias authored
-
Yegor authored
-
Yegor authored
-
Yegor authored
* Emulate text entry in FlutterDriver * document enterText behavior * remove the unnecessary composint TextRange
-
Chris Bracken authored
Rolls: flutter/engine#4411 flutter/engine#4416 flutter/engine#4420 flutter/engine#4421 flutter/engine#4423
-
- 06 Dec, 2017 13 commits
-
-
xster authored
* Add a cylindrical projection helper matrix * specify tangential * more doc clarifications * reshuffle arguments * more code comments * add some sanity tests * review * review 2 * added one more caveat for consideration in docs
-
Michael Goderbauer authored
This contains a breaking API change to `SelectionChangedHandler`. This is part of making text input accessible on Andriod (https://github.com/flutter/flutter/issues/12785).
-
Greg Spencer authored
-
-
Chris Bracken authored
This picks up a single commit: flutter/engine#4418, which fixes #12585.
-
Ben Konyi authored
-
Ben Konyi authored
-
Kevin Moore authored
Adds a class `PubContext` with a fixed set of allowed values Make it clear these values should not be changed casually Fixed one inconsistency already: update_packages vs update_pkgs Provide more information for verify calls Eliminate `ctx_` prefix.
-
Devon Carew authored
-
Chris Bracken authored
This adjusts the CupertinoTabBar height in the presence of bottom padding. On the iPhone X, this will increase the height to account for the home indicator widget.
-
Collin Jackson authored
-
Yegor authored
-
Collin Jackson authored
-
- 05 Dec, 2017 1 commit
-
-
Greg Spencer authored
The purpose of this PR is to make it so that when the user runs 'flutter', if they have a .pub-cache directory in their flutter root, we use that instead of the default location for the pub cache. Otherwise, it should act as before. The eventual goal is to support a pre-populated flutter .zip/.tar.gz file that has everything the developer needs in one bundle. In order for that to actually work, we need to have the pub cache be self-contained, and not in the user's home dir. Another advantage of this is that if you have multiple flutter repos that you're switching between, then the versions in the pub cache will remain static when you switch between them. This is an attempt to re-land: #13248. Includes a fix for the test that makes it work on bots in the presence of PUB_CACHE being set, and no other changes.
-