- 26 Jan, 2016 6 commits
-
-
Chinmay Garde authored
-
Adam Barth authored
Add RawKeyboardListener
-
Adam Barth authored
RawKeyboardListener makes it easier to listen for raw keyboard events. Fixes #787
-
Adam Barth authored
flutter start shouldn't log xcodebuild output
-
Adam Barth authored
Hide EditableString implementation details
-
Adam Barth authored
Previously, EditableString had many public members because it needed to implement the KeyboardClient interface. However, that's confusing because these methods cannot be called directly. Now EditableString holds a private implementation of the KeyboardClient, which hides the implementation details. Fixes #208 Fixes #209
-
- 25 Jan, 2016 12 commits
-
-
Adam Barth authored
Xcodebuild produces a lot of output that isn't relevant to developers. We should hide it by default.
-
Devon Carew authored
improve device notification support
-
Devon Carew authored
-
Adam Barth authored
Keyboard service doesn't commit the last edit when it's dismissed
-
Adam Barth authored
We were getting the proper values, but we thought we were still composing, so the text was still underlined. Fixes #115
-
Matt Perry authored
Support local paths to third-party jars in flutter apk.
-
Adam Barth authored
Improve error messages for iOS workflow
-
Collin Jackson authored
This reverts commit b240cda8.
-
Adam Barth authored
We now check that you've got an "ios" directory and that you have the proper version of Xcode.
-
Matt Perry authored
Also improve the error message a bit if a download fails.
-
Seth Ladd authored
get a bug fix for multi-line command descriptions
-
Seth Ladd authored
-
- 24 Jan, 2016 8 commits
-
-
Ian Hickson authored
_getPadding was ignoring its argument
-
Ian Hickson authored
-
Ian Hickson authored
Reimplement Inherited.notifyDescendants to use a registration list
-
Ian Hickson authored
-
Ian Hickson authored
-
Ian Hickson authored
...instead of a deep walk.
-
Adam Barth authored
Add material design features to Input
-
Adam Barth authored
That way folks can customize it if they want (and it makes the code a bit more self-documenting).
-
- 23 Jan, 2016 5 commits
-
-
Adam Barth authored
Now the label animates from its inline position to above the text and the focus highlight grows into place.
-
Adam Barth authored
RawEditableLine is now responsible for the scrolling behavior, which removes the need for callbacks between RawEditableLine and Input. It also fixes a bug whereby the whole Input widget (including its icon) would scroll when the text got long.
-
Adam Barth authored
Properly support labels, hints, icons, and custom typography.
-
Collin Jackson authored
This reverts commit ab300634.
-
Collin Jackson authored
-
- 22 Jan, 2016 9 commits
-
-
Eric Seidel authored
Make `flutter list` not crash on linux.
-
Eric Seidel authored
Turns out linux does have an ideviceinstaller package however it doesn't contain idevice_id or any of the other tools we use. Furthermore we don't have xcrun or the rest of xcode on linux so we can't manipulate simulators either. No sense in printing out a warning that ios isn't supported every time on linux, so I wrapped that block in osx only. @chinmaygarde @devoncarew
-
Adam Barth authored
Add the ability to lose focus
-
Adam Barth authored
Fixes #1308
-
Adam Barth authored
Input widget shrinks when typing a space
-
Adam Barth authored
This patch restructures how we size the editing region of the Input widget. Now RenderEditableLine understands that it's a single-line editing widget and sizes itself correctly.
-
Adam Barth authored
Simplify colorizing icons
-
Adam Barth authored
Now you can colorize an Icon simply by proving a Color for the Icon.
-
Devon Carew authored
Refactor device.dart
-