chore: Follow up todos
This commit is contained in:
parent
fd22b4330e
commit
cf574d0b68
2 changed files with 11 additions and 1 deletions
|
|
@ -2549,5 +2549,6 @@
|
||||||
"noTodosYet": "No todos have been added to this chat yet. Create your first todo and start cooperating with others. 📝",
|
"noTodosYet": "No todos have been added to this chat yet. Create your first todo and start cooperating with others. 📝",
|
||||||
"editTodo": "Edit todo",
|
"editTodo": "Edit todo",
|
||||||
"pleaseAddATitle": "Please add a title",
|
"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,
|
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(
|
: ReorderableListView.builder(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue