- 30 Sep, 2019 1 commit
-
-
Alexandre Ardhuin authored
* add missing trailing commas * add more missing trailing commas * add more and more missing trailing commas
-
- 28 Sep, 2019 1 commit
-
-
MH Johnson authored
* remove splash logic * update tests
-
- 24 Sep, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 18 Sep, 2019 2 commits
-
-
Michael Goderbauer authored
-
Justin McCandless authored
Added docs examples of getting the string from a TextField
-
- 17 Sep, 2019 3 commits
-
-
Michael Goderbauer authored
This reverts commit 6ad88bd5.
-
Michael Goderbauer authored
-
Brian Egan authored
-
- 03 Sep, 2019 1 commit
-
-
Greg Spencer authored
This changes the behavior of text fields, Material buttons, and Chips so that if they are disabled they lose focus. Before this change, it was possible to disable a control and then use focus traversal to reach it anyhow, and in the case of text fields, enter text into a disabled field. Fixes #33985
-
- 09 Aug, 2019 2 commits
-
-
Christian Mürtz authored
-
Brett Morgan authored
-
- 01 Aug, 2019 2 commits
-
-
chunhtai authored
reland Enable selection by default for password text field and expose api to turn on and off context menu options (#37324)
-
Tong Mu authored
- Splits on{Enter,Hover,Exit} from Listener to MouseRegion. Deprecated API is kept for compatibility. - Splits on{Enter,Hover,Exit} from RenderPointerListener to RenderMouseRegion.
-
- 31 Jul, 2019 1 commit
-
-
Michael Goderbauer authored
Revert "reland Enable selection by default for password text field and expose api to turn on and off context menu options (#34676) (#37183)" (#37295) This reverts commit 7eb09a84.
-
- 30 Jul, 2019 1 commit
-
- 27 Jul, 2019 1 commit
-
- 26 Jul, 2019 1 commit
-
-
chunhtai authored
Enable selection by default for password text field and expose api to turn on and off context menu options (#34676)
-
- 22 Jul, 2019 1 commit
-
-
Brian Egan authored
* Add images and update examples for top widgets: - scaffold - text field - image - text - row - column - stack
-
- 19 Jul, 2019 1 commit
-
-
chunhtai authored
-
- 12 Jul, 2019 1 commit
-
-
chunhtai authored
-
- 11 Jul, 2019 1 commit
-
-
Greg Spencer authored
This adds an example of how to move to the "next" field when using TextInputAction.next. This is all that is needed to have "next field" functionality in a field. I thought about making it the default when handling the "next" or "previous" actions, but it's better that the developer has control over whether or not they actually move to the next field, and within which scope.
-
- 10 Jul, 2019 1 commit
-
-
Justin McCandless authored
Show and hide the text selection menu at the correct time with various gestures in the text field.
-
- 25 Jun, 2019 1 commit
-
-
LongCatIsLooong authored
-
- 19 Jun, 2019 1 commit
-
-
Justin McCandless authored
Adds the `textAlignVertical` param to TextField and InputDecorator, allowing arbitrary vertical positioning of text in its input.
-
- 13 Jun, 2019 1 commit
-
-
Michael Goderbauer authored
-
- 10 Jun, 2019 1 commit
-
-
Justin McCandless authored
Stop a text editing error from happening
-
- 06 Jun, 2019 1 commit
-
-
Rubens de Melo authored
* include advice about dispose The same note in https://flutter.dev/docs/cookbook/forms/text-field-changes * Include remember to dispose texteditingcontroller Almost the same note here https://flutter.dev/docs/cookbook/forms/text-field-changes#2-use-a-texteditingcontroller . * include remember to dispose TextEditingController and link to see also * remove extras spaces and duplicated comment * include details about using Positioned.fill * Revert "include details about using Positioned.fill" This reverts commit c06196f8884d20c547d97edae71d26f7a61701be. * rever comment about Positioned.fill * Include of and remove extra white space Include of and remove extra white space in the end of line * improve link description to cookbook /// * Learn how to use a [TextEditingController] in one of our [cookbook recipe]s.(https://flutter.dev/docs/cookbook/forms/text-field-changes#2-use-a-texteditingcontroller) * include of, remove extra white space and improve description link to cookbook. include of, remove extra white space and improve description link to cookbook. * include of, remove extra white space and improve link description to cookbook include of, remove extra white space and improve link description to cookbook * include of, remove extra white space and improve link description to cookbook include of, remove extra white space and improve link description to cookbook * remove extra white spaces * remove extra white space
-
- 04 Jun, 2019 1 commit
-
-
Justin McCandless authored
Fix exception that was happening when double-double-tapping a TextField (or double long tapping).
-
- 03 Jun, 2019 1 commit
-
-
chunhtai authored
-
- 21 May, 2019 1 commit
-
-
Mattia Crovero authored
scrollController param on TextField and CupertinoTextField
-
- 17 May, 2019 1 commit
-
-
Greg Spencer authored
This adds support for an animated focusColor and hoverColor to InputDecorator. This color will blend with the background over a fade in period whenever the InputDecorator is focused or hovered, respectively. It also adds a Listener to the TextField to listen for hover events.
-
- 16 May, 2019 1 commit
-
-
Jason Simmons authored
-
- 14 May, 2019 3 commits
-
-
Mouad Debbar authored
-
Mouad Debbar authored
This reverts commit 18ca3754.
-
Mouad Debbar authored
-
- 22 Apr, 2019 1 commit
-
-
Justin McCandless authored
TextField and CupertinoTextField can now specify scrollPhysics. Cupertino defaults to bouncing now.
-
- 22 Mar, 2019 1 commit
-
-
Mouad Debbar authored
-
- 15 Mar, 2019 1 commit
-
-
Justin McCandless authored
Adds the `minLines` and `expands` parameters for controlling text height. The original PR was reverted, so this one contains a few extra fixes for the tests that were broken.
-
- 09 Mar, 2019 1 commit
-
-
Todd Volkert authored
This reverts commit 9e9f48da.
-
- 08 Mar, 2019 1 commit
-
-
Justin McCandless authored
* Create new TextField attribute to control maxLength behaviour * Create test case for maxLinesIncrementalHeight * fix maxLinesIncrementalHeight set method * fix editable_test.dart * Just introducing some proposed API additions, renaming to expands * Pass minLines and expands through to child widgets and validate * minLines can't be null, and expands can't be true when maxLines is 1 * Implement minLines and maxLines height sizing logic * Simplify minLines validation logic * expands parameter proof of concept * min/max mixup bug fix, and tests work with expands false * Test expands=true cases, and fix textPainter.height being out of date * Test all behavior matrix cases * min/max assertion more strict, can't be equal * Tests work that were missing expands serialization * Action sheet tests no longer fail due to rounding error * TextFieldFocus test no longer mysteriously fails * TODOs for making expands nullable. Will depend on how Expanded wrapping works * Expanded growth happens when expanded is true and maxLines is null * Test Expanded wrapper * No more overflow when wrapped in Expanded * Docs improvements * expands can be null * Simplify error cases to support existing behavior * Docs examples and other docs cleanup * Expansion up to perfectly meet the parent size * Fix analyze null error * Fix test after move to nullable expands * minLines defaults to null * expands is now exclusively for expanding to parent height and not growth between min and max * _layout rewritten to handle max height. Need to fix prefix tests and reenable expands * Tests for textfield overflowing parent * layoutLineBox is documented and private * expands works in new _layout * _layout return numbers seem to perfectly match original _layout * inputWidth comment after trying it out and failing tests * Fix analyze errors * WIP prefix/suffix do affect height * Prefix/suffix and icons affect height, tests pass, but I'm still visually verifying identical to original * Tall prefix test that verifies pixel perfect layout * Fix overflowing edge case and test it * Clean up comments, old code, and todos * Changing _expands causes relayout. Wasnt able to figure out how to test though... * Clean up code review comments * Fix misalignment when tall prefix and border, and clean up related test * Simple code review cleanup * Bring back inputWidth to _layout method * Fix rounding errors showing up in mac tests * Fix flake by reordering tests. Without this, the dreaded intrinsicwidth flake is reproducible 50% of the time on my machine. * Fix more rounding error mac tests
-