I'm trying to display a message which may be longer than screen width. What's the best way to format the message to display it as multiline?
Note, that the message comes from server, so it's not a hardcoded resource string.
I cannot see any tools for that, and neither Toybox::WatchUi::Text drawable nor Dc.drawText seem to have support for paragraph formatting.
Dc.getTextDimensions allows to determine width and height of text, so this is potentially helpful, but native apps (e.g. message notifier) do display properly formatted paragraphs, so I have an impression I'm missing something.
Thanks,