我将 TextFormField 用于我的颤振应用程序搜索字段。当我输入大于 textformfield 宽度的文本时,然后输入的文本被裁剪为完全不可见的一半。请找到我下面的代码和附图,以更好地理解问题。
TextFormField(
focusNode: focusNode,
controller: textController,
decoration: InputDecoration(
border: InputBorder.none,
icon: Icon(
Icons.search,
),
hintText: AppStrings.searchCatHint,
hintStyle: TextStyle(
fontSize: 17,),
),
autovalidate: true,
autocorrect: false,
autofocus: true,
);
问题屏幕:
我在另一个问题中也看到了类似的问题,但没有提供解决方案。 类似问题链接
使用@CarlosSR 建议正确显示文本。但对齐问题如下。