- 20 Feb, 2020 1 commit
-
-
Greg Spencer authored
-
- 11 Feb, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 14 Jan, 2020 1 commit
-
-
Prerak Mann authored
-
- 08 Jan, 2020 1 commit
-
-
Greg Spencer authored
-
- 13 Dec, 2019 2 commits
-
-
Justin McCandless authored
smartDashesType and smartQuotesType params for text fields to control iOS's smart punctuation feature.
-
Alexandre Ardhuin authored
* implicit-casts:false in flutter/lib/src/material * address review comments
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 05 Nov, 2019 1 commit
-
-
Thalles Santos authored
initalValue should be initialValue
-
- 28 Oct, 2019 2 commits
-
-
Justin McCandless authored
This flag controls Android's keyboard suggestions on/off
-
Justin McCandless authored
Use assertions to prevent multiline password fields from being created
-
- 17 Sep, 2019 1 commit
-
-
Brian Egan authored
-
- 28 Aug, 2019 1 commit
-
-
Justin McCandless authored
-
- 02 Aug, 2019 1 commit
-
-
chunhtai authored
-
- 01 Aug, 2019 1 commit
-
-
chunhtai authored
reland Enable selection by default for password text field and expose api to turn on and off context menu options (#37324)
-
- 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)
-
- 27 Jun, 2019 1 commit
-
-
Kasper authored
-
- 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
-
- 03 Jun, 2019 1 commit
-
-
chunhtai 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.
-
- 23 Feb, 2019 1 commit
-
-
Gary Qian authored
-
- 01 Feb, 2019 1 commit
-
-
MhdHejazi authored
-
- 14 Jan, 2019 1 commit
-
-
Justin McCandless authored
* Allow a widget to be specified for the textfield count, and allow no count at all * Test all possible states for counter and counterText * Docs for counter * counter is a function that generates a widget * Tests use counter as function * Fix analyze error in docs * InputDecoration has counter widget, TextField has buildCounter function * InputDecorator tests expect counter to be widget again and include buildCounter * counter widget example that might actually fit * Clarify accessiblity concerns in docs * Include isFocused param for accessibility * Fix analyze error * Improve docs per code review * Rearrange getEffectiveDecoration a bit for clarity * Fix analyze error about hashValues params * Clean up docs and redundant code per code review * Code review doc improvement * Automatically wrap buildCounter widget in a Semantics widget for accessibility
-
- 18 Dec, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 11 Dec, 2018 1 commit
-
-
Justin McCandless authored
* cursor fields on textformfield * Test pass-through of cursor properties
-
- 08 Nov, 2018 1 commit
-
-
Greg Spencer authored
This converts existing ## Sample code samples to {@tool sample}...{@end-tool} form. Also: 1. Fixed a minor bug in analyze-sample-code.dart 2. Made the snippet tool only insert descriptions if the description is non-empty. 3. Moved the Card diagram to before the code sample.
-
- 30 Oct, 2018 2 commits
- 18 Oct, 2018 1 commit
-
-
Hans Muller authored
Make it possible to disable TextField's default handlers for tap and long press. If enableInteractiveSelection is false then taps no longer move the text caret and long-press no longer selects text and shows the cut/copy/paste menu. Accessibility is similarly limited.
-
- 16 Oct, 2018 1 commit
-
-
jslavitz authored
* Fix form field validate method being called if form field is disabled
-
- 12 Sep, 2018 1 commit
-
-
Alexandre Ardhuin authored
* enable lint unnecessary_new * fix tests * fix tests * fix tests
-
- 15 Aug, 2018 1 commit
-
-
Michael Goderbauer authored
With this change you can now create "wrapping" text fields that do not show the new line button: ```dart new TextField( maxLines: null, keyboardType: TextInputType.text, ); ```
-
- 20 Jul, 2018 2 commits
-
-
Norbert Kozsir authored
-
Jonah Williams authored
-
- 19 Jul, 2018 1 commit
-
-
matthew-carroll authored
Added textInputAction parameter to TextFormField that forwards to TextField, added onEditingComplete parameter to TextField that forwards to EditableText, added onEditingComplete parameter to TextFormField that forwards to TextField. (#19397) (#19427)
-
- 14 Jul, 2018 1 commit
-
-
Jonah Williams authored
-
- 05 Jun, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 09 Apr, 2018 1 commit
-
-
Roberto Scaramuzzi authored
* Update text_form_field.dart * Update text_form_field_test.dart * Update text_form_field_test.dart * Update text_form_field_test.dart
-