Skip to content

Commit

Permalink
fix MessageInput height discrepancy
Browse files Browse the repository at this point in the history
  • Loading branch information
esarbanis committed Mar 19, 2024
1 parent 5717a21 commit ea32fce
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class _StreamAudioMessageSendButtonState
if (_lockButtonOverlayController.isShowing) {
_lockButtonOverlayController.hide();
}
_lockButtonTimer?.cancel();
super.dispose();
}

Expand Down Expand Up @@ -178,12 +179,15 @@ class _StreamAudioMessageSendButtonState
child: const StreamAudioMessageControllers(),
),
),
DecoratedBox(
decoration: BoxDecoration(
color: iconBackgroundColor,
shape: BoxShape.circle,
Padding(
padding: const EdgeInsets.all(1.5),
child: DecoratedBox(
decoration: BoxDecoration(
color: iconBackgroundColor,
shape: BoxShape.circle,
),
child: icon,
),
child: icon,
),
],
),
Expand Down

0 comments on commit ea32fce

Please sign in to comment.