- 29 Sep, 2021 2 commits
-
-
nt4f04uNd authored
-
Greg Spencer authored
This reverts commit ab51a026 and fixes the test that broke the first time it landed.
-
- 28 Sep, 2021 7 commits
-
-
LongCatIsLooong authored
Reland "Make FilteringTextInputFormatter's filtering Selection/Composing Region agnostic" #89327 (#90211)
-
Greg Spencer authored
This reverts commit 885b2f56 to green up the build. Submitting on red to fix the build.
-
Greg Spencer authored
This adjusts the size of the delete button so that it takes up just slightly less than half of the chip, so that legacy tests that tap on the center of the chip still hit the chip, and not the delete button. A follow-on change for #90531
-
Greg Spencer authored
In the process of fixing #90044, I realized that it's also possible for hovered tooltips to show more than one at a time if the widgets are nested, so this PR is a fix that prevents more than one tooltip from showing at a time with hovered tooltips.
-
yk3372 authored
-
Greg Spencer authored
This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework. The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead. The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
-
Hans Muller authored
-
- 27 Sep, 2021 4 commits
-
-
Callum Moffat authored
-
nt4f04uNd authored
-
Aayan authored
-
David Iglesias authored
-
- 26 Sep, 2021 1 commit
-
-
MH Johnson authored
-
- 24 Sep, 2021 3 commits
-
-
Greg Spencer authored
This fixes #90044 by limiting the effect of useDeleteButtonTooltip to the delete button, instead of both the main tooltip and the delete button. This means that when useDeleteButtonTooltip was false, it used to not display the main tooltip either, but now it does.
-
Kate Lovett authored
-
Greg Spencer authored
-
- 23 Sep, 2021 2 commits
-
-
Kate Lovett authored
-
HeavenOSK authored
Small change to the calculation of the page to move to when flinging on a TabBarView
-
- 22 Sep, 2021 5 commits
-
-
Mouad Debbar authored
-
Casey Rogers authored
-
nt4f04uNd authored
-
Gary Qian authored
-
Justin McCandless authored
Revert "Issue 88543: TextField labelText doesn't get hintTextStyle when labelTextStyle is non-null Fixed (#89386)" (#90406)
-
- 21 Sep, 2021 1 commit
-
-
Bonsai11 authored
* Adding onLongPress for DataRow Useful to be able to e.g. start a selection mode of rows or show a drop down menu. * Test for onLongPress * Changed parameter
-
- 20 Sep, 2021 6 commits
-
-
nt4f04uNd authored
* Fix Dismissible confirmDismiss errors * + * refactor test * fix rebase * remove new line
-
Casey Rogers authored
-
chunhtai authored
-
Kate Lovett authored
-
Pierre-Louis authored
-
Greg Spencer authored
This cleans up the dismissable_test to be less fragile, and make it harder to forget to reset things between runs. I eliminated a bunch of globals that were susceptible to being missed and passed them in to buildTest instead, and removed some values that were always the same (itemExtent).
-
- 17 Sep, 2021 5 commits
-
-
Varun Kamani authored
Issue 88543: TextField labelText doesn't get hintTextStyle when labelTextStyle is non-null Fixed (#89386) labelText now gets hintTextStyle when no labelStyle, per the docs
-
Kate Lovett authored
-
Jason Simmons authored
-
Kate Lovett authored
-
Renzo Olivares authored
* Create DeltaTextInputClient * Remove old tests as updateEditingValueWithDeltas is no longer implemented * fix analyzer * Update docs * Make example more general * Update docs * Add assert to check that TextInputClient is a DeltaTextInputClient * Update assert * More docs * update * Clean up docs * updates * Update docs * updates * Fix test * add test * updates * remove logs * fix tests * Address reviewer comments * Add text_input_utils.dart * Address reviewer comments
-
- 16 Sep, 2021 4 commits
-
-
smitsk authored
Improve the layout/sizing of InputDecorator
-
Yegor authored
-
-
Renzo Olivares authored
-