react-native-push-notification
react-native-push-notification copied to clipboard
ongoing?: boolean | undefined; Why this property doesnt work, i can skip notifications using this.
trafficstars
Im using this package, and I want to make sure that my notification is non skippable.
@JulietKocharian : you can try
PushNotification.localNotification({
id: "123",
tag: "123",
message: "Timer " ,
subtitle: "My Notification Subtitle",
autoCancel: false,
ongoing: true,
actions:["DISMISS"]
})