diff --git a/lib/folder_views/card_view.dart b/lib/folder_views/card_view.dart index 4b65037f..a5e5bcb6 100644 --- a/lib/folder_views/card_view.dart +++ b/lib/folder_views/card_view.dart @@ -54,6 +54,10 @@ class CardView extends StatelessWidget { Widget _buildNoteCard(BuildContext context, Note note) { var body = note.body.trimRight(); + body = body.replaceAll('[ ]', '☐'); + body = body.replaceAll('[x]', '☑'); + body = body.replaceAll('[X]', '☑'); + var textTheme = Theme.of(context).textTheme; var tileContent = Padding( padding: const EdgeInsets.all(8.0),