Local push notifications - multiline text

Hello,

I am fairly new to Corona. I am building an app which shows notifications. They are local notifications, no server is used. 

The problem is that the text is too long to fit. I want to show it in a big notification with multiple lines, like in Gmail app. I can’t find anything on how to do that. 

Introducing “\n” and “\n\r” in the text does not work. 

Any ideas what to do?

Here is my code:

local notifications = require( "plugin.notifications" ) local text -- some logic which builds a large string   local notificationOptions = {           alert = text,           badge = 2,           sound = "alarm.caf",           custom = { foo = "bar" }         }  local notification = notifications.scheduleNotification( nextScheduleTime, notificationOptions )