Enhance: Google Photos integration, refinement of Schedule/Todo lists and API fixes
This commit is contained in:
@@ -1559,10 +1559,14 @@ class _TodoManagerTabState extends State<TodoManagerTab> {
|
||||
),
|
||||
),
|
||||
subtitle: todo.dueDate != null
|
||||
? Text(
|
||||
todo.dueDate!.toIso8601String().split('T')[0],
|
||||
style:
|
||||
const TextStyle(fontSize: 12, color: Colors.grey),
|
||||
? Builder(
|
||||
builder: (context) {
|
||||
final dueDate = todo.dueDate!;
|
||||
return Text(
|
||||
dueDate.toIso8601String().split('T')[0],
|
||||
style: const TextStyle(fontSize: 12, color: Colors.grey),
|
||||
);
|
||||
},
|
||||
)
|
||||
: null,
|
||||
trailing: Row(
|
||||
|
||||
Reference in New Issue
Block a user