Enhance: Google Photos integration, refinement of Schedule/Todo lists and API fixes

This commit is contained in:
kihong.kim
2026-02-01 01:05:33 +09:00
parent c614c883d4
commit 5fa24d61c9
7 changed files with 56 additions and 40 deletions

View File

@@ -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(