├── app ├── App_Resources │ ├── iOS │ │ ├── Assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ ├── icon-83.5@2x.png │ │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Default-1125h.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Landscape-X.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ └── Contents.json │ │ │ ├── LaunchScreen.Center.imageset │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ └── Contents.json │ │ │ └── LaunchScreen.AspectFill.imageset │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ └── Contents.json │ │ ├── home.png │ │ ├── menu.png │ │ ├── browse.png │ │ ├── home@2x.png │ │ ├── home@3x.png │ │ ├── menu@2x.png │ │ ├── menu@3x.png │ │ ├── search.png │ │ ├── browse@2x.png │ │ ├── browse@3x.png │ │ ├── favorites.png │ │ ├── search@2x.png │ │ ├── search@3x.png │ │ ├── settings.png │ │ ├── favorites@2x.png │ │ ├── favorites@3x.png │ │ ├── settings@2x.png │ │ ├── settings@3x.png │ │ ├── build.xcconfig │ │ ├── Info.plist │ │ └── LaunchScreen.storyboard │ └── Android │ │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── drawable-hdpi │ │ │ │ ├── home.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu.png │ │ │ │ ├── browse.png │ │ │ │ ├── search.png │ │ │ │ ├── favorites.png │ │ │ │ ├── settings.png │ │ │ │ └── background.png │ │ │ ├── drawable-ldpi │ │ │ │ ├── home.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu.png │ │ │ │ ├── browse.png │ │ │ │ ├── search.png │ │ │ │ ├── favorites.png │ │ │ │ ├── settings.png │ │ │ │ └── background.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── home.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu.png │ │ │ │ ├── browse.png │ │ │ │ ├── search.png │ │ │ │ ├── favorites.png │ │ │ │ ├── settings.png │ │ │ │ └── background.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── home.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu.png │ │ │ │ ├── browse.png │ │ │ │ ├── search.png │ │ │ │ ├── settings.png │ │ │ │ ├── background.png │ │ │ │ └── favorites.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── home.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu.png │ │ │ │ ├── browse.png │ │ │ │ ├── search.png │ │ │ │ ├── favorites.png │ │ │ │ ├── settings.png │ │ │ │ └── background.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── browse.png │ │ │ │ ├── home.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu.png │ │ │ │ ├── search.png │ │ │ │ ├── settings.png │ │ │ │ ├── background.png │ │ │ │ └── favorites.png │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ └── AndroidManifest.xml │ │ └── app.gradle ├── app.css ├── package.json ├── app.js └── components │ └── HelloWorld.vue ├── README.md ├── babel.config.js └── package.json /app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /app/App_Resources/iOS/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/home.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/menu.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/browse.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/home@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/home@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/menu@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/menu@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/search.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/browse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/browse@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/browse@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/browse@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/favorites.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/search@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/search@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/settings.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/favorites@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/favorites@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/favorites@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/favorites@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/settings@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/settings@3x.png -------------------------------------------------------------------------------- /app/app.css: -------------------------------------------------------------------------------- 1 | @import '~@nativescript/theme/css/core.css'; 2 | @import '~@nativescript/theme/css/default.css'; 3 | 4 | .btn { 5 | font-size: 18; 6 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NativeScript-Compress-Images 2 | Compress and Upload Images using NativeScript 3 | 4 | 1. npm install -g nativescript@latest 5 | 1. tns preview 6 | -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function (api) { 2 | api.cache(true) 3 | 4 | return { 5 | presets: [['@babel/env', { targets: { esmodules: true } }]], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/home.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/menu.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/home.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/menu.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/home.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/menu.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/browse.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/search.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/browse.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/search.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/browse.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/search.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/home.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/menu.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/home.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/menu.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/favorites.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/settings.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/favorites.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/settings.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/favorites.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/settings.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/browse.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/search.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/settings.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/browse.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/search.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/browse.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/home.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/menu.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/search.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xhdpi/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xhdpi/favorites.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/favorites.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/settings.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/settings.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxxhdpi/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/favorites.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- 1 | // Add your native dependencies here: 2 | 3 | android { 4 | defaultConfig { 5 | generatedDensities = [] 6 | } 7 | aaptOptions { 8 | additionalParameters "--no-version-vectors" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "android": { 3 | "v8Flags": "--expose_gc", 4 | "forceLog": true, 5 | "markingMode": "none" 6 | }, 7 | "main": "app.js", 8 | "name": "tns-template-vue", 9 | "version": "3.2.0" 10 | } -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/NativeScript-Compress-Images/master/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | NativeScript-Vue Application 4 | NativeScript-Vue Application 5 | 6 | -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values-v21/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | NativeScript-Vue Application 4 | NativeScript-Vue Application 5 | 6 | -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #F5F5F5 4 | #53ba82 5 | #33B5E5 6 | #272734 7 | 8 | -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- 1 | import Vue from 'nativescript-vue'; 2 | 3 | import HelloWorld from './components/HelloWorld'; 4 | 5 | // Uncommment the following to see NativeScript-Vue output logs 6 | // Vue.config.silent = false; 7 | 8 | new Vue({ 9 | 10 | template: ` 11 | 12 | 13 | `, 14 | 15 | components: { 16 | HelloWorld 17 | } 18 | }).$start(); -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchScreen-Center.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchScreen-Center@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchScreen-AspectFill.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchScreen-AspectFill@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- 1 | // You can add custom settings here 2 | // for example you can uncomment the following line to force distribution code signing 3 | // CODE_SIGN_IDENTITY = iPhone Distribution 4 | // To build for device with Xcode 8 you need to specify your development team. More info: https://developer.apple.com/library/prerelease/content/releasenotes/DeveloperTools/RN-Xcode/Introduction.html 5 | // DEVELOPMENT_TEAM = YOUR_TEAM_ID; 6 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 7 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 8 | -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 14 | 15 | 16 | 19 | 20 | 23 | -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | NativeScript-Vue Application 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0.0 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiresFullScreen 28 | 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 17 | 18 | 20 | 21 | 22 | 29 | 30 | 32 | 33 | 34 | 39 | 40 | 42 | 43 | -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "29x29", 5 | "idiom" : "iphone", 6 | "filename" : "icon-29.png", 7 | "scale" : "1x" 8 | }, 9 | { 10 | "size" : "29x29", 11 | "idiom" : "iphone", 12 | "filename" : "icon-29@2x.png", 13 | "scale" : "2x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "icon-29@3x.png", 19 | "scale" : "3x" 20 | }, 21 | { 22 | "size" : "40x40", 23 | "idiom" : "iphone", 24 | "filename" : "icon-40@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "40x40", 29 | "idiom" : "iphone", 30 | "filename" : "icon-40@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "60x60", 35 | "idiom" : "iphone", 36 | "filename" : "icon-60@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "60x60", 41 | "idiom" : "iphone", 42 | "filename" : "icon-60@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "29x29", 47 | "idiom" : "ipad", 48 | "filename" : "icon-29.png", 49 | "scale" : "1x" 50 | }, 51 | { 52 | "size" : "29x29", 53 | "idiom" : "ipad", 54 | "filename" : "icon-29@2x.png", 55 | "scale" : "2x" 56 | }, 57 | { 58 | "size" : "40x40", 59 | "idiom" : "ipad", 60 | "filename" : "icon-40.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "40x40", 65 | "idiom" : "ipad", 66 | "filename" : "icon-40@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "76x76", 71 | "idiom" : "ipad", 72 | "filename" : "icon-76.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "76x76", 77 | "idiom" : "ipad", 78 | "filename" : "icon-76@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "83.5x83.5", 83 | "idiom" : "ipad", 84 | "filename" : "icon-83.5@2x.png", 85 | "scale" : "2x" 86 | }, 87 | { 88 | "size" : "1024x1024", 89 | "idiom" : "ios-marketing", 90 | "filename" : "icon-1024.png", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "NativeScript Application", 3 | "license": "SEE LICENSE IN ", 4 | "readme": "NativeScript Application", 5 | "repository": "", 6 | "nativescript": { 7 | "id": "org.nativescript.playvue", 8 | "tns-android": { 9 | "version": "6.3.0" 10 | }, 11 | "tns-ios": { 12 | "version": "6.3.0" 13 | }, 14 | "playground": { 15 | "id": "4Ey0kX0KPw03qrTJWxM7M" 16 | } 17 | }, 18 | "dependencies": { 19 | "@nativescript/core": "6.3.1", 20 | "@nativescript/theme": "2.2.1", 21 | "@progress-nativechat/nativescript-nativechat": "3.0.0", 22 | "kinvey-nativescript-sdk": "4.2.5", 23 | "nativescript-accelerometer": "3.0.0", 24 | "nativescript-background-http": "4.2.1", 25 | "nativescript-camera": "4.5.0", 26 | "nativescript-image": "2.2.5", 27 | "nativescript-geolocation": "5.1.0", 28 | "nativescript-imagepicker": "7.1.0", 29 | "nativescript-intl": "3.0.0", 30 | "nativescript-iqkeyboardmanager": "1.5.1", 31 | "nativescript-social-share": "1.5.2", 32 | "nativescript-theme-core": "1.0.6", 33 | "nativescript-ui-autocomplete": "6.0.0", 34 | "nativescript-ui-calendar": "6.0.0", 35 | "nativescript-ui-chart": "7.1.0", 36 | "nativescript-ui-dataform": "6.0.0", 37 | "nativescript-ui-gauge": "6.0.0", 38 | "nativescript-ui-listview": "8.0.1", 39 | "nativescript-ui-sidedrawer": "8.0.0", 40 | "nativescript-vue": "2.4.0", 41 | "tns-core-modules": "6.3.1" 42 | }, 43 | "devDependencies": { 44 | "@babel/core": "7.7.5", 45 | "@babel/preset-env": "^7.0.0", 46 | "babel-loader": "^8.0.2", 47 | "babel-traverse": "6.26.0", 48 | "babel-types": "6.26.0", 49 | "babylon": "6.18.0", 50 | "clean-webpack-plugin": "^0.1.19", 51 | "copy-webpack-plugin": "^4.5.2", 52 | "css-hot-loader": "^1.4.2", 53 | "css-loader": "^1.0.0", 54 | "lazy": "1.0.11", 55 | "mini-css-extract-plugin": "^0.4.1", 56 | "nativescript-dev-webpack": "1.4.0", 57 | "nativescript-vue-template-compiler": "^2.0.0-alpha.3", 58 | "nativescript-worker-loader": "~0.9.0", 59 | "node-sass": "^4.9.2", 60 | "sass-loader": "^7.1.0", 61 | "uglifyjs-webpack-plugin": "~1.2.7", 62 | "vue-loader": "^15.2.6", 63 | "webpack": "^4.16.4", 64 | "webpack-bundle-analyzer": "~2.13.1", 65 | "webpack-cli": "^3.1.0", 66 | "tns-platform-declarations": "6.3.1" 67 | } 68 | } -------------------------------------------------------------------------------- /app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "extent" : "full-screen", 5 | "idiom" : "iphone", 6 | "subtype" : "2436h", 7 | "filename" : "Default-1125h.png", 8 | "minimum-system-version" : "11.0", 9 | "orientation" : "portrait", 10 | "scale" : "3x" 11 | }, 12 | { 13 | "orientation" : "landscape", 14 | "idiom" : "iphone", 15 | "extent" : "full-screen", 16 | "filename" : "Default-Landscape-X.png", 17 | "minimum-system-version" : "11.0", 18 | "subtype" : "2436h", 19 | "scale" : "3x" 20 | }, 21 | { 22 | "extent" : "full-screen", 23 | "idiom" : "iphone", 24 | "subtype" : "736h", 25 | "filename" : "Default-736h@3x.png", 26 | "minimum-system-version" : "8.0", 27 | "orientation" : "portrait", 28 | "scale" : "3x" 29 | }, 30 | { 31 | "extent" : "full-screen", 32 | "idiom" : "iphone", 33 | "subtype" : "736h", 34 | "filename" : "Default-Landscape@3x.png", 35 | "minimum-system-version" : "8.0", 36 | "orientation" : "landscape", 37 | "scale" : "3x" 38 | }, 39 | { 40 | "extent" : "full-screen", 41 | "idiom" : "iphone", 42 | "subtype" : "667h", 43 | "filename" : "Default-667h@2x.png", 44 | "minimum-system-version" : "8.0", 45 | "orientation" : "portrait", 46 | "scale" : "2x" 47 | }, 48 | { 49 | "orientation" : "portrait", 50 | "idiom" : "iphone", 51 | "filename" : "Default@2x.png", 52 | "extent" : "full-screen", 53 | "minimum-system-version" : "7.0", 54 | "scale" : "2x" 55 | }, 56 | { 57 | "extent" : "full-screen", 58 | "idiom" : "iphone", 59 | "subtype" : "retina4", 60 | "filename" : "Default-568h@2x.png", 61 | "minimum-system-version" : "7.0", 62 | "orientation" : "portrait", 63 | "scale" : "2x" 64 | }, 65 | { 66 | "orientation" : "portrait", 67 | "idiom" : "ipad", 68 | "filename" : "Default-Portrait.png", 69 | "extent" : "full-screen", 70 | "minimum-system-version" : "7.0", 71 | "scale" : "1x" 72 | }, 73 | { 74 | "orientation" : "landscape", 75 | "idiom" : "ipad", 76 | "filename" : "Default-Landscape.png", 77 | "extent" : "full-screen", 78 | "minimum-system-version" : "7.0", 79 | "scale" : "1x" 80 | }, 81 | { 82 | "orientation" : "portrait", 83 | "idiom" : "ipad", 84 | "filename" : "Default-Portrait@2x.png", 85 | "extent" : "full-screen", 86 | "minimum-system-version" : "7.0", 87 | "scale" : "2x" 88 | }, 89 | { 90 | "orientation" : "landscape", 91 | "idiom" : "ipad", 92 | "filename" : "Default-Landscape@2x.png", 93 | "extent" : "full-screen", 94 | "minimum-system-version" : "7.0", 95 | "scale" : "2x" 96 | }, 97 | { 98 | "orientation" : "portrait", 99 | "idiom" : "iphone", 100 | "filename" : "Default.png", 101 | "extent" : "full-screen", 102 | "scale" : "1x" 103 | }, 104 | { 105 | "orientation" : "portrait", 106 | "idiom" : "iphone", 107 | "filename" : "Default@2x.png", 108 | "extent" : "full-screen", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "orientation" : "portrait", 113 | "idiom" : "iphone", 114 | "filename" : "Default-568h@2x.png", 115 | "extent" : "full-screen", 116 | "subtype" : "retina4", 117 | "scale" : "2x" 118 | }, 119 | { 120 | "orientation" : "portrait", 121 | "idiom" : "ipad", 122 | "extent" : "to-status-bar", 123 | "scale" : "1x" 124 | }, 125 | { 126 | "orientation" : "portrait", 127 | "idiom" : "ipad", 128 | "filename" : "Default-Portrait.png", 129 | "extent" : "full-screen", 130 | "scale" : "1x" 131 | }, 132 | { 133 | "orientation" : "landscape", 134 | "idiom" : "ipad", 135 | "extent" : "to-status-bar", 136 | "scale" : "1x" 137 | }, 138 | { 139 | "orientation" : "landscape", 140 | "idiom" : "ipad", 141 | "filename" : "Default-Landscape.png", 142 | "extent" : "full-screen", 143 | "scale" : "1x" 144 | }, 145 | { 146 | "orientation" : "portrait", 147 | "idiom" : "ipad", 148 | "extent" : "to-status-bar", 149 | "scale" : "2x" 150 | }, 151 | { 152 | "orientation" : "portrait", 153 | "idiom" : "ipad", 154 | "filename" : "Default-Portrait@2x.png", 155 | "extent" : "full-screen", 156 | "scale" : "2x" 157 | }, 158 | { 159 | "orientation" : "landscape", 160 | "idiom" : "ipad", 161 | "extent" : "to-status-bar", 162 | "scale" : "2x" 163 | }, 164 | { 165 | "orientation" : "landscape", 166 | "idiom" : "ipad", 167 | "filename" : "Default-Landscape@2x.png", 168 | "extent" : "full-screen", 169 | "scale" : "2x" 170 | } 171 | ], 172 | "info" : { 173 | "version" : 1, 174 | "author" : "xcode" 175 | } 176 | } -------------------------------------------------------------------------------- /app/components/HelloWorld.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 | --------------------------------------------------------------------------------