react-native-push-notification icon indicating copy to clipboard operation
react-native-push-notification copied to clipboard

ongoing?: boolean | undefined; Why this property doesnt work, i can skip notifications using this.

Open JulietKocharian opened this issue 11 months ago • 1 comments
trafficstars

Im using this package, and I want to make sure that my notification is non skippable.

JulietKocharian avatar Nov 29 '24 08:11 JulietKocharian

@JulietKocharian : you can try

PushNotification.localNotification({
                id: "123",
                tag: "123",
                message: "Timer " ,
                subtitle: "My Notification Subtitle",
                autoCancel: false,
                ongoing: true,
                actions:["DISMISS"]
            })

surya432 avatar Dec 11 '24 04:12 surya432