From d3cb99559873a833d87277787734667544a72de9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A0=E6=96=87=E8=BD=A9?= <12812285557@qq.com> Date: Fri, 5 Aug 2022 17:51:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E5=88=B7=E6=96=B0=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E6=96=87=E5=AD=97=E5=92=8C=E8=BE=93=E5=85=A5=E6=96=87?= =?UTF-8?q?=E5=AD=97=E9=A2=9C=E8=89=B2=E5=9B=BA=E5=AE=9A=E4=B8=BA=E9=BB=91?= =?UTF-8?q?=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bytedesk_kefu/lib/ui/chat/page/chat_kf_page.dart | 2 +- bytedesk_kefu/lib/ui/widget/chat_input.dart | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bytedesk_kefu/lib/ui/chat/page/chat_kf_page.dart b/bytedesk_kefu/lib/ui/chat/page/chat_kf_page.dart index b2423c6..81bb4ec 100755 --- a/bytedesk_kefu/lib/ui/chat/page/chat_kf_page.dart +++ b/bytedesk_kefu/lib/ui/chat/page/chat_kf_page.dart @@ -480,7 +480,7 @@ class _ChatKFPageState extends State CircularProgressIndicator( strokeWidth: 2, ), - Text('会话请求中, 请稍后...') + Text('会话请求中, 请稍后...',style: TextStyle(color: Color(0xFF333333)),) ])) : Container( alignment: Alignment.bottomCenter, diff --git a/bytedesk_kefu/lib/ui/widget/chat_input.dart b/bytedesk_kefu/lib/ui/widget/chat_input.dart index eeaeeb6..5089ec1 100644 --- a/bytedesk_kefu/lib/ui/widget/chat_input.dart +++ b/bytedesk_kefu/lib/ui/widget/chat_input.dart @@ -335,12 +335,14 @@ class _ChatInputState extends State with TickerProviderStateMixin { // ), // hintText: '', // ), + style:TextStyle(color: Color(0xFF333333)), focusNode: _inputFocusNode, // maxLength: 400, maxLines: 6, minLines: 1, // 长按是否展示【剪切/复制/粘贴菜单LengthLimitingTextInputFormatter】 enableInteractiveSelection: true, + keyboardType: TextInputType.multiline, textCapitalization: TextCapitalization.sentences, textInputAction: TextInputAction.newline,