mirror of
https://github.com/Iconica-Development/flutter_chat.git
synced 2025-05-19 02:43:50 +02:00
fix(message-send-buttons): move slightly to better match design
This commit is contained in:
parent
1955e83d5d
commit
860c45a515
1 changed files with 28 additions and 25 deletions
|
@ -63,8 +63,10 @@ class ChatBottomInputSection extends HookWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Image and send buttons
|
/// Image and send buttons
|
||||||
var messageSendButtons = SizedBox(
|
var messageSendButtons = Padding(
|
||||||
height: 45,
|
padding: const EdgeInsets.only(right: 6.0),
|
||||||
|
child: SizedBox(
|
||||||
|
height: 48,
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
@ -92,6 +94,7 @@ class ChatBottomInputSection extends HookWidget {
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
Future<void> onSubmitField() async => sendMessage();
|
Future<void> onSubmitField() async => sendMessage();
|
||||||
|
|
Loading…
Reference in a new issue