evollu / react-native-fcm

react native module for firebase cloud messaging and local notification
MIT License
1.73k stars 681 forks source link

Repeat attribute #1097

Open luisbajana opened 5 years ago

luisbajana commented 5 years ago

Hi evollu,

Just in case do you have an example of the repeat attribute? I'm trying to schedule a PN like this:

FCM.scheduleLocalNotification({ id: "notificacionInicial", fire_date: moment({hour: 18, minute: 0, seconds: 0, milliseconds: 100}).valueOf(), vibrate: 500, title: "¡Antes de irte!", body: "¿Cuéntanos como te fue hoy?", priority: "high", repeat: true, large_icon: "", show_in_foreground: true, picture:"", wake_screen: true });

Setting repeat as true, is that correct?

Cheers, Luis B.