4991 Commits

Author SHA1 Message Date
Adam Barth
07f60e67e7 Merge pull request #2955 from abarth/flutter_upgrade
`flutter upgrade` needed twice if sky_services dependencies change
2016-03-28 12:25:13 -07:00
Adam Barth
3824e88df7 flutter upgrade needed twice if sky_services dependencies change
Now we run `flutter --version` to update our local cache of packages before
running `pub upgrade`, which reads from that cache.

Fixes #2953
2016-03-28 12:16:19 -07:00
Adam Barth
39640bd0ef ChildView throws exceptions outside MojoShell
We're missing a null check.

Fixes #2949
2016-03-28 12:12:28 -07:00
Matt Perry
641604ad94 Merge pull request #2850 from mpcomplete/form
Added a Form widget to manage multiple Input widgets.
2016-03-28 13:55:08 -04:00
Jason Simmons
cc9b140db9 Merge pull request #2902 from jason-simmons/roboto_manifest
Add all variants of the Roboto font as assets to Material Design apps
2016-03-28 10:16:36 -07:00
Jason Simmons
d4bc6d5e0c Add all variants of the Roboto font as assets to Material Design apps 2016-03-28 09:53:16 -07:00
Ian Hickson
b070be2279 Merge pull request #2936 from Hixie/typos
Improve _AnimatedEvaluation.toString
2016-03-27 15:42:32 -07:00
Devon Carew
bca4b742e2 Merge pull request #2939 from devoncarew/test_0_12_13
upgrade to test 0.12.13
2016-03-27 15:00:22 -07:00
Devon Carew
7b694ddd42 upgrade to test 0.12.13 2016-03-27 13:36:01 -07:00
Adam Barth
0eab5e6325 Merge pull request #2937 from abarth/update_dart_sdk
Update to Dart SDK 1.15.0
2016-03-27 09:08:43 -07:00
Adam Barth
ad7af1043a Update to Dart SDK 1.15.0 2016-03-27 08:51:42 -07:00
Ian Hickson
f7dac6169a Improve _AnimatedEvaluation.toString
...and fix a typo in a setState assert message.
2016-03-27 00:52:40 -07:00
Ian Hickson
7dc5d5d881 Merge pull request #2934 from Hixie/toStringAnimation
toStrings for Animations and Animatables
2016-03-26 23:26:52 -07:00
Ian Hickson
044ecf5410 toStrings for Animations and Animatables 2016-03-26 23:09:32 -07:00
Ian Hickson
2e5ae373c7 Merge pull request #2917 from Hixie/table
RenderTable
2016-03-26 21:46:16 -07:00
Adam Barth
b9c20b142d Merge pull request #2933 from abarth/update_engine
Update engine
2016-03-26 18:55:12 -07:00
Adam Barth
e394aff958 Update engine 2016-03-26 18:39:55 -07:00
Adam Barth
b906d65e00 Merge pull request #2931 from abarth/key_demo
Add a Key to FlutterDemo widget
2016-03-26 16:27:19 -07:00
Adam Barth
2a0f691c9f Add a Key to FlutterDemo widget
It's a good practice to let clients supply a key for every widget.

Fixes #2910
2016-03-26 14:00:25 -07:00
Devon Carew
b006ca556d Merge pull request #2928 from flutter/devoncarew-patch-2-1
Update ISSUE_TEMPLATE.md
2016-03-26 11:05:08 -07:00
Devon Carew
1c474c6eee Merge pull request #2920 from devoncarew/screenshot
add a screenshot command
2016-03-26 11:04:57 -07:00
Adam Barth
46aabc264c Merge pull request #2929 from abarth/fix_travis
Fix Travis
2016-03-26 00:41:50 -07:00
Adam Barth
7988099162 Fix Travis
The collections package changed to add some stricter type annotations.
We now pass those type annoations. I also sent
https://github.com/dart-lang/collection/pull/26 to make the type
annotations match what they were previously.
2016-03-26 00:27:03 -07:00
Ian Hickson
c53f18bfee Update print.dart 2016-03-25 23:46:45 -07:00
Devon Carew
15b9e1ddb0 add a screenshot command 2016-03-25 22:01:32 -07:00
Devon Carew
d9cf35da81 Update ISSUE_TEMPLATE.md 2016-03-25 20:17:22 -07:00
Hixie
6af9e6c96b RenderTable 2016-03-25 18:40:18 -07:00
Chinmay Garde
8cbeb2e983 Merge pull request #2916 from chinmaygarde/master
Add: flutter build ios [--[no-]simulator]
2016-03-25 15:56:51 -07:00
Chinmay Garde
66e1006193 Xcodebuild takes an extra parameter for the build directory. 2016-03-25 15:36:45 -07:00
Matt Perry
a7b28a3ede Added a Form widget to manage multiple Input widgets. 2016-03-25 17:55:38 -04:00
Viktor Lidholt
9802ee1865 Merge pull request #2906 from vlidholt/master
First pass at new Flutter gallery front page
2016-03-25 14:45:00 -07:00
Andrew Wilson
3a84cef248 Merge pull request #2907 from apwilson/velocity_drop
Add a callback when a Draggable is dropped without being accepted.
2016-03-25 14:28:14 -07:00
Andrew Wilson
f90ccf4825 Add a callabck when a Draggable is dropped without being accepted. 2016-03-25 14:18:24 -07:00
Chinmay Garde
3f9dcfe144 Add: flutter build ios [--[no-]simulator]
This allows the user to build an iOS application bundle from the command line even if no device is attached to the workstation.
2016-03-25 14:17:55 -07:00
Chinmay Garde
ef8d51bc4e Merge pull request #2913 from chinmaygarde/master
Bump engine revision to pick up iOS fixes.
2016-03-25 14:16:13 -07:00
Viktor Lidholt
d563f50822 First pass at new Flutter gallery front page 2016-03-25 14:11:01 -07:00
Adam Barth
9b582ace20 Merge pull request #2914 from abarth/app_bar_padding
Fix app bar padding without leading widget
2016-03-25 14:05:46 -07:00
Adam Barth
5c5948bb81 Fix app bar padding without leading widget
If there's no leading widget, we just want 8.0 pixels of padding instead of all
the padding to get over to the 72.0 pixel key line.

Fixes #2912
2016-03-25 13:55:10 -07:00
Adam Barth
9e6e522bb3 Merge pull request #2903 from abarth/default_media_query
Add a default MediaQuery value
2016-03-25 13:30:36 -07:00
Chinmay Garde
342bbe831d Bump engine revision to pick up iOS fixes. 2016-03-25 13:30:18 -07:00
Devon Carew
4fe1ca0783 Merge pull request #2905 from devoncarew/run_cleanup
Run cleanup
2016-03-25 13:30:18 -07:00
Devon Carew
2fc8e9a110 create a crash report 2016-03-25 13:29:15 -07:00
Ian Hickson
62757672e5 Merge pull request #2904 from Hixie/imagefit
ImageFit.fitWidth/fitHeight and minor docs fixes
2016-03-25 13:11:20 -07:00
Adam Barth
3c6d4f660e Add a default MediaQuery value
Now MediaQuery.of always returns a non-null value. By default, you get the
values associated with the current ui.Window.

Fixes #2894
2016-03-25 13:07:42 -07:00
Hixie
67769cb93b ImageFit.fitWidth/fitHeight and minor docs fixes 2016-03-25 12:31:27 -07:00
Jason Simmons
03830d5676 Merge pull request #2896 from jason-simmons/yaml_schema
Validate flutter.yaml against a JSON schema
2016-03-25 10:14:58 -07:00
Ian Hickson
47e882a5a2 Merge pull request #2878 from Hixie/border-style-none
Support hairline borders
2016-03-25 09:29:57 -07:00
Ian Hickson
a3b17838c6 Merge pull request #2892 from Hixie/fetch-error-cleanup
Clean up prints in services/*
2016-03-25 07:47:50 -07:00
Ian Hickson
da48e2a391 Clean up prints in services/*
We really shouldn't have two separate network library wrappers... I filed https://github.com/flutter/flutter/issues/2889 on that. But for now, this makes one of them have a generally better error handling story, and makes the other one only dump to the console in debug mode. It also makes both use debugPrint instead of print, and makes one use the 'mojom' prefix for mojom imports.
2016-03-24 22:41:29 -07:00
Jason Simmons
c2b4ac9c3c Validate flutter.yaml against a JSON schema 2016-03-24 17:49:23 -07:00