From 2c0c2e7663bb84629df40a23bbcde4df873bc7b6 Mon Sep 17 00:00:00 2001 From: hunteraraujo Date: Mon, 4 Sep 2023 14:31:12 -0700 Subject: [PATCH] Truncate task titles in TaskListTile Update TaskListTile to truncate task titles that overflow. - Modify the Text widget to limit it to a single line. - Add TextOverflow.ellipsis to show an ellipsis when the text overflows. --- frontend/lib/views/task/task_list_tile.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/lib/views/task/task_list_tile.dart b/frontend/lib/views/task/task_list_tile.dart index 86027d95..7025d06a 100644 --- a/frontend/lib/views/task/task_list_tile.dart +++ b/frontend/lib/views/task/task_list_tile.dart @@ -53,6 +53,8 @@ class TaskListTile extends StatelessWidget { Expanded( child: Text( task.title, + maxLines: 1, + overflow: TextOverflow.ellipsis, style: const TextStyle(color: Colors.black), ), ),