Currently all note content on the main list is truncated so only a few lines show. This is to make sure users aren't infinitely scrolling through long notes on the main page - instead they can tap the small preview in the list to show the expanded view.
The problem is the lack of context on the list... if a note is super long then there's no way to tell if the preview shows more information. It would be nice to have an ellipsis added to the end if a note has more info.
Pseudocode:
if notePreviewTextView.length > 140:
notePreview.setText(noteContent + "...")
Currently all note content on the main list is truncated so only a few lines show. This is to make sure users aren't infinitely scrolling through long notes on the main page - instead they can tap the small preview in the list to show the expanded view.
The problem is the lack of context on the list... if a note is super long then there's no way to tell if the preview shows more information. It would be nice to have an ellipsis added to the end if a note has more info.
Pseudocode: