From 13b7eb73688d89c0d2ce1bda1436432efaaf1a64 Mon Sep 17 00:00:00 2001 From: Benimautner Date: Sun, 11 Feb 2024 23:01:12 +0100 Subject: [PATCH] removed task description from tasktile. --- lib/components/TaskTile.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/components/TaskTile.dart b/lib/components/TaskTile.dart index 4be707e..51b5002 100644 --- a/lib/components/TaskTile.dart +++ b/lib/components/TaskTile.dart @@ -51,9 +51,9 @@ Widget? _buildTaskSubtitle(Task? task, bool showInfo) { texts.add(TextSpan(text: " !" + priorityToString(task.priority), style: TextStyle(color: Colors.orange))); } - if(texts.isEmpty && task.description.isNotEmpty) { - return HtmlWidget(task.description); - } + //if(texts.isEmpty && task.description.isNotEmpty) { + // return HtmlWidget(task.description); + // } if(texts.isNotEmpty) { return RichText(text: TextSpan(children: texts));