- 26 Feb, 2016 1 commit
-
-
Hans Muller authored
-
- 25 Feb, 2016 39 commits
-
-
Ian Hickson authored
SizeObserver crusade: Dismissable
-
Chinmay Garde authored
Update engine revision
-
Eric Seidel authored
Remove examples/fitness
-
Eric Seidel authored
We originally wrote examples/fitness to be an app which all members of the Flutter team could carry on their phones and use every day. It served us well for testing of Text input, Keyboards and writing/reading JSON. It's never actually become a real carry app, so lets just let it go for now. @abarth @collinjackson
-
Phil Quitslund authored
Ignore `flutter analyze` errors via analysis options.
-
Hixie authored
Refactor Dismissable to not need a SizeObserver and to generally tighten up the code a bit.
-
https://github.com/flutter/flutterpq authored
# Conflicts: # packages/flutter_tools/lib/src/commands/analyze.dart
-
pq authored
Migrates error suppression from regexps to analysis options. * Ignore TODOs. * Ignore strong mode field and method overrides (see `InvalidFieldOverride` and `InvalidMethodOverride` in `strong/info.dart`. * Remove stale regexp to capture refs to dead `dart:ui_internals` URI. * Remove stale regexp to capture dead strong mode "will need runtime check to cast to type" error (https://github.com/dart-lang/sdk/issues/24542). 5 regexp downs, another small handful (~4) to go! :)
-
Jason Simmons authored
Do not create a font manifest if the app has no flutter.yaml
-
pq authored
Migrates error suppression from regexps to analysis options. * Ignore TODOs. * Ignore strong mode field and method overrides (see `InvalidFieldOverride` and `InvalidMethodOverride` in `strong/info.dart`. * Remove stale regexp to capture refs to dead `dart:ui_internals` URI. * Remove stale regexp to capture dead strong mode "will need runtime check to cast to type" error (https://github.com/dart-lang/sdk/issues/24542). 5 regexp downs, another small handful (~4) to go! :)
-
Chinmay Garde authored
Pulls in the following changed required for iOS: * Application identifiers are legal UTIs. * Dart precompiled dylib is not a candidate for dead code stripping. * Account for relative paths on readlink in SnapshotterInvoke
-
Chinmay Garde authored
Re-run `flutter create` on examples to fill in icons and other assets
-
Chinmay Garde authored
-
Jason Simmons authored
-
Matt Perry authored
Use pointycastle as crypto library. cipher is deprecated.
-
Matt Perry authored
-
Devon Carew authored
Update android_workflow.dart
-
Devon Carew authored
-
Ian Hickson authored
SizeObserver crusade: ScrollableViewport and tabs
-
Hixie authored
Also: - add operator==/hashCode/toString to ViewportDimensions - add toString to BindingBase - add toString and debugFillDescription to ScrollBehavior - fix a bug in the RawGestureDetectorState's replaceGestureRecognizers - rename MixedViewport's onExtentsUpdate to onExtentChanged - replace ExtentsUpdateCallback with ValueChanged<double> - remove a microtask for dispatching scroll start, since it did not appear to have any purpose - added dartdocs to Instrumentation until I understood it - made all event dispatch in Instrumentation drain microtasks
-
Andrew Wilson authored
Add flipped curved
-
Andrew Wilson authored
-
-
Devon Carew authored
add an android icon to the starter app
-
Devon Carew authored
-
Devon Carew authored
fix a regression in the android manifest
-
Devon Carew authored
-
Devon Carew authored
-
Adam Barth authored
Remove PointerRouter and GestureArena arguments
-
Adam Barth authored
There's no reason to make clients supply a PointerRounter and a GestureArena when constructing gesture recognizers. These objects are statics and the gesture recognizers can just grab them directly. Also, remove the callback constructor arguments. Almost no code used them. Instead, people seem to prefer using the `..` operator to set callbacks on the recognizers. Removing the arguments removes a bunch of boilerplate.
-
Devon Carew authored
run flutter doctor as part of create
-
Devon Carew authored
-
Adam Barth authored
Add the ability to recognize gestures on text spans
-
Ian Hickson authored
Fix move() to call markNeedsLayout().
-
Hixie authored
Otherwise, changing the order of your children (e.g. shuffling a list of children) will have no visible effect.
-
Adam Barth authored
Currently the interface for recognizing gestures on text spans is pretty ugly, but hopefully we can improve it with time. Fixes #156
-
Adam Barth authored
Fix TextSpan's operator==
-
Adam Barth authored
We forgot to compare the lengths of the lists.
-
Ian Hickson authored
Just-in-time mutations of GestureDetector
-