Updated send icon

This commit is contained in:
JHubi1 2024-06-03 16:51:06 +02:00
parent cafc161aac
commit 9f019fa832
No known key found for this signature in database
GPG Key ID: 7BF82570CBBBD050
1 changed files with 8 additions and 1 deletions

View File

@ -1523,7 +1523,14 @@ class _MainAppState extends State<MainApp> {
(theme ?? ThemeData()).colorScheme.primary, (theme ?? ThemeData()).colorScheme.primary,
attachmentButtonIcon: attachmentButtonIcon:
const Icon(Icons.add_a_photo_rounded), 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()) inputBackgroundColor: (theme ?? ThemeData())
.colorScheme .colorScheme
.onSurface .onSurface