chore: Follow up todos

pull/638/head rc1.15.0-4
krille-chan 1 year ago
parent fd22b4330e
commit cf574d0b68
No known key found for this signature in database

@ -2549,5 +2549,6 @@
"noTodosYet": "No todos have been added to this chat yet. Create your first todo and start cooperating with others. 📝",
"editTodo": "Edit todo",
"pleaseAddATitle": "Please add a title",
"todoListChangedError": "Oops... The todo list has been changed while you edited it."
"todoListChangedError": "Oops... The todo list has been changed while you edited it.",
"todosUnencrypted": "Please notice that todos are visible by everyone in the chat and are not end to end encrypted."
}

@ -69,6 +69,15 @@ class TasksView extends StatelessWidget {
textAlign: TextAlign.center,
),
),
const SizedBox(height: 16),
SizedBox(
width: 256,
child: Text(
L10n.of(context)!.todosUnencrypted,
textAlign: TextAlign.center,
style: const TextStyle(color: Colors.orange),
),
),
],
)
: ReorderableListView.builder(

Loading…
Cancel
Save