- 27 Oct, 2015 10 commits
-
-
Viktor Lidholt authored
-
Adam Barth authored
Add CustomOneChildLayout
-
Adam Barth authored
Make TapTracker and TapGesture private classes
-
Adam Barth authored
A CustomOneChildLayout is a widget that lets you perform a custom layout in the simplified setting of sizing and positioning a single child.
-
Adam Barth authored
Previous these callbacks were leaking the implementation detail that they were triggered by taps. In a later patch, we're going to add a parameter to GestureTapCallback that these callbacks won't have. Related to #1807
-
Adam Barth authored
We don't want to expose these from the gesture package. This patch moves DoubleTapGestureRecognizer into tap.dart so we can make TapTracker and TapGesture private to that file.
-
Ian Hickson authored
Use the presence of handler to determine 'enabled'
-
Adam Barth authored
Right-aligned text paints offscreen sometimes
-
Hixie authored
Instread of an explicit 'enabled' bool, this uses the presence of the event handler to determine if a widget is enabled or not. This means that if you've not passed a handler, your widget will be disabled, which makes sense, since it wouldn't work anyway. Adds this feature to checkbox, and ports raised button, flat button, and radio buttons to this new model. Adds a checkbox to card_collection that can be disabled. Hide a (basically bogus) hint from the (soon to be disabled) strong hint mode in the analyzer that this reveals.
-
Hixie authored
-
- 26 Oct, 2015 30 commits
-
-
Viktor Lidholt authored
-
Viktor Lidholt authored
-
Viktor Lidholt authored
-
Viktor Lidholt authored
sprite nodes now caches inverse transforms
-
Viktor Lidholt authored
-
Adam Barth authored
We were assuming that the text extended from 0.0 to its max content width. That's not correct for right-aligned text. Instead, we need to layout the text again at the width we want it to occupy.
-
krisgiesing authored
Handle mouseover events in pointer event conversion
-
Kris Giesing authored
Fixes #1806
-
Hixie authored
Also: - give card_collection an option to turn on or off the edit widgets - give card_collection an option to control text alignment (when not editing) - give card_collection a "dump" option to aid debugging - make the gesture detector report which gestures it is listening to
-
Viktor Lidholt authored
-
krisgiesing authored
Restore previous tap behaviors: no timeout, one pointer
-
Adam Barth authored
Be explicit about whether text styles inherit
-
Kris Giesing authored
Don't use a timeout to cancel tap tracking. Track only one primary pointer and ignore non-primary pointers. Update tests to reflect desired behaviors. Fixes #1779, #1780, #1781.
-
Viktor Lidholt authored
Adds motors to revolute joints and prismatic joints
-
Adam Barth authored
Now TextStyle has a boolean "inherit" value, which controls whether null values should use should inherit from the current default text style or whether they should use their initial values.
-
Viktor Lidholt authored
-
Viktor Lidholt authored
-
Jason Simmons authored
Remove an unused variable from input_test
-
Jason Simmons authored
-
Hixie authored
This concludes the fn3 port!
-
Jason Simmons authored
In the stock list, filter out any symbols that have not yet been fetched
-
Ian Hickson authored
Fix Stocks search mode back button.
-
Ian Hickson authored
debugPaintPointersEnabled mode
-
Ian Hickson authored
trivial cleanup in gesture code
-
Ian Hickson authored
better feedback for null child to a Block or Column
-
Ian Hickson authored
Radio<T> and ValueChanged<T>
-
Matt Perry authored
-
Matt Perry authored
This changes flutter's updater package to depend on and use the new flx package. I also did a little cleanup of the Bundle interface.
-
Jason Simmons authored
If you load the example and immediately switch to the Portfolio tab, you may see exceptions due to symbols that are in the portfolio list but whose data is not yet present in the stocks map
-
Hixie authored
Make Radio widgets take a type that describes the type of their value, so that you can catch when you use the wrong value. Standardise on ValueChanged<Foo> instead of having a FooValueChanged for every value of Foo.
-