Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple line message in cordova notification

I want to show a notification in Intel XDK by using Cordova Notification plugin with multiple line message like:

  • Line 1
  • Line 2
  • Line 3

I had search around and try resolutions like using "\n" or "\r\n" or "\n" but all of them not working.

What should I to solve this problem or Cordova Notification plugin not supported multiple line message?

like image 468
Mr Neo Avatar asked Dec 04 '25 10:12

Mr Neo


1 Answers

This doesn't work

navigator.notification.alert("break<br>the line",null,"Test","OK");

This works

navigator.notification.alert("break \r\n the line",null,"Test","OK");
like image 141
Mohammed Imran N Avatar answered Dec 06 '25 23:12

Mohammed Imran N