1 / 8
2 / 8
3 / 8
4 / 8
5 / 8
6 / 8
7 / 8
8 / 8



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.


  1. Ionic 5 React used as the frontend UI framework. Allowing me to build cross-platforms for IOS, Electron & Android.

  2. LocalStorage as the database in order to have it work effectively offline.

  3. Typescript as the main programming language followed by JS (for the backend)


Check it out on Github/Property-Noti for the source code.