Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
HOTFIX Special messages have no padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Boehrsi committed Aug 9, 2019
1 parent b2bbb6b commit eadb2a1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/src/message/message_special.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ class MessageSpecial extends StatelessWidget {
textColor: onSurface,
borderRadius: buildInfoBorderRadius(),
child: MessageElevated(
child: Text(messageText),
child: Padding(
padding: const EdgeInsets.symmetric(vertical: messagesVerticalInnerPadding, horizontal: messagesHorizontalInnerPadding),
child: Text(messageText),
),
),
),
);
Expand Down

0 comments on commit eadb2a1

Please sign in to comment.