- 18 Dec, 2015 6 commits
-
-
krisgiesing authored
Remove redundant typedef
-
Kris Giesing authored
-
Eric Seidel authored
Generate docs for more of our packages
-
Eric Seidel authored
Forgot to add the file
-
Eric Seidel authored
This is a png version of the flutter logo generated on my desktop from the SVG in the flutter.io repository. TBR @hansmuller
-
Eric Seidel authored
I also stopped pushing docs to domokit.org I presume we were doing that to not break old links. @abarth @sethladd
-
- 17 Dec, 2015 10 commits
-
-
Chinmay Garde authored
Fix travis builds and linter warnings
-
Chinmay Garde authored
-
Chinmay Garde authored
Add a 'flutter ios --init' command that fetches the Xcode project from the cloud and configures it for a given flutter project
-
Chinmay Garde authored
Add a 'flutter ios --init' command that fetches the Xcode project from the cloud and configures it for a given flutter project
-
Eric Seidel authored
Add an icon to the Flutter Material Gallery
-
Eric Seidel authored
@abarth @hixie
-
Eric Seidel authored
Add an icon for the Stocks app.
-
Eric Seidel authored
Not great. Better than nothing. @hixie
-
Eric Seidel authored
Fix `flutter apk` to work with resources
-
Eric Seidel authored
I screwed up my last change, turns out the package command is sensitive about having all of its flags before args. Also made it possible to control the resources directory from the command line per the review comments in the previous change. @jason-simmons
-
- 16 Dec, 2015 24 commits
-
-
Hans Muller authored
Correct the TabBarView swipe selection change animation The TabBarSelection change animation needs to start where the fling's drag gesture ended rather than from zero. The intial vlaue of progress for the TabBarSelection's performance is now converted from the range used during an interactive drag, to the range used when animating from the previously selected tab to the new one. TabBarSelection now requires a maxIndex parameter.
-
Eric Seidel authored
Add support for bundling apk resources
-
Eric Seidel authored
I also made it so that `flutter apk -v` showed what commands it was running by moving off of a custom _run function onto the base/process.dart runChecked shared by other commands. @jason-simmons
-
Hans Muller authored
The TabBarSelection change animation needs to start where the fling's drag gesture ended rather than from zero. The intial vlaue of progress for the TabBarSelection's performance is now converted from the range used during an interactive drag, to the range used when animating from the previously selected tab to the new one. TabBarSelection now requires a maxIndex parameter.
-
Seth Ladd authored
analytics and a homepage for docs.flutter.io
-
Ian Hickson authored
Make Navigator.canPop handle the no-navigator case
-
Ian Hickson authored
Close some sentences. (rendering dartdocs)
-
Hixie authored
Scaffold calls this to see if it should show a back arrow when there's no drawer. With this change, everything continues to work. Fixes styled_text and probably others.
-
Seth Ladd authored
-
Hixie authored
-
Jason Simmons authored
Pause and resume of all tracks in SoundTrackPlayer
-
Jason Simmons authored
Apply looping and volume in the SoundTrackPlayer
-
Jason Simmons authored
-
Jason Simmons authored
-
Jason Simmons authored
Support application lifecycle state change events in the framework
-
Jason Simmons authored
-
Ian Hickson authored
Move flutter tests from packages/unit to packages/flutter/test
-
Ian Hickson authored
Catch exceptions in pointer handling
-
Ian Hickson authored
Be clearer about whether renderView can be null.
-
Ian Hickson authored
-
Ian Hickson authored
Aggressively try to catch misuse of DropDownButton
-
Ian Hickson authored
Canceling a dropdown menu selects null value
-
Hixie authored
Previously we didn't distinguish between canceling the menu (which popped the route with no return value, i.e. null) and explicitly selecting an item whose value is null (pop with value null). Both fired onChange(null). Now we box the return value so we can distinguish the two cases. I would have preferred to just disallow "null" as a value but it turns out people like being able to use "null" as a value for much the same reason we do, and it seems best for us to pay the complexity cost of boxing than having everyone else do it. :-)
-
Hans Muller authored
Added BottomSheet demos to the Material Gallery
-