Property-Noti
Allows user to add, create or delete their property event. Sends notification to user device when an property event is nearing. The notification date cannot be set after the event day itself.
Does not require internet to function. Data is stored inside your device cache using localstorage.
Example
return await LocalNotifications.schedule({
notifications: [
{
title:title + " (" + address + ") ",
body: "Ending at " + enddate + "!",
group:dategroup,
groupSummary:true,
autoCancel: false,
id: id,
extra:{
data_address: address,
data_title: title,
data_enddate: enddate,
data_dategroup: dategroup
},
iconColor: '#0000FF',
schedule: { at: date },
}
]
})
#=> Schedule notification data and time in accordance to the user.-
Ionic 5 Reactused as the frontend UI framework. Allowing me to build cross-platforms for IOS, Electron & Android. -
LocalStorageas the database in order to have it work effectively offline. -
Typescriptas the main programming language followed by JS (for the backend)
Check it out on Github/Property-Noti for the source code.