├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── crew_member_repository.yaml │ ├── main.yaml │ ├── rocket_repository.yaml │ └── spacex_api.yaml ├── .gitignore ├── .idea └── runConfigurations │ ├── development.xml │ ├── production.xml │ └── staging.xml ├── .metadata ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── development │ │ ├── ic_launcher-playstore.png │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── ic_launch_image.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── spacexDemo │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── ic_launch_image.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ ├── profile │ │ └── AndroidManifest.xml │ │ └── staging │ │ ├── ic_launcher-playstore.png │ │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── images │ ├── img_spacex_crew.jpeg │ ├── img_spacex_rocket.jpeg │ ├── vgv_logo_black.png │ └── vgv_logo_white.png ├── coverage_badge.svg ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ ├── Runner.xcscheme │ │ ├── development.xcscheme │ │ ├── production.xcscheme │ │ └── staging.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon-dev.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ └── Contents.json │ ├── AppIcon-stg.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage@1x.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── l10n.yaml ├── lib ├── app │ └── app.dart ├── crew │ ├── crew.dart │ ├── cubit │ │ ├── crew_cubit.dart │ │ └── crew_state.dart │ └── view │ │ └── crew_page.dart ├── crew_member_details │ ├── crew_member_details.dart │ ├── cubit │ │ ├── crew_member_details_cubit.dart │ │ └── crew_member_details_state.dart │ ├── view │ │ └── crew_member_details_page.dart │ └── widgets │ │ ├── image_header.dart │ │ ├── title_header.dart │ │ └── widgets.dart ├── home │ ├── home.dart │ ├── view │ │ └── home_page.dart │ └── widgets │ │ ├── home_page_content.dart │ │ ├── spacex_category_card.dart │ │ └── widgets.dart ├── l10n │ ├── arb │ │ ├── app_en.arb │ │ └── app_es.arb │ └── l10n.dart ├── main_development.dart ├── main_production.dart ├── main_staging.dart ├── rocket_details │ ├── cubit │ │ ├── rocket_details_cubit.dart │ │ └── rocket_details_state.dart │ ├── rocket_details.dart │ └── view │ │ └── rocket_details_page.dart └── rockets │ ├── cubit │ ├── rockets_cubit.dart │ └── rockets_state.dart │ ├── rockets.dart │ └── view │ └── rockets_page.dart ├── packages ├── crew_member_repository │ ├── .gitignore │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── crew_member_repository.dart │ │ └── src │ │ │ └── crew_member_repository.dart │ ├── pubspec.yaml │ └── test │ │ └── crew_member_repository_test.dart ├── rocket_repository │ ├── analysis_options.yaml │ ├── example │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ └── main.dart │ │ └── pubspec.yaml │ ├── lib │ │ ├── rocket_repository.dart │ │ └── src │ │ │ └── rocket_repository.dart │ ├── pubspec.yaml │ └── test │ │ └── rocket_repository_test.dart └── spacex_api │ ├── analysis_options.yaml │ ├── example │ ├── analysis_options.yaml │ ├── lib │ │ └── main.dart │ └── pubspec.yaml │ ├── lib │ ├── spacex_api.dart │ └── src │ │ ├── models │ │ ├── crew_member.dart │ │ ├── crew_member.g.dart │ │ ├── models.dart │ │ ├── rocket.dart │ │ └── rocket.g.dart │ │ └── spacex_api_client.dart │ ├── pubspec.yaml │ └── test │ ├── models │ ├── crew_member_test.dart │ └── rocket_test.dart │ └── spacex_api_client_test.dart ├── pubspec.lock ├── pubspec.yaml ├── slides └── recipe_for_a_very_good_app.pdf ├── test ├── app │ └── app_test.dart ├── crew │ ├── cubit │ │ ├── crew_cubit_test.dart │ │ └── crew_state_test.dart │ └── view │ │ └── crew_page_test.dart ├── crew_member_details │ ├── cubit │ │ ├── crew_member_details_cubit_test.dart │ │ └── crew_member_details_state_test.dart │ └── view │ │ └── crew_member_details_page_test.dart ├── helpers │ ├── helpers.dart │ └── pump_app.dart ├── home │ ├── view │ │ └── home_page_test.dart │ └── widgets │ │ └── home_page_content_test.dart ├── rocket_details │ ├── cubit │ │ ├── rocket_details_cubit_test.dart │ │ └── rocket_details_state_test.dart │ └── view │ │ └── rocket_details_page_test.dart └── rockets │ ├── cubit │ ├── rockets_cubit_test.dart │ └── rockets_state_test.dart │ └── view │ └── rockets_page_test.dart ├── tool └── coverage.sh └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png └── favicon.png ├── index.html └── manifest.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/crew_member_repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.github/workflows/crew_member_repository.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/rocket_repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.github/workflows/rocket_repository.yaml -------------------------------------------------------------------------------- /.github/workflows/spacex_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.github/workflows/spacex_api.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/runConfigurations/development.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.idea/runConfigurations/development.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/production.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.idea/runConfigurations/production.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/staging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.idea/runConfigurations/staging.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/development/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable/ic_launch_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/drawable/ic_launch_image.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/development/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/development/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/development/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/spacexDemo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/kotlin/com/example/spacexDemo/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launch_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/drawable/ic_launch_image.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/staging/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/staging/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/img_spacex_crew.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/assets/images/img_spacex_crew.jpeg -------------------------------------------------------------------------------- /assets/images/img_spacex_rocket.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/assets/images/img_spacex_rocket.jpeg -------------------------------------------------------------------------------- /assets/images/vgv_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/assets/images/vgv_logo_black.png -------------------------------------------------------------------------------- /assets/images/vgv_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/assets/images/vgv_logo_white.png -------------------------------------------------------------------------------- /coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/coverage_badge.svg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/100.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/128.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/144.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/152.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/16.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/167.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/172.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/196.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/216.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/256.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/32.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/48.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/55.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/88.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/100.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/128.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/144.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/152.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/16.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/167.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/172.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/196.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/216.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/256.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/32.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/48.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/55.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/88.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/app/app.dart -------------------------------------------------------------------------------- /lib/crew/crew.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew/crew.dart -------------------------------------------------------------------------------- /lib/crew/cubit/crew_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew/cubit/crew_cubit.dart -------------------------------------------------------------------------------- /lib/crew/cubit/crew_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew/cubit/crew_state.dart -------------------------------------------------------------------------------- /lib/crew/view/crew_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew/view/crew_page.dart -------------------------------------------------------------------------------- /lib/crew_member_details/crew_member_details.dart: -------------------------------------------------------------------------------- 1 | export 'view/crew_member_details_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/crew_member_details/cubit/crew_member_details_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew_member_details/cubit/crew_member_details_cubit.dart -------------------------------------------------------------------------------- /lib/crew_member_details/cubit/crew_member_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew_member_details/cubit/crew_member_details_state.dart -------------------------------------------------------------------------------- /lib/crew_member_details/view/crew_member_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew_member_details/view/crew_member_details_page.dart -------------------------------------------------------------------------------- /lib/crew_member_details/widgets/image_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew_member_details/widgets/image_header.dart -------------------------------------------------------------------------------- /lib/crew_member_details/widgets/title_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew_member_details/widgets/title_header.dart -------------------------------------------------------------------------------- /lib/crew_member_details/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/crew_member_details/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/home/home.dart -------------------------------------------------------------------------------- /lib/home/view/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/home/view/home_page.dart -------------------------------------------------------------------------------- /lib/home/widgets/home_page_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/home/widgets/home_page_content.dart -------------------------------------------------------------------------------- /lib/home/widgets/spacex_category_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/home/widgets/spacex_category_card.dart -------------------------------------------------------------------------------- /lib/home/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/home/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/l10n/arb/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/l10n/arb/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/arb/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/l10n/arb/app_es.arb -------------------------------------------------------------------------------- /lib/l10n/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/l10n/l10n.dart -------------------------------------------------------------------------------- /lib/main_development.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/main_development.dart -------------------------------------------------------------------------------- /lib/main_production.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/main_production.dart -------------------------------------------------------------------------------- /lib/main_staging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/main_staging.dart -------------------------------------------------------------------------------- /lib/rocket_details/cubit/rocket_details_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/rocket_details/cubit/rocket_details_cubit.dart -------------------------------------------------------------------------------- /lib/rocket_details/cubit/rocket_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/rocket_details/cubit/rocket_details_state.dart -------------------------------------------------------------------------------- /lib/rocket_details/rocket_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/rocket_details/rocket_details.dart -------------------------------------------------------------------------------- /lib/rocket_details/view/rocket_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/rocket_details/view/rocket_details_page.dart -------------------------------------------------------------------------------- /lib/rockets/cubit/rockets_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/rockets/cubit/rockets_cubit.dart -------------------------------------------------------------------------------- /lib/rockets/cubit/rockets_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/rockets/cubit/rockets_state.dart -------------------------------------------------------------------------------- /lib/rockets/rockets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/rockets/rockets.dart -------------------------------------------------------------------------------- /lib/rockets/view/rockets_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/lib/rockets/view/rockets_page.dart -------------------------------------------------------------------------------- /packages/crew_member_repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/crew_member_repository/.gitignore -------------------------------------------------------------------------------- /packages/crew_member_repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/crew_member_repository/README.md -------------------------------------------------------------------------------- /packages/crew_member_repository/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/crew_member_repository/analysis_options.yaml -------------------------------------------------------------------------------- /packages/crew_member_repository/lib/crew_member_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/crew_member_repository/lib/crew_member_repository.dart -------------------------------------------------------------------------------- /packages/crew_member_repository/lib/src/crew_member_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/crew_member_repository/lib/src/crew_member_repository.dart -------------------------------------------------------------------------------- /packages/crew_member_repository/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/crew_member_repository/pubspec.yaml -------------------------------------------------------------------------------- /packages/crew_member_repository/test/crew_member_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/crew_member_repository/test/crew_member_repository_test.dart -------------------------------------------------------------------------------- /packages/rocket_repository/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/rocket_repository/analysis_options.yaml -------------------------------------------------------------------------------- /packages/rocket_repository/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/rocket_repository/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/rocket_repository/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/rocket_repository/example/lib/main.dart -------------------------------------------------------------------------------- /packages/rocket_repository/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/rocket_repository/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/rocket_repository/lib/rocket_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/rocket_repository/lib/rocket_repository.dart -------------------------------------------------------------------------------- /packages/rocket_repository/lib/src/rocket_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/rocket_repository/lib/src/rocket_repository.dart -------------------------------------------------------------------------------- /packages/rocket_repository/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/rocket_repository/pubspec.yaml -------------------------------------------------------------------------------- /packages/rocket_repository/test/rocket_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/rocket_repository/test/rocket_repository_test.dart -------------------------------------------------------------------------------- /packages/spacex_api/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/analysis_options.yaml -------------------------------------------------------------------------------- /packages/spacex_api/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/spacex_api/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/example/lib/main.dart -------------------------------------------------------------------------------- /packages/spacex_api/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/spacex_api/lib/spacex_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/lib/spacex_api.dart -------------------------------------------------------------------------------- /packages/spacex_api/lib/src/models/crew_member.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/lib/src/models/crew_member.dart -------------------------------------------------------------------------------- /packages/spacex_api/lib/src/models/crew_member.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/lib/src/models/crew_member.g.dart -------------------------------------------------------------------------------- /packages/spacex_api/lib/src/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/lib/src/models/models.dart -------------------------------------------------------------------------------- /packages/spacex_api/lib/src/models/rocket.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/lib/src/models/rocket.dart -------------------------------------------------------------------------------- /packages/spacex_api/lib/src/models/rocket.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/lib/src/models/rocket.g.dart -------------------------------------------------------------------------------- /packages/spacex_api/lib/src/spacex_api_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/lib/src/spacex_api_client.dart -------------------------------------------------------------------------------- /packages/spacex_api/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/pubspec.yaml -------------------------------------------------------------------------------- /packages/spacex_api/test/models/crew_member_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/test/models/crew_member_test.dart -------------------------------------------------------------------------------- /packages/spacex_api/test/models/rocket_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/test/models/rocket_test.dart -------------------------------------------------------------------------------- /packages/spacex_api/test/spacex_api_client_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/packages/spacex_api/test/spacex_api_client_test.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /slides/recipe_for_a_very_good_app.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/slides/recipe_for_a_very_good_app.pdf -------------------------------------------------------------------------------- /test/app/app_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/app/app_test.dart -------------------------------------------------------------------------------- /test/crew/cubit/crew_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/crew/cubit/crew_cubit_test.dart -------------------------------------------------------------------------------- /test/crew/cubit/crew_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/crew/cubit/crew_state_test.dart -------------------------------------------------------------------------------- /test/crew/view/crew_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/crew/view/crew_page_test.dart -------------------------------------------------------------------------------- /test/crew_member_details/cubit/crew_member_details_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/crew_member_details/cubit/crew_member_details_cubit_test.dart -------------------------------------------------------------------------------- /test/crew_member_details/cubit/crew_member_details_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/crew_member_details/cubit/crew_member_details_state_test.dart -------------------------------------------------------------------------------- /test/crew_member_details/view/crew_member_details_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/crew_member_details/view/crew_member_details_page_test.dart -------------------------------------------------------------------------------- /test/helpers/helpers.dart: -------------------------------------------------------------------------------- 1 | export 'pump_app.dart'; 2 | -------------------------------------------------------------------------------- /test/helpers/pump_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/helpers/pump_app.dart -------------------------------------------------------------------------------- /test/home/view/home_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/home/view/home_page_test.dart -------------------------------------------------------------------------------- /test/home/widgets/home_page_content_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/home/widgets/home_page_content_test.dart -------------------------------------------------------------------------------- /test/rocket_details/cubit/rocket_details_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/rocket_details/cubit/rocket_details_cubit_test.dart -------------------------------------------------------------------------------- /test/rocket_details/cubit/rocket_details_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/rocket_details/cubit/rocket_details_state_test.dart -------------------------------------------------------------------------------- /test/rocket_details/view/rocket_details_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/rocket_details/view/rocket_details_page_test.dart -------------------------------------------------------------------------------- /test/rockets/cubit/rockets_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/rockets/cubit/rockets_cubit_test.dart -------------------------------------------------------------------------------- /test/rockets/cubit/rockets_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/rockets/cubit/rockets_state_test.dart -------------------------------------------------------------------------------- /test/rockets/view/rockets_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/test/rockets/view/rockets_page_test.dart -------------------------------------------------------------------------------- /tool/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/tool/coverage.sh -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/web/icons/favicon.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/spacex_demo/HEAD/web/manifest.json --------------------------------------------------------------------------------