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.
This commit is contained in:
hunteraraujo
2023-09-04 14:31:12 -07:00
parent a470a30311
commit 2c0c2e7663

View File

@@ -53,6 +53,8 @@ class TaskListTile extends StatelessWidget {
Expanded( Expanded(
child: Text( child: Text(
task.title, task.title,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: const TextStyle(color: Colors.black), style: const TextStyle(color: Colors.black),
), ),
), ),