jjzjj

TextFormField

全部标签

flutter - 通过另一个 TextFormField 更改 TextFormField 的值

当用户输入第一个TextFormField时,我试图更改第二个TextFormField的值。TextEditingControllertxt1=TextEditingController();TextEditingControllertxt2=TextEditingController();newContainer(child:newTextFormField(controller:txt1,autovalidate:true,keyboardType:TextInputType.number,validator:(value){if(value.isEmpty){txt2.text

flutter - 通过另一个 TextFormField 更改 TextFormField 的值

当用户输入第一个TextFormField时,我试图更改第二个TextFormField的值。TextEditingControllertxt1=TextEditingController();TextEditingControllertxt2=TextEditingController();newContainer(child:newTextFormField(controller:txt1,autovalidate:true,keyboardType:TextInputType.number,validator:(value){if(value.isEmpty){txt2.text

flutter - 当 `TextFormField` 为空时,如何使 `prefixIcon` `maxLines` 保持在顶部对齐?

我正在尝试制作一个具有无限输入字段的TextFormField,在某种意义上,如果用户按下回车键,则该框可以无限扩展。但是,prefixIcon属性似乎包含在Center中,因此每当用户点击Enter时,图标都会重新对齐到文本框的中心,特别适合奇怪的经历。我一直试图阻止该图标移动,但似乎没有任何效果。这是我的表单域:TextFormField(maxLines:null,keyboardType:TextInputType.multiline,style:theme.textTheme.body1,decoration:InputDecoration(prefixIcon:Icon(I

flutter - 当 `TextFormField` 为空时,如何使 `prefixIcon` `maxLines` 保持在顶部对齐?

我正在尝试制作一个具有无限输入字段的TextFormField,在某种意义上,如果用户按下回车键,则该框可以无限扩展。但是,prefixIcon属性似乎包含在Center中,因此每当用户点击Enter时,图标都会重新对齐到文本框的中心,特别适合奇怪的经历。我一直试图阻止该图标移动,但似乎没有任何效果。这是我的表单域:TextFormField(maxLines:null,keyboardType:TextInputType.multiline,style:theme.textTheme.body1,decoration:InputDecoration(prefixIcon:Icon(I

android - 在 flutter 中禁用粘贴并从 textformfield 中选择所有功能按钮

我想在flutter中禁用所有与复制、粘贴和全选相关的功能textformfield。我有一个密码字段,默认情况下可以接受键盘提示并能够粘贴数据,但是当我执行调用登录服务等操作时,密码字段出错了。TextFormField(obscureText:true,style:styleText,textInputAction:TextInputAction.done,controller:_passwordController,focusNode:_passwordFocus,onFieldSubmitted:(term){_passwordFocus.unfocus();},keyboar

android - 在 flutter 中禁用粘贴并从 textformfield 中选择所有功能按钮

我想在flutter中禁用所有与复制、粘贴和全选相关的功能textformfield。我有一个密码字段,默认情况下可以接受键盘提示并能够粘贴数据,但是当我执行调用登录服务等操作时,密码字段出错了。TextFormField(obscureText:true,style:styleText,textInputAction:TextInputAction.done,controller:_passwordController,focusNode:_passwordFocus,onFieldSubmitted:(term){_passwordFocus.unfocus();},keyboar

flutter - TextFormField 值为空

我试图获取TextFormField值。但结果是null主页,children:[UrlTextField(),UsernameTextField(),UrlButton()]UrlTextField(),同UsernameTextField()classUrlTextFieldextendsStatelessWidget{finalmyController=TextEditingController();@overrideWidgetbuild(BuildContextcontext){returnAppTextField(decoration:InputDecoration(pre

flutter - TextFormField 值为空

我试图获取TextFormField值。但结果是null主页,children:[UrlTextField(),UsernameTextField(),UrlButton()]UrlTextField(),同UsernameTextField()classUrlTextFieldextendsStatelessWidget{finalmyController=TextEditingController();@overrideWidgetbuild(BuildContextcontext){returnAppTextField(decoration:InputDecoration(pre

dart - 具有默认文本的 TextFormField

我想要一些FormTextFields,其中包含一些用户可以更改的默认文本。我遇到的问题是,一旦我修改了一个字段,如果我按下另一个字段或按钮,一切都很好,但是,如果我按下键盘上的“完成”按钮,就会返回默认文本,删除用户插入的新的。这是我到目前为止所做的:class_LoginSettingsViewStateextendsState{finalGlobalKey_formKey=newGlobalKey();var_userTextController=newTextEditingController();@overrideWidgetbuild(BuildContextcontext

dart - 具有默认文本的 TextFormField

我想要一些FormTextFields,其中包含一些用户可以更改的默认文本。我遇到的问题是,一旦我修改了一个字段,如果我按下另一个字段或按钮,一切都很好,但是,如果我按下键盘上的“完成”按钮,就会返回默认文本,删除用户插入的新的。这是我到目前为止所做的:class_LoginSettingsViewStateextendsState{finalGlobalKey_formKey=newGlobalKey();var_userTextController=newTextEditingController();@overrideWidgetbuild(BuildContextcontext