1
I’m using the plugin cordova-plugin-local-notifications
and I can’t make the line break in the notification text. I have the following code::
$cordovaLocalNotification.schedule({
id: options.id,
title: options.title,
text: options.text,
icon:"icon",
data: {
"type":options.type,
"value":object
}
}).then(callback);
Does anyone know how to implement this?
You’re at the Stackoverflow in Portuguese, if you do not translate your question, it will be closed. | You’re in Stackoverflow in Portuguese, if you don’t Translate your Question, it’ll be closed.
– Marco Giovanni
Welcome to Stack Overflow! Welcome to Stackoverflow in English. The official language used here is Portuguese, could you translate your question? If you prefer, you can ask the same question on Stackoverflow.com.
– Jéf Bueno
You tried " n" on the spot where you want to break the line?
– Sorack
yes, I’ve tried n , <br> n r
– FLAVIANO INÁCIO