From 42af6ec3f7f944100785862e6dfaad6f92ccde86 Mon Sep 17 00:00:00 2001 From: orz12 Date: Mon, 22 Apr 2024 20:11:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AF=84=E8=AE=BA=E5=8C=BA=E8=A1=A8?= =?UTF-8?q?=E6=83=85=E5=8E=BB=E9=99=A4=E5=9C=86=E8=A7=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/emote/view.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/pages/emote/view.dart b/lib/pages/emote/view.dart index d08d8d0a..ffbd4f72 100644 --- a/lib/pages/emote/view.dart +++ b/lib/pages/emote/view.dart @@ -63,9 +63,9 @@ class _EmotePanelState extends State return Material( color: Colors.transparent, clipBehavior: Clip.hardEdge, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(4), - ), + // shape: RoundedRectangleBorder( + // borderRadius: BorderRadius.circular(4), + // ), child: InkWell( onTap: () { widget.onChoose(e, e.emote![index]); @@ -83,6 +83,7 @@ class _EmotePanelState extends State width: size * 38, height: size * 38, semanticsLabel: e.emote![index].text!, + type: 'emote', ), ), ),