fix(mobile): remove background from send button

This commit is contained in:
Haitao Pan 2026-05-26 08:01:42 +08:00
parent 39076ff6f8
commit de589e0c41

View File

@ -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,
),
),
],