What are my options to realize text inputs with multiple lines/line breaks (either explicit or just soft-wraps for nicer output in the UI) in shiny?
I\'d like to implem
Try using textAreaInput instead of textInput. With the former you can set height and width, and it automatically will wrap to next line if line is too long.
textAreaInput
textInput
Here is where it is mentioned in the docs.