From f7d05a57ade216e1004935e234a10923db38059c Mon Sep 17 00:00:00 2001 From: Yegor Vialov Date: Sat, 25 Apr 2020 21:45:58 +0000 Subject: [PATCH] Use '***' in markdawn card to add empty space --- lib/cards/markdown_card.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/cards/markdown_card.dart b/lib/cards/markdown_card.dart index 68a8f58..dacd95c 100644 --- a/lib/cards/markdown_card.dart +++ b/lib/cards/markdown_card.dart @@ -9,6 +9,8 @@ class MarkdownCard extends StatelessWidget { Widget build(BuildContext context) { if (card.content == null) { return Container(height: 0.0, width: 0.0,); + } else if (card.content == '***') { + return Container(height: Sizes.rowPadding, width: 0.0,); } return CardWrapper( child: Padding(