- 21 Jan, 2016 13 commits
-
-
Devon Carew authored
parse out the ios simulator device name
-
Devon Carew authored
-
Adam Barth authored
Minor animation renames
-
Adam Barth authored
These should be the last references to the old "performance" name.
-
Adam Barth authored
Some of the Animation classes that we converted from performances use the term "master" to refer to the animation upon which they're based. This patch changes them to use the term "parent", which is consistent with the rest of the animation classes.
-
Eric Seidel authored
Make `flutter start` not report erroneous failure
-
Eric Seidel authored
Was failing when starting in the iOS Simulator @chinmaygarde
-
Adam Barth authored
-
Adam Barth authored
Merge simulationStepper into AnimationController
-
Adam Barth authored
Now that we've decided that Animation<double> isn't confined to the interval 0.0 to 1.0, we can expand AnimationController to cover the use cases that used to require SimulationStepper. This patch merges SimulationStepper into AnimationController and ports the one stand-alone client of simulation stepper over to using AnimationController.
-
Hans Muller authored
Add section images to the gallery home page
-
Adam Barth authored
Move ClampedSimulation into newton
-
Devon Carew authored
refactor build command into two files
-
- 20 Jan, 2016 26 commits
-
-
Adam Barth authored
ClampedSimulation makes more sense at the newton layer because it's dealing entirely with newton concepts.
-
Devon Carew authored
-
Adam Barth authored
Port the remainder of the framework to AnimationController
-
Adam Barth authored
This patch removes Performance and AnimationValue now that we've ported the framework over to AnimationController and Tween. This patch also cleans up the names of the AnimationController classes now that they don't have to avoid conflicts with the old animation API. Specifically, I've made the following renames: * Animated -> Animation * Evaluatable -> Animatable * PerformanceStatus -> AnimationStatus This patch is just renames and moving code around. There aren't any changes in behavior.
-
Adam Barth authored
There should be no more uses of Performance or AnimatedValue in the framework or the examples.
-
Adam Barth authored
Port most of widgets to AnimationController
-
Adam Barth authored
I've left transitions and enter_exit_transition out of this patch, but I've converted the rest.
-
Hans Muller authored
-
Adam Barth authored
Finish porting material.dart to AnimationController
-
Adam Barth authored
After this patch, there aren't any direct uses of Performance in material.dart.
-
Devon Carew authored
Device notification
-
Devon Carew authored
name and grammar tweaks
-
Eric Seidel authored
Add support for running flutter tests on Chromium Infra
-
Adam Barth authored
Move Scaffold over to using AnimationController
-
Adam Barth authored
Providing a pre-built child is more efficient because we don't need to rebuild the child every tick of the animation.
-
Adam Barth authored
-
Adam Barth authored
This patch moves Navigator and related code over to using AnimationController.
-
Adam Barth authored
Also, clean up the class hierarchy for AnimationController now that we've renamed progress to value. That means everything in the hierarchy now has a value, include Watchable. This patch renames Watchable to Animated<T>, which lets us use that type almost everywhere. I've added some ducktape to modal bottom sheets to avoid having to refactor all of Navigator to use AnimationController. I'll remove the ducktape in the next patch.
-
Devon Carew authored
-
Devon Carew authored
Better failure when run from non-flutter projects
-
Devon Carew authored
-
Devon Carew authored
fix an issue where errors were printed twice
-
Hans Muller authored
Revised Material Gallery demo The demo's home page is now a grid divided into the same six sections that appear in the Material Design spec itself. Tapping on a section leads to a list of demos. Currently only the "Components" section has any demos. All of the demos are now self-contained apps with their own Scaffold and etc.
-
Hans Muller authored
-
Adam Barth authored
Port examples to the new animation API
-
Adam Barth authored
These now use Animation and AnimationController instead of PerformanceView and Performance.
-
- 19 Jan, 2016 1 commit
-
-
Chinmay Garde authored
First take on `flutter start` for iOS devices
-