From 9f019fa832b2d5e0e204678275d17e9b25ea637a Mon Sep 17 00:00:00 2001 From: JHubi1 Date: Mon, 3 Jun 2024 16:51:06 +0200 Subject: [PATCH] Updated send icon --- lib/main.dart | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 040f7db..e53ebce 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1523,7 +1523,14 @@ class _MainAppState extends State { (theme ?? ThemeData()).colorScheme.primary, attachmentButtonIcon: const Icon(Icons.add_a_photo_rounded), - sendButtonIcon: const Icon(Icons.send_rounded), + sendButtonIcon: const SizedBox( + height: 24, + child: CircleAvatar( + backgroundColor: Colors.black, + radius: 12, + child: Icon(Icons.arrow_upward_rounded)), + ), + sendButtonMargin: EdgeInsets.zero, inputBackgroundColor: (theme ?? ThemeData()) .colorScheme .onSurface