我是新手Flutter
,正在构建一个支持Malayalam
语言的应用程序。TextField
我使用 Google Indic Keyboard测试了马拉雅拉姆语条目。TextField 设置textInputAction
为换行符。虽然该操作在英语中运行良好,但当我切换到Malayalam
.
TextField(
controller: _postController,
textInputAction: TextInputAction.newline,
maxLength: 16384,
maxLines: 10,
decoration: InputDecoration.collapsed(
hintText: 'Write something here...',
),
)
我在印度语键盘中找不到任何可以修复它的设置。我的大多数用户更喜欢Google Indic Keyboard。我被卡住了,应用程序的目的被打败了!请帮忙...