I have a Powerapps canvas application with only a button for testing how to separate a message in multiple lines utilizing the Notify function, I used the Char(10), Char(13) and <br> but none of them works, I don't know if there is a configuration for that or the reason why Powerapp is not admitting the new line, in the pass it uses to works.
Notify("You clicked on the button <br>" & "Hello" & Char(10) & "Another line" & Char(13) & "Final line", NotificationType.Error, 1000);
someone with the answer to this problem?
I appreciate any help you can provide.