NoteTile: Remove empty lines in the end

This commit is contained in:
Vishesh Handa
2020-04-02 18:45:09 +02:00
parent 6798eb0829
commit fbbc92eea8

View File

@ -25,7 +25,7 @@ class NoteTile extends StatelessWidget {
break;
}
}
var body = buffer.toString();
var body = buffer.toString().trimRight();
var theme = Theme.of(context);
var textTheme = theme.textTheme;