- 20 Dec, 2017 6 commits
-
-
Yegor authored
* support increase and decrease SemanticsActions in time picker * test roll over
-
Erik Corry authored
-
Erik Corry authored
-
Mikkel Nygaard Ravn authored
-
Michael Goderbauer authored
-
Michael Goderbauer authored
* selected ListTile is selected * review comment * analyzer fix
-
- 19 Dec, 2017 8 commits
-
-
Hans Muller authored
* Gen localization classes intead of a big map * tighten up the newlines so that std output matches file output * restore locale sorting
-
Alan Russian authored
* Change async stubbing to use thenAnswer. Mockito now prohibits calling thenReturn with Futures and Streams. dart-lang/mockito#79 * Update all Mockito deps to 3.0.0. * Revert "Update all Mockito deps to 3.0.0." This reverts commit e8ab9d37c33d3d7fe384abde64ea5b4d72623c75. I did not correctly update the mockito dep, and there's no easy way to update to 3.0 alpha right now. * Change thenAnswer((_) => to thenAnswer((invocation) => * Add Invocation type to thenAnswer lambdas
-
Ian Hickson authored
Prevent header from thinking it can wrap and then overflowing. Fix default footer string which lost its colon (localized values are fine). Make the "rows per page" drop-down include at least one value even when the table lacks many items. (Previously it would assert if your table was too short.) Make the footer scrollable. Fix some todos and improve some debug output. Tests for much of the above.
-
Yegor authored
-
Michael Goderbauer authored
* IconButton is a button, semantically * fix datepicker test
-
Hans Muller authored
-
xster authored
-
Chris Bracken authored
Applies horizontal safe area insets to the Pesto demo in the Gallery. This is to support the iPhone X sensor housing notch and other similarly creative display features when in landscape orientation.
-
- 18 Dec, 2017 8 commits
-
-
Greg Spencer authored
A modern version of 7Zip (7za.exe) is now installed on the bots, this makes use of that.
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
Chris Bracken authored
This replaces the use of ideviceinfo (whose output was then filtered for device IDs) with an invocation idevice_id -l, which returns the list directly, one per line.
-
Sarah Zakarias authored
-
Sarah Zakarias authored
-
Chris Bracken authored
This patch migrates iOS device listing from using Xcode instruments to using the libimobiledevice tools idevice_id and ideviceinfo. ideviceinfo was previously incompatible with iOS 11 physical devices; this has now been fixed. In 58fe8237 flutter_tools migrated from libimobiledevice-based device listing on iOS to using Xcode instruments to work around the lack of support for iOS 11. Using instruments entails several downsides, including a significantly higher performance hit, and leaking hung DTServiceHub processes in certain cases when a simulator is running, necessitating workarounds in which we watched for, and cleaned up leaked DTServiceHub processes. This patch returns reverts the move to instruments now that it's no longer necessary. This reverts commit 58fe8237.
-
Sarah Zakarias authored
-
- 16 Dec, 2017 6 commits
-
-
Chris Bracken authored
Applies horizontal safe area insets to the Contacts demo in the Gallery. This is to support the iPhone X sensor housing notch and other similarly creative display features when in landscape orientation.
-
xster authored
-
Chris Bracken authored
We now require Xcode 9.0, which ships with the iOS 11 SDK, for iOS builds. This change does not affect the minimum supported iOS deployment target, which remains iOS 8. The iOS 11 SDK adds support for safe area insets, which model the status bar, iPhone X home indicator, and symmetric horizontal insets to avoid the iPhone X sensor housing when in landscape mode. This re-lands flutter/flutter#13608 now that the devicelab Macs have been updated to Xcode 9.
-
Ian Hickson authored
No need to update the compositing bits all the time.
-
Chris Bracken authored
Applies any additional bottom, left, and right media padding inside the snackbar, if present. This accounts for the iPhone X home indicator widget and horizontal padding for the sensor housing notch in landscape orientation.
-
Greg Spencer authored
XZ is about 50MB smaller, and it works on both Mac and Linux.
-
- 15 Dec, 2017 12 commits
-
-
xster authored
* split doc paragraph * specify shouldRepaint argument nullability * review
-
Chris Bracken authored
Applies top, left, right media padding to avoid placing content within the safe area insets (e.g. iPhone X notch area in landscape orientation).
-
Greg Spencer authored
This is the first step in a two-step process of moving the package preparation step from a recipe in chrome_infra to a dart script in the flutter repo. This will make it easier to make changes to the process. The second step is to change the infra recipe to call this script. In addition, I added a step to the packaging process to run flutter create for each type of template so that any pub dependencies of the templates get added to the cache that gets packaged (and thus users can run flutter create --offline and have it work). Note that the actual packaging into a "tar" or "zip" file now happens here, so a developer could actually run this script on their machine to create a package.
-
Ian Hickson authored
This lets people poke at navigators without having to get their BuildContext from a build function or State first.
-
Chris Bracken authored
By default BoxScrollView (and hence ListView, which is a subclass) padding is the media padding along its scroll axis in order to avoid placing list items within areas where user interaction should be minimised -- e.g. under the status bar, or in and around the iPhone X notch in landscape mode. In cases where a list item should occupy the padding area, developers should set the ListView padding to EdgeInsets.zero so as not to pick up the default media padding. For widgets inside the drawer that should avoid safe areas, developers can add a SafeArea widget.
-
amirh authored
-
Chris Bracken authored
Our devicelab machines have not yet been upgraded to Xcode 9. Once this has been done, I'll re-land this. This reverts commit 0fac5f01.
-
Chris Bracken authored
We now require Xcode 9.0, which ships with the iOS 11 SDK, for iOS builds. This change does not affect the minimum supported iOS deployment target, which remains iOS 8. The iOS 11 SDK adds support for safe area insets, which model the status bar, iPhone X home indicator, and symmetric horizontal insets to avoid the iPhone X sensor housing when in landscape mode.
-
Chris Bracken authored
Applies media padding (e.g. iPhone X safe area insets) to the Material Design demos in the Gallery. Covers the following demos: * Buttons (via the TabbedComponentDemoScaffold change) * Cards * Expansion panels * Grid list * Icons * Images (via the TabbedComponentDemoScaffold change) * Page Selector * Progress Indicator * Scrollable tabs * Selection controls (via the TabbedComponentDemoScaffold change) * Snack bar * Tabs * Text fields * Tooltips Fixes #13594
-
Martin Kustermann authored
-
Yegor authored
* make date picker accessible * make test file lookup location-independent * address some comments * always wrap in IgnorePointer * no bitmasks for flags and actions * recommend List<*>
-
Chris Bracken authored
-