├── .gitignore ├── .npmrc ├── .prettierrc ├── README.md ├── app ├── App_Resources │ ├── Android │ │ ├── app.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── drawable-nodpi │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xxhdpi │ │ │ ├── add_to_fav.png │ │ │ ├── add_to_fav_icon.png │ │ │ ├── background.png │ │ │ ├── ic_add_to_fav.png │ │ │ ├── ic_arrow_back.png │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_back.png │ │ │ ├── ic_close.png │ │ │ ├── ic_delete.png │ │ │ ├── ic_fav.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_menu.png │ │ │ ├── ic_menu_btn.png │ │ │ ├── ic_menu_example.png │ │ │ ├── ic_menu_main.png │ │ │ ├── ic_next.png │ │ │ ├── ic_prev.png │ │ │ ├── icon_arrow.png │ │ │ ├── logo.png │ │ │ └── opportuity.png │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── values-v21 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── facebooklogin.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── iOS │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ └── LaunchScreen.Center.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-Center.png │ │ │ └── LaunchScreen-Center@2x.png │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── background.jpg │ │ ├── bg.lproj │ │ └── InfoPlist.strings │ │ ├── build.xcconfig │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── ic_add_to_fav.png │ │ ├── ic_arrow_back.png │ │ ├── ic_arrow_down.png │ │ ├── ic_back.png │ │ ├── ic_close.png │ │ ├── ic_delete.png │ │ ├── ic_fav.png │ │ ├── ic_menu.png │ │ ├── ic_menu_btn.png │ │ ├── ic_menu_example.png │ │ ├── ic_menu_main.png │ │ ├── ic_next.png │ │ ├── ic_prev.png │ │ ├── icon_arrow.png │ │ ├── loading.gif │ │ └── logo.png ├── app.component.css ├── app.component.html ├── app.component.ts ├── app.css ├── app.module.ngfactory.d.ts ├── app.module.ts ├── app.routing.ts ├── app.service.ts ├── fonts │ ├── FontAwesome.ttf │ ├── IcoMoon-Free.ttf │ ├── Nasalization.ttf │ ├── fa-brands-400.ttf │ ├── fa-regular-400.ttf │ └── fa-solid-900.ttf ├── images │ ├── aste.jpg │ ├── cosmos.jpg │ ├── google-sign-in.png │ ├── hubble.jpg │ ├── login-facebook.png │ ├── night-shift.jpg │ ├── rover.jpg │ └── universe.jpg ├── main.ts ├── models │ ├── apod-model.ts │ ├── asteroids-model.ts │ ├── news-model.ts │ └── rover-model.ts ├── package.json ├── pages │ ├── apod │ │ ├── apod.component.css │ │ ├── apod.component.html │ │ ├── apod.component.ts │ │ ├── apod.module.ts │ │ └── toolbar │ │ │ ├── toolbar.component.css │ │ │ ├── toolbar.component.html │ │ │ └── toolbar.component.ts │ ├── asteroids │ │ ├── asteroids.component.css │ │ ├── asteroids.component.html │ │ ├── asteroids.component.ts │ │ └── asteroids.module.ts │ ├── hubble │ │ ├── hubble.component.css │ │ ├── hubble.component.html │ │ ├── hubble.component.ts │ │ └── hubble.module.ts │ ├── info │ │ ├── info.component.css │ │ ├── info.component.html │ │ ├── info.component.ts │ │ └── info.module.ts │ ├── login │ │ ├── login.component.css │ │ ├── login.component.html │ │ └── login.component.ts │ ├── main │ │ ├── main.component.css │ │ ├── main.component.html │ │ └── main.component.ts │ └── rovers │ │ ├── photo-detail.component.css │ │ ├── photo-detail.component.html │ │ ├── photo-detail.component.ts │ │ ├── pickers │ │ ├── pickers.component.css │ │ ├── pickers.component.html │ │ └── pickers.component.ts │ │ ├── rovers.component.css │ │ ├── rovers.component.html │ │ ├── rovers.component.ts │ │ ├── rovers.module.ts │ │ └── toolbar │ │ ├── toolbar.component.css │ │ ├── toolbar.component.html │ │ └── toolbar.component.ts ├── services │ ├── apod.service.ts │ ├── asteroids.service.ts │ ├── environment.service.ts │ ├── hubble.service.ts │ ├── login.service.ts │ └── rover.service.ts └── shared │ ├── animations-helper.ts │ ├── app-center-initializer.ts │ ├── nasa-api.ts │ ├── toolbar-helper.ts │ └── zoom-helper.ts ├── e2e ├── config │ ├── appium.capabilities.json │ └── mocha.opts ├── resources │ └── images │ │ └── curiosity │ │ ├── Emulator-Api28-Google │ │ ├── side-drawer-closed.png │ │ └── side-drawer-displayed.png │ │ └── iPhone XS │ │ ├── side-drawer-closed.png │ │ └── side-drawer-displayed.png ├── sample.e2e-spec.js.map ├── sample.e2e-spec.ts ├── setup.js.map ├── setup.ts └── tsconfig.json ├── firebase.nativescript.json ├── nsconfig.json ├── package.json ├── references.d.ts ├── settings.json.md ├── tsconfig.aot.json ├── tsconfig.esm.json ├── tsconfig.json ├── tsconfig.tns.json ├── tslint.json ├── webpack.config.js └── webpack.config.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/README.md -------------------------------------------------------------------------------- /app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/add_to_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/add_to_fav.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/add_to_fav_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/add_to_fav_icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_add_to_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_add_to_fav.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_arrow_back.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_back.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_close.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_delete.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_fav.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_menu.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_menu_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_menu_btn.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_menu_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_menu_example.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_menu_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_menu_main.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_next.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/ic_prev.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon_arrow.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable-xxhdpi/opportuity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable-xxhdpi/opportuity.png -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values-v21/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/values-v21/strings.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values/facebooklogin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/values/facebooklogin.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/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/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/GoogleService-Info.plist -------------------------------------------------------------------------------- /app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/App_Resources/iOS/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/background.jpg -------------------------------------------------------------------------------- /app/App_Resources/iOS/bg.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/bg.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /app/App_Resources/iOS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_add_to_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_add_to_fav.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_arrow_back.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_arrow_down.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_back.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_close.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_delete.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_fav.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_menu.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_menu_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_menu_btn.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_menu_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_menu_example.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_menu_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_menu_main.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_next.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/ic_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/ic_prev.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/icon_arrow.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/loading.gif -------------------------------------------------------------------------------- /app/App_Resources/iOS/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/App_Resources/iOS/logo.png -------------------------------------------------------------------------------- /app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/app.component.css -------------------------------------------------------------------------------- /app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/app.component.html -------------------------------------------------------------------------------- /app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/app.component.ts -------------------------------------------------------------------------------- /app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/app.css -------------------------------------------------------------------------------- /app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/app.module.ts -------------------------------------------------------------------------------- /app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/app.routing.ts -------------------------------------------------------------------------------- /app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/app.service.ts -------------------------------------------------------------------------------- /app/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /app/fonts/IcoMoon-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/fonts/IcoMoon-Free.ttf -------------------------------------------------------------------------------- /app/fonts/Nasalization.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/fonts/Nasalization.ttf -------------------------------------------------------------------------------- /app/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /app/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /app/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /app/images/aste.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/images/aste.jpg -------------------------------------------------------------------------------- /app/images/cosmos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/images/cosmos.jpg -------------------------------------------------------------------------------- /app/images/google-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/images/google-sign-in.png -------------------------------------------------------------------------------- /app/images/hubble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/images/hubble.jpg -------------------------------------------------------------------------------- /app/images/login-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/images/login-facebook.png -------------------------------------------------------------------------------- /app/images/night-shift.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/images/night-shift.jpg -------------------------------------------------------------------------------- /app/images/rover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/images/rover.jpg -------------------------------------------------------------------------------- /app/images/universe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/images/universe.jpg -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/models/apod-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/models/apod-model.ts -------------------------------------------------------------------------------- /app/models/asteroids-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/models/asteroids-model.ts -------------------------------------------------------------------------------- /app/models/news-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/models/news-model.ts -------------------------------------------------------------------------------- /app/models/rover-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/models/rover-model.ts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/package.json -------------------------------------------------------------------------------- /app/pages/apod/apod.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/apod/apod.component.css -------------------------------------------------------------------------------- /app/pages/apod/apod.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/apod/apod.component.html -------------------------------------------------------------------------------- /app/pages/apod/apod.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/apod/apod.component.ts -------------------------------------------------------------------------------- /app/pages/apod/apod.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/apod/apod.module.ts -------------------------------------------------------------------------------- /app/pages/apod/toolbar/toolbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/apod/toolbar/toolbar.component.css -------------------------------------------------------------------------------- /app/pages/apod/toolbar/toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/apod/toolbar/toolbar.component.html -------------------------------------------------------------------------------- /app/pages/apod/toolbar/toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/apod/toolbar/toolbar.component.ts -------------------------------------------------------------------------------- /app/pages/asteroids/asteroids.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/asteroids/asteroids.component.css -------------------------------------------------------------------------------- /app/pages/asteroids/asteroids.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/asteroids/asteroids.component.html -------------------------------------------------------------------------------- /app/pages/asteroids/asteroids.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/asteroids/asteroids.component.ts -------------------------------------------------------------------------------- /app/pages/asteroids/asteroids.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/asteroids/asteroids.module.ts -------------------------------------------------------------------------------- /app/pages/hubble/hubble.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/hubble/hubble.component.css -------------------------------------------------------------------------------- /app/pages/hubble/hubble.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/hubble/hubble.component.html -------------------------------------------------------------------------------- /app/pages/hubble/hubble.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/hubble/hubble.component.ts -------------------------------------------------------------------------------- /app/pages/hubble/hubble.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/hubble/hubble.module.ts -------------------------------------------------------------------------------- /app/pages/info/info.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/info/info.component.css -------------------------------------------------------------------------------- /app/pages/info/info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/info/info.component.html -------------------------------------------------------------------------------- /app/pages/info/info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/info/info.component.ts -------------------------------------------------------------------------------- /app/pages/info/info.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/info/info.module.ts -------------------------------------------------------------------------------- /app/pages/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/login/login.component.css -------------------------------------------------------------------------------- /app/pages/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/login/login.component.html -------------------------------------------------------------------------------- /app/pages/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/login/login.component.ts -------------------------------------------------------------------------------- /app/pages/main/main.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/main/main.component.css -------------------------------------------------------------------------------- /app/pages/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/main/main.component.html -------------------------------------------------------------------------------- /app/pages/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/main/main.component.ts -------------------------------------------------------------------------------- /app/pages/rovers/photo-detail.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/photo-detail.component.css -------------------------------------------------------------------------------- /app/pages/rovers/photo-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/photo-detail.component.html -------------------------------------------------------------------------------- /app/pages/rovers/photo-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/photo-detail.component.ts -------------------------------------------------------------------------------- /app/pages/rovers/pickers/pickers.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/pickers/pickers.component.css -------------------------------------------------------------------------------- /app/pages/rovers/pickers/pickers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/pickers/pickers.component.html -------------------------------------------------------------------------------- /app/pages/rovers/pickers/pickers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/pickers/pickers.component.ts -------------------------------------------------------------------------------- /app/pages/rovers/rovers.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/rovers.component.css -------------------------------------------------------------------------------- /app/pages/rovers/rovers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/rovers.component.html -------------------------------------------------------------------------------- /app/pages/rovers/rovers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/rovers.component.ts -------------------------------------------------------------------------------- /app/pages/rovers/rovers.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/rovers.module.ts -------------------------------------------------------------------------------- /app/pages/rovers/toolbar/toolbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/toolbar/toolbar.component.css -------------------------------------------------------------------------------- /app/pages/rovers/toolbar/toolbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/toolbar/toolbar.component.html -------------------------------------------------------------------------------- /app/pages/rovers/toolbar/toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/pages/rovers/toolbar/toolbar.component.ts -------------------------------------------------------------------------------- /app/services/apod.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/services/apod.service.ts -------------------------------------------------------------------------------- /app/services/asteroids.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/services/asteroids.service.ts -------------------------------------------------------------------------------- /app/services/environment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/services/environment.service.ts -------------------------------------------------------------------------------- /app/services/hubble.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/services/hubble.service.ts -------------------------------------------------------------------------------- /app/services/login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/services/login.service.ts -------------------------------------------------------------------------------- /app/services/rover.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/services/rover.service.ts -------------------------------------------------------------------------------- /app/shared/animations-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/shared/animations-helper.ts -------------------------------------------------------------------------------- /app/shared/app-center-initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/shared/app-center-initializer.ts -------------------------------------------------------------------------------- /app/shared/nasa-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/shared/nasa-api.ts -------------------------------------------------------------------------------- /app/shared/toolbar-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/shared/toolbar-helper.ts -------------------------------------------------------------------------------- /app/shared/zoom-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/app/shared/zoom-helper.ts -------------------------------------------------------------------------------- /e2e/config/appium.capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/config/appium.capabilities.json -------------------------------------------------------------------------------- /e2e/config/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/config/mocha.opts -------------------------------------------------------------------------------- /e2e/resources/images/curiosity/Emulator-Api28-Google/side-drawer-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/resources/images/curiosity/Emulator-Api28-Google/side-drawer-closed.png -------------------------------------------------------------------------------- /e2e/resources/images/curiosity/Emulator-Api28-Google/side-drawer-displayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/resources/images/curiosity/Emulator-Api28-Google/side-drawer-displayed.png -------------------------------------------------------------------------------- /e2e/resources/images/curiosity/iPhone XS/side-drawer-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/resources/images/curiosity/iPhone XS/side-drawer-closed.png -------------------------------------------------------------------------------- /e2e/resources/images/curiosity/iPhone XS/side-drawer-displayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/resources/images/curiosity/iPhone XS/side-drawer-displayed.png -------------------------------------------------------------------------------- /e2e/sample.e2e-spec.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/sample.e2e-spec.js.map -------------------------------------------------------------------------------- /e2e/sample.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/sample.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/setup.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/setup.js.map -------------------------------------------------------------------------------- /e2e/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/setup.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /firebase.nativescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/firebase.nativescript.json -------------------------------------------------------------------------------- /nsconfig.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/package.json -------------------------------------------------------------------------------- /references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/references.d.ts -------------------------------------------------------------------------------- /settings.json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/settings.json.md -------------------------------------------------------------------------------- /tsconfig.aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/tsconfig.aot.json -------------------------------------------------------------------------------- /tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/tsconfig.esm.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/tsconfig.tns.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickIliev/nativescript-ng-cosmos/HEAD/webpack.config.md --------------------------------------------------------------------------------