【发布时间】:2019-12-04 09:54:13
【问题描述】:
【问题讨论】:
【问题讨论】:
我还想在我的应用程序中禁用键盘中的表情符号按钮,所以我通过在 TextField 中添加 keyboardType: TextInputType.visiblePassword 来实现这一点。
TextField(
keyboardType: TextInputType.visiblePassword,
textInputAction: TextInputAction.done,
showCursor: true,
style: Theme.of(context).textTheme.bodyText1,
decoration: InputDecoration(border: InputBorder.none)
)
【讨论】: