Is it possible to automatically insert a (longer) string in a defined box and automatically break the lines? (I need this for data fields on Edge devices)
I imagine I've seen this here before - but I can't find anything about it.
Thank you
Is it possible to automatically insert a (longer) string in a defined box and automatically break the lines? (I need this for data fields on Edge devices)
I imagine I've seen this here before - but I can't find anything about it.
Thank you
Haven’t tried it myself, but if you can restrict yourself to devices with support for API 3.1.0 and higher, you should be able to use a TextArea.
A representation of a text area that will automatically apply line breaks to fit as much text as possible.
I have 2 not very user friendly solutions:
1. use "\n" in the input string (or any other placeholder you like) and let the users type it in and you need to replace it with actual line ending, or splitting the string to smaller strings
2. use 2 (or more) inputs in the settings: line1, line2, line3