I'm making a mobile app which needs heavy use of recurring notification settings (repeat daily, monthly, hourly, every weekdays, every weekends, every 2 hours, etc ...).
I've tried react-native-push-notification
(only supports repeatType
: week
, day
, hour
, minute
, time
), and also checked react-native-notifications
. But none of them allows me to make highly customized recurring notifications like that.
Have anyone done this using react-native
without writing native code?