书写时加下划线-Flutter-文本字段

问题描述 投票:0回答:1

[每当我写这个词时,要加下划线。一旦我写了一个新单词,将不再强调下划线,而是我当前正在写的内容。我能以某种方式发出在写作时未加下划线的问题吗?我也没有在论坛中找到任何内容。

UNDERLINE

child: TextField(
                  autocorrect: false,
                  style: TextStyle(
                    fontSize: 22.0,
                  ),
                  cursorColor: Colors.black,
                  decoration: InputDecoration(
                    hintText: 'Search',
                    border: InputBorder.none,
                    icon: Icon(
                      Icons.search,
                      color: Color(0xFFe1F5FE),
                    ),
                  ),
                ),
flutter flutter-layout
1个回答
0
投票

您是否尝试过focusedBorder

TextField(
      decoration: new InputDecoration(
          border: InputBorder.none,
          focusedBorder: InputBorder.none,
          contentPadding: EdgeInsets.only(left: 15, bottom: 11, top: 11, right: 15),
          hintText: 'what you want'
      ),
    ),
© www.soinside.com 2019 - 2024. All rights reserved.