From fcdd09fcb2448d0579bbbcf816e1a842311b96f3 Mon Sep 17 00:00:00 2001 From: liyi Date: Wed, 12 Mar 2025 17:32:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E8=B0=83=E6=95=B4IOS=E5=AF=86=E7=A0=81?= =?UTF-8?q?=E5=88=86=E4=BA=AB=E9=80=89=E6=A8=A1=E6=9D=BF=E5=90=8E=E5=92=8C?= =?UTF-8?q?=E7=94=B5=E5=AD=90=E9=92=A5=E5=8C=99=E7=9F=AD=E4=BF=A1=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E9=94=AE=E7=9B=98=E6=97=A0=E6=B3=95=E6=94=B6=E8=B5=B7?= =?UTF-8?q?=E7=9A=84=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sendEmailNotification/sendEmailNotification_page.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/main/lockDetail/electronicKey/sendEmailNotification/sendEmailNotification_page.dart b/lib/main/lockDetail/electronicKey/sendEmailNotification/sendEmailNotification_page.dart index 90e4c33e..06efc928 100755 --- a/lib/main/lockDetail/electronicKey/sendEmailNotification/sendEmailNotification_page.dart +++ b/lib/main/lockDetail/electronicKey/sendEmailNotification/sendEmailNotification_page.dart @@ -95,6 +95,9 @@ class _SendEmailNotificationPageState extends State { maxLength: 1000, textAlign: TextAlign.start, controller: state.templateContentController, + keyboardType: TextInputType.multiline, // 多行文本键盘类型 + textInputAction: TextInputAction.done, // 键盘完成按钮 + onEditingComplete: () => FocusScope.of(context).unfocus(), // 点击完成 style: TextStyle( color: Colors.black, fontSize: 22.sp,