我正在编写一个 ionic2 应用程序,我希望我的应用程序在通知区域中可见。我找到了一个离子原生插件来处理通知区域local-notifications。使用以下代码和平
constructor(
private localNotifications: LocalNotifications
)
...
this.localNotifications.schedule({
title: 'This is title',
text: 'this is text',
ongoing: true,
badge: 4
})
我想要的是我的应用程序的快捷方式(如在第一个屏幕上)但在状态栏(第二个屏幕)上没有图标(警报),有没有办法实现这一点?