From de589e0c41da696dda99eb10f075da52d3c8dd2a Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Tue, 26 May 2026 08:01:42 +0800 Subject: [PATCH] fix(mobile): remove background from send button --- .../mobile/mobile_assistant_page_composer.dart | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/lib/features/mobile/mobile_assistant_page_composer.dart b/lib/features/mobile/mobile_assistant_page_composer.dart index 882806e6..5f5ff475 100644 --- a/lib/features/mobile/mobile_assistant_page_composer.dart +++ b/lib/features/mobile/mobile_assistant_page_composer.dart @@ -222,15 +222,11 @@ class MobileAssistantComposer extends StatelessWidget { ), Padding( padding: const EdgeInsets.only(left: 8, bottom: 5), - child: CircleAvatar( - radius: 18, - backgroundColor: palette.textPrimary, - child: IconButton( - key: const Key('mobile-assistant-send-button'), - padding: EdgeInsets.zero, - icon: Icon(Icons.arrow_upward_rounded, color: palette.canvas, size: 20), - onPressed: onSend, - ), + child: IconButton( + key: const Key('mobile-assistant-send-button'), + padding: EdgeInsets.zero, + icon: Icon(Icons.send_rounded, color: palette.textPrimary, size: 28), + onPressed: onSend, ), ), ],