简体   繁体   English

flutter 如何去除文本选择 (TextFormField) 上的文本下划线?

[英]flutter how remove text underline on text selection (TextFormField)?

It is necessary to move the cursor to the end of the text, but in flutter this is strangely implemented through text selection, I do it like this需要把cursor移到文末,但是在flutter中这个奇怪的是通过文本选择实现的,我是这样做的

 textController.selection =
                TextSelection.collapsed(offset: textController.text.length);

it works, but when typing, it appears underlined可以用,但是打字的时候有下划线

在此处输入图像描述

It is possible to somehow remove the underlining of the text, I read the documentation, but did not find it.可以以某种方式删除文本的下划线,我阅读了文档,但没有找到。

My TextFormField我的 TextFormField

          TextFormField(
 
                        cursorColor: Colors.white,
                        style: const TextStyle(
                          color: Colors.white,
                          fontSize: 20,
                        ),
                        controller: textController,
                        autofocus: false,
                        decoration: const InputDecoration(
                          enabledBorder: UnderlineInputBorder(
                              borderSide: BorderSide(color: Colors.white)),
                          focusedBorder: UnderlineInputBorder(
                              borderSide: BorderSide(color: Colors.white)),
                          filled: true,
                          isDense: true,
                          hintText:
                              'search',
                          hintStyle: TextStyle(
                            //Style of hintText
                            color: Colors.white60,
                            fontSize: 20,
                          ),
                        ),
                        
                      ),

this might help you这可能对你有帮助

                    TextField(
                             style: const TextStyle(
                             decoration: TextDecoration.none),
                             ),

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM