CardView: Remove extra new lines

This commit is contained in:
Vishesh Handa
2020-03-12 14:31:43 +01:00
parent 063d0fda3a
commit 00f3edbedf

View File

@ -52,7 +52,7 @@ class CardView extends StatelessWidget {
} }
Widget _buildNoteCard(BuildContext context, Note note) { Widget _buildNoteCard(BuildContext context, Note note) {
var body = note.body; var body = note.body.trimRight();
var textTheme = Theme.of(context).textTheme; var textTheme = Theme.of(context).textTheme;
var tileContent = Padding( var tileContent = Padding(