- 18 Apr, 2017 13 commits
-
-
Hans Muller authored
-
Devon Carew authored
-
Mikkel Nygaard Ravn authored
-
John McCutchan authored
- [x] Resume the isolate before performing a hot restart. Fixes #8923
-
Hans Muller authored
-
Mikkel Nygaard Ravn authored
-
Ian Hickson authored
-
Michael Goderbauer authored
-
xster authored
* Make Cupertino page transition elevation animated too * Rename and change physical model to a decorated box * Tests * Add a comment * still need to handle null in the tween somewhere * nits * Tweens evaluate to the actual begin/end instances. Let them be non-null * Rename no decoration to none
-
Michael Thomsen authored
-
Mikkel Nygaard Ravn authored
-
Sarah Zakarias authored
-
Sarah Zakarias authored
-
- 17 Apr, 2017 10 commits
-
-
Hans Muller authored
-
John McCutchan authored
- [x] Catch SocketErrors and handle them gracefully. - [x] Print 'Lost connection to device' when the service protocol connection is severed unexpectedly. - [x] Print 'Application finished' when the application exits otherwise. After this PR: ``` Launching lib/main.dart on Nexus 7 in debug mode... Running 'gradle assembleDebug'... 1.2s Built build/app/outputs/apk/app-debug.apk (21.7MB). Syncing files to device... Application finished. DevFS sync failed. Lost connection to device: SocketException: OS Error: Connection refused, errno = 111, address = 127.0.0.1, port = 53062 Could not perform initial file synchronization. ``` Fixes #6705
-
Zachary Anderson authored
-
Phil Quitslund authored
Follow-up from #9422
-
Phil Quitslund authored
Fixes: https://github.com/flutter/flutter-intellij/issues/914
-
John McCutchan authored
- [x] Skip scanning the file system if we already have the Dart dependency set. Fixes #9376 ``` Performing hot reload... Reloaded 1 of 418 libraries in 888ms. Performing hot reload... Reloaded 1 of 418 libraries in 871ms. ** UNTAR dragontail under project root ** Performing hot reload... Reloaded 0 of 418 libraries in 443ms. ** UNTAR dragontail under lib/ ** Performing hot reload... Reloaded 0 of 418 libraries in 385ms. ```
-
John McCutchan authored
The first hot reload does a bunch of work that we used to hide behind the loader screen. This PR changes the messsage printed to the user on the first reload from: 'Performing hot reload...' to: 'Initializing hot reload...' Subsequent reloads say 'Performing hot reload...'
-
Hans Muller authored
-
Chris Bracken authored
Also switches to single quotes for consistency with surrounding code.
-
Dwayne Slater authored
-
- 16 Apr, 2017 1 commit
-
-
Brian Slesinsky authored
When invoked from the command line, relative paths aren't typically used, but they are when invoked from within IDEA and prevents IDEA from reading the files. Also, remove flutterPackagesDirectory since it's not used
-
- 15 Apr, 2017 4 commits
-
-
Zachary Anderson authored
-
Brian Slesinsky authored
IDEA gets confused unless the filename matches the project library name, including getting the case right.
-
Ian Hickson authored
With this patch, you can do: ```dart Future<Null> foo() async { try { await controller.forward().orCancel; await controller.reverse().orCancel; await controller.forward().orCancel; } on TickerCanceled { // did not complete } } ``` ...in a State's async method, and so long as you dispose of the controller properly in your dispose, you'll have a nice way of doing animations in sequence without leaking the controller. try/finally works as well, if you need to allocate resources and discard them when canceled. Simultaneously, you can do: ```dart Future<Null> foo() async { await controller.forward().orCancel; await controller.reverse().orCancel; await controller.forward().orCancel; } ``` ...and have the same effect, where the method will just silently hang (and get GC'ed) if the widget is disposed, without leaking anything, if you don't need to catch the controller being killed. And all this, without spurious errors for uncaught exceptions on controllers.
-
Yegor authored
-
- 14 Apr, 2017 10 commits
-
-
Hans Muller authored
-
Hans Muller authored
-
Zachary Anderson authored
-
Adam Barth authored
There are more places we can use this annotation, but this patch just gets us started.
-
Jason Simmons authored
-
Brian Slesinsky authored
Generates an android.iml file and a package-level library for flutter.jar. Does not set up an Android SDK in IDEA; this isn't possible with a template-based approach. But IDEA shows a clear warning, so the user can fix this by setting the SDK. (When creating a Flutter project from within IDEA, we can fix this up afterwards in the plugin.)
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/9258
-
Devon Carew authored
-
Devon Carew authored
* update the font used for docs.flutter.io * update to use the flutter primary color * update the header background color
-
Phil Quitslund authored
Brings us inline with the latest internal push.
-
- 13 Apr, 2017 2 commits
-
-
Hans Muller authored
* Scaffold appBar is-a PreferredSizeWidget, etc * Updated * Updated per review feedback
-
Ian Hickson authored
-