├── .gitignore ├── App_Resources ├── Android │ ├── AndroidManifest.xml │ ├── app.gradle │ ├── drawable-hdpi │ │ ├── ic_menu.png │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ ├── ic_menu.png │ │ └── icon.png │ ├── drawable-nodpi │ │ └── splashscreen.9.png │ ├── drawable-xhdpi │ │ └── ic_menu.png │ ├── drawable-xxhdpi │ │ └── ic_menu.png │ └── drawable-xxxhdpi │ │ └── ic_menu.png └── 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 │ ├── ic_menu.png │ ├── ic_menu@2x.png │ ├── ic_menu@3x.png │ ├── 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 ├── README.md ├── app.css ├── app.js ├── package.json ├── pages ├── about │ ├── about.js │ └── about.xml ├── home │ ├── home.js │ └── home.xml └── settings │ ├── settings.js │ └── settings.xml └── shared ├── BasePage.js └── widgets └── drawer-content.xml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /App_Resources/Android/drawable-hdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-hdpi/ic_menu.png -------------------------------------------------------------------------------- /App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /App_Resources/Android/drawable-mdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-mdpi/ic_menu.png -------------------------------------------------------------------------------- /App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App_Resources/Android/drawable-nodpi/splashscreen.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-nodpi/splashscreen.9.png -------------------------------------------------------------------------------- /App_Resources/Android/drawable-xhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-xhdpi/ic_menu.png -------------------------------------------------------------------------------- /App_Resources/Android/drawable-xxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-xxhdpi/ic_menu.png -------------------------------------------------------------------------------- /App_Resources/Android/drawable-xxxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/Android/drawable-xxxhdpi/ic_menu.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-667h@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-736h@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-Landscape-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-Landscape-568h@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-Landscape-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-Landscape-667h@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-Landscape.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-Landscape@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-Landscape@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-Portrait.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default-Portrait@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default.png -------------------------------------------------------------------------------- /App_Resources/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Default@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Icon-Small-50.png -------------------------------------------------------------------------------- /App_Resources/iOS/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Icon-Small.png -------------------------------------------------------------------------------- /App_Resources/iOS/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Icon-Small@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /App_Resources/iOS/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/ic_menu.png -------------------------------------------------------------------------------- /App_Resources/iOS/ic_menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/ic_menu@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/ic_menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/ic_menu@3x.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon-40.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon-40@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon-60.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon-60@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon-72.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon-72@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon-76.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon-76@2x.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/README.md -------------------------------------------------------------------------------- /app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/app.css -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/package.json -------------------------------------------------------------------------------- /pages/about/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/pages/about/about.js -------------------------------------------------------------------------------- /pages/about/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/pages/about/about.xml -------------------------------------------------------------------------------- /pages/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/pages/home/home.js -------------------------------------------------------------------------------- /pages/home/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/pages/home/home.xml -------------------------------------------------------------------------------- /pages/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/pages/settings/settings.js -------------------------------------------------------------------------------- /pages/settings/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/pages/settings/settings.xml -------------------------------------------------------------------------------- /shared/BasePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/shared/BasePage.js -------------------------------------------------------------------------------- /shared/widgets/drawer-content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvantoll/nativescript-template-drawer/HEAD/shared/widgets/drawer-content.xml --------------------------------------------------------------------------------