mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 22:44:21 +01:00
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:
@@ -53,6 +53,8 @@ class TaskListTile extends StatelessWidget {
|
||||
Expanded(
|
||||
child: Text(
|
||||
task.title,
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
style: const TextStyle(color: Colors.black),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user