From 916d66ca7bf8fd245feb4673347a7bc826205bf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Thu, 25 Sep 2025 15:33:15 +0200 Subject: [PATCH] chore: Follow up input row design --- lib/pages/chat/chat_input_row.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pages/chat/chat_input_row.dart b/lib/pages/chat/chat_input_row.dart index cc971e80e..9c086d9dd 100644 --- a/lib/pages/chat/chat_input_row.dart +++ b/lib/pages/chat/chat_input_row.dart @@ -117,7 +117,7 @@ class ChatInputRow extends StatelessWidget { AnimatedContainer( duration: FluffyThemes.animationDuration, curve: FluffyThemes.animationCurve, - width: controller.sendController.text.isNotEmpty ? 0 : height, + width: controller.sendController.text.isNotEmpty ? 0 : 40, height: height, alignment: Alignment.center, decoration: const BoxDecoration(), @@ -265,7 +265,6 @@ class ChatInputRow extends StatelessWidget { Matrix.of(context).hasComplexBundles && Matrix.of(context).currentBundle!.length > 1) Container( - width: height, height: height, alignment: Alignment.center, child: _ChatAccountPicker(controller),