fix quoted message

This commit is contained in:
Salvatore Giordano
2021-05-19 15:29:58 +02:00
parent be0378e4f0
commit 52739738c3
@@ -157,10 +157,11 @@ class QuotedMessageWidget extends StatelessWidget {
color: StreamChatTheme.of(context).colorTheme.greyGainsboro, color: StreamChatTheme.of(context).colorTheme.greyGainsboro,
) )
: null, : null,
borderRadius: const BorderRadius.only( borderRadius: BorderRadius.only(
topRight: Radius.circular(12), topRight: const Radius.circular(12),
topLeft: Radius.circular(12), topLeft: const Radius.circular(12),
bottomLeft: Radius.circular(12), bottomRight: reverse ? const Radius.circular(12) : Radius.zero,
bottomLeft: reverse ? Radius.zero : const Radius.circular(12),
), ),
), ),
padding: const EdgeInsets.all(8), padding: const EdgeInsets.all(8),