- 07 Jun, 2016 13 commits
-
-
Ian Hickson authored
I was also going to implement sorting and emptying the cart but the current data model doesn't make that easy, so I gave up on that. That's why the TODOs are moved around though.
-
Alhaad Gokhale authored
Fix adding child views to container after changes to dart bindings.
-
Alhaad Gokhale authored
@abarth
-
Todd Volkert authored
Fixes 3544
-
Adam Barth authored
We were trying to unregister the pointer route twice. Now we only unregister it once. Fixes #4341
-
Adam Barth authored
This lets you build something other than `lib/main.dart`.
-
Devon Carew authored
* refactor the --resident run option into a separate file * update daemon to run --resident apps * re-plumbing daemon start * send app logs * update tests * review changes * fix test runner * remove PackageMap.createGlobalInstance; rely on the ctor * review comments
-
Chinmay Garde authored
-
Matt Perry authored
It's no longer part of the gallery app. BUG=https://github.com/flutter/flutter/issues/4390
-
Adam Barth authored
-
Adam Barth authored
-
Adam Barth authored
This fix isn't completely statisfying because it has a scaling limit. The ideal fix would actually viewport the tiles in the grid. However, this fix is much easier at the moment. Fixes #4395
-
Adam Barth authored
Now that there's a new string_scanner in town, we're having dependency resolution conflict because of flutter_markdown's tight dependency. This patch loosens the dependency and resolves the conflict.
-
- 06 Jun, 2016 8 commits
-
-
Devon Carew authored
-
Adam Barth authored
This patch exposes a convenience function on Scrollable that helps with updating the scroll extents and ports several clients over to using it.
-
Adam Barth authored
Assigning to `size` called our intrinsic sizing functions re-entrantly, which is a destructive operation on TextPainter. Ideally we'd made that a non-destructive operation, but in the meantime we can fix the tab fading issue by grabbing the text size before assigning to `size`. Fixes #4365
-
Adam Barth authored
The `flutter.buildMode` property now controls whether to build in debug, profiling, or release.
-
Devon Carew authored
-
Phil Quitslund authored
Fix flutter analyze defaults when files are specified (#4091).
-
Adam Barth authored
Also, add more dartdoc to widgets.dart.
-
- 04 Jun, 2016 2 commits
-
-
Ian Hickson authored
Turns out we have the same demo in the "Buttons" section now. We don't need both.
-
Adam Barth authored
This patch sets a default path for Flutter.framework that's sensible based on the FLUTTER_MODE.
-
- 03 Jun, 2016 17 commits
-
-
Adam Barth authored
The hello_services example can now be built both for Android and iOS.
-
Hans Muller authored
-
Matt Perry authored
* Pesto demo for the Flutter Gallery app. * pesto.special.case
-
Chinmay Garde authored
Add a FLUTTER_MODE variable to the generated Xcconfig and fix snapshot generation on all targets. (#4362) Get rid of the DART_EXPERIMENTAL_INTERPRETER_FLAG.
-
Devon Carew authored
-
Devon Carew authored
-
pq authored
-
Adam Barth authored
This patch adds some sensible defaults to xcode_backend.sh and documents how to build hello_services for iOS using Xcode.
-
Hans Muller authored
-
Adam Barth authored
I changed the behavior late in the code review but didn't update this dartdoc.
-
pq authored
Disables current package and current directory analysis when files are specified. Fixes: https://github.com/flutter/flutter/issues/4091.
-
Phil Quitslund authored
Update Dart SDK to 1.17.0-dev.6.2.
-
Hans Muller authored
-
pq authored
Latest RC. Fixes two release blockers (https://github.com/dart-lang/sdk/issues/26558 and https://github.com/dart-lang/sdk/issues/26596); bonus points for letting us re-enable the `iterable_contains_unrelated_type` lint :).
-
Adam Barth authored
This patch starts working through the missing dartdocs in widgets.dart.
-
Adam Barth authored
Previously we supplied individual parameters to the various drag and pan callbacks. However, that approach isn't extensible because each new parameter is a breaking change to the API. This patch makes a one-time breaking change to the API to provide a "details" object that we can extend over time as we need to expose more information. The first planned extension is adding enough information to accurately produce an overscroll glow on Android.
-
Ian Hickson authored
The old code had gotten crufty with all the refactors. This simplifies it down to what it really means. Also, add a bunch of tests.
-