How can I make a multiline button in nicegui?
Quasar example just uses a <br> tag, but it gets escaped by nicegui.
<br>
Inserting plain html inside a the button as a workaround
with ui.button(): ui.html('hello<br>world')
Inserting plain html inside a the button as a workaround