fix(message-send-buttons): move slightly to better match design

This commit is contained in:
Kiril Tijsma 2025-03-07 11:33:23 +01:00 committed by FlutterJoey
parent d2f000c8a7
commit 02ae2aa884

View file

@ -63,8 +63,10 @@ class ChatBottomInputSection extends HookWidget {
}
/// Image and send buttons
var messageSendButtons = SizedBox(
height: 45,
var messageSendButtons = Padding(
padding: const EdgeInsets.only(right: 6.0),
child: SizedBox(
height: 48,
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
@ -92,6 +94,7 @@ class ChatBottomInputSection extends HookWidget {
),
],
),
),
);
Future<void> onSubmitField() async => sendMessage();