- 07 Nov, 2015 10 commits
-
-
Adam Barth authored
Update pubspecs and enable testing
-
Adam Barth authored
-
Adam Barth authored
This script runs the Flutter unit tests. By default, the script assumes you have compiled a SkyShell in an "engine/src" that's a peer to the "flutter" directory.
-
Adam Barth authored
Using local paths ensures that each package sees each other package at HEAD.
-
Adam Barth authored
-
Adam Barth authored
add a flutter.yaml file to the init template
-
Devon Carew authored
-
Adam Barth authored
Add flutter.yaml for address_book example
-
Adam Barth authored
Remove the --http option
-
Adam Barth authored
-
- 06 Nov, 2015 20 commits
-
-
Adam Barth authored
-
Adam Barth authored
-
Adam Barth authored
-
Adam Barth authored
-
Adam Barth authored
Don't crash if no widthFactor is set in an unbounded context
-
Adam Barth authored
We throw an exception if you tap the screen during load
-
Adam Barth authored
-
Adam Barth authored
Inside runApp, we were building the render tree for the app, but we weren't calling layout, which meant we were running a hit test on a dirty tree. Now hitTest specifically asserts that the tree is clean and we synchronously call layout for your app during runApp. Fixes #1960
-
Adam Barth authored
Heroes don't reverse any more
-
Adam Barth authored
We need to use the performance for the "from" route when going backwards. Also, fix a bug in the HeroParty where it would call the quest finished callback multiple times. Fixes #1958
-
Hans Muller authored
Adds showBottomSheet(), AlignTransition
-
Hans Muller authored
-
Jason Simmons authored
Add a flag that selects which Android device ID is the target for Flu…
-
Adam Barth authored
Remove scaffolding for Navigator1 to Navigator2 transition
-
Ian Hickson authored
Better asserts for MaterialApp and Navigator
-
Adam Barth authored
These types belong at the MaterialApp level. Fixes #1969
-
Adam Barth authored
Teach Block about padding.
-
Adam Barth authored
This patch paves the path for refactoring the Drawer into the Scaffold to support edge swipes and peeks.
-
Hixie authored
It's common to want a scrolling viewport but with padding around the contents. Teaching Block about this makes the places that do this substantially simpler and further buries ScrollableViewport and BlockBody (they're now only used in scrollable.dart).
-
Hans Muller authored
-
- 05 Nov, 2015 10 commits
-
-
Hixie authored
...and clean them up so it's easier to understand them.
-
Jason Simmons authored
-
Kris Giesing authored
-
Kris Giesing authored
-
Hixie authored
Draggable is now itself a gesture arena member. This means it won't conflict with other gesture recognisers in the same path. This also allows variants of Draggable that are triggered by other gestures. Also, some cleanup of DoubleTapGestureRecognizer, GestureDetector, and PrimaryPointerGestureRecognizer. Also, make MultiTapGestureRecognizer support a timeout for longpress. Also, make Draggable data be typed. Also, hide warnings about constructor warnings for now. Analyzer doesn't support them yet. (Have to do this on a per-line basis) Directions for future research: - animating the avatar (enter/exit transitions) - interaction with the navigator (canceling a drag on page navigation, etc) - double-tap draggable
-
Hixie authored
- runApp(new MaterialApp()) was crashing long after the constructor. Now it asserts in a more useful location. - remove the default name for NamedRouteSettings. It was unused anyway.
-
Matt Perry authored
Fix updater. It was looking for the wrong files.
-
Matt Perry authored
-
Adam Barth authored
A translucent gesture detector still listens for gestures but also lets the content visually behind the detector receive events.
-
Adam Barth authored
-