├── .gitignore ├── LocalNotifications ├── .abignore ├── .abproject ├── .app.json ├── .yo-rc.json ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── app.gradle │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_notify.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_notify.png │ │ │ │ ├── ic_stat_notify.png │ │ │ │ ├── icon.png │ │ │ │ ├── launcher_icon_arrow.png │ │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_notify.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_notify.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── raw │ │ │ │ └── customsound │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape-568h@2x.png │ │ │ ├── Default-Landscape-667h@2x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Info.plist │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ ├── app-root.xml │ ├── app.css │ ├── app.js │ ├── main-page.js │ ├── main-page.xml │ ├── main-view-model.js │ ├── package.json │ └── res │ │ └── telerik-logo.png ├── hooks │ ├── after-watch │ │ └── nativescript-dev-typescript.js │ ├── before-prepare │ │ └── nativescript-dev-typescript.js │ ├── before-watch │ │ └── nativescript-dev-typescript.js │ └── before-watchPatterns │ │ └── nativescript-dev-typescript.js ├── package.json ├── references.d.ts └── tsconfig.json ├── README.md └── screenshots ├── ios-demo-01.png ├── ios-demo-02.png └── ios-demo-03.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | node_modules/ 4 | LocalNotifications/platforms/ -------------------------------------------------------------------------------- /LocalNotifications/.abignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/.abignore -------------------------------------------------------------------------------- /LocalNotifications/.abproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/.abproject -------------------------------------------------------------------------------- /LocalNotifications/.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/.app.json -------------------------------------------------------------------------------- /LocalNotifications/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/.yo-rc.json -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-hdpi/ic_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-hdpi/ic_notify.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xhdpi/ic_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xhdpi/ic_notify.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xhdpi/ic_stat_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xhdpi/ic_stat_notify.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xhdpi/launcher_icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xhdpi/launcher_icon_arrow.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xxhdpi/ic_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xxhdpi/ic_notify.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xxxhdpi/ic_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xxxhdpi/ic_notify.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/raw/customsound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/raw/customsound -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-667h@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-736h@3x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-Landscape-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-Landscape-568h@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-Landscape-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-Landscape-667h@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-Landscape.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-Landscape@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-Landscape@3x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-Portrait.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default-Portrait@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Default@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Icon-Small-50.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Icon-Small.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Icon-Small@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon-40.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon-40@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon-60.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon-60@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon-72.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon-72@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon-76.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon-76@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /LocalNotifications/app/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /LocalNotifications/app/app-root.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LocalNotifications/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/app.css -------------------------------------------------------------------------------- /LocalNotifications/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/app.js -------------------------------------------------------------------------------- /LocalNotifications/app/main-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/main-page.js -------------------------------------------------------------------------------- /LocalNotifications/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/main-page.xml -------------------------------------------------------------------------------- /LocalNotifications/app/main-view-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/main-view-model.js -------------------------------------------------------------------------------- /LocalNotifications/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/package.json -------------------------------------------------------------------------------- /LocalNotifications/app/res/telerik-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/app/res/telerik-logo.png -------------------------------------------------------------------------------- /LocalNotifications/hooks/after-watch/nativescript-dev-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/hooks/after-watch/nativescript-dev-typescript.js -------------------------------------------------------------------------------- /LocalNotifications/hooks/before-prepare/nativescript-dev-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/hooks/before-prepare/nativescript-dev-typescript.js -------------------------------------------------------------------------------- /LocalNotifications/hooks/before-watch/nativescript-dev-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/hooks/before-watch/nativescript-dev-typescript.js -------------------------------------------------------------------------------- /LocalNotifications/hooks/before-watchPatterns/nativescript-dev-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/hooks/before-watchPatterns/nativescript-dev-typescript.js -------------------------------------------------------------------------------- /LocalNotifications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/package.json -------------------------------------------------------------------------------- /LocalNotifications/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/references.d.ts -------------------------------------------------------------------------------- /LocalNotifications/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/LocalNotifications/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/ios-demo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/screenshots/ios-demo-01.png -------------------------------------------------------------------------------- /screenshots/ios-demo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/screenshots/ios-demo-02.png -------------------------------------------------------------------------------- /screenshots/ios-demo-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddyVerbruggen/nativescript-local-notifications-demo/HEAD/screenshots/ios-demo-03.png --------------------------------------------------------------------------------