├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── kotlin │ │ │ │ └── app │ │ │ │ │ └── tankste │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── TanksteApplication.kt │ │ │ └── res │ │ │ │ ├── drawable-night │ │ │ │ └── ic_logo.xml │ │ │ │ ├── drawable │ │ │ │ ├── bg_splash_legacy.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_logo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── colors.xml │ │ │ │ ├── values-v31 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── car │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── app │ │ │ │ └── tankste │ │ │ │ └── car │ │ │ │ ├── CarService.kt │ │ │ │ ├── di │ │ │ │ └── CarModule.kt │ │ │ │ └── ui │ │ │ │ └── list │ │ │ │ ├── ListScreen.kt │ │ │ │ └── ListViewModel.kt │ │ │ └── res │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ └── car.xml │ ├── core │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── navigation │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── app │ │ │ └── tankste │ │ │ └── navigation │ │ │ ├── di │ │ │ └── NavigationModule.kt │ │ │ ├── model │ │ │ └── CoordinateModel.kt │ │ │ ├── repository │ │ │ ├── GoogleLocationRepository.kt │ │ │ └── LocationRepository.kt │ │ │ └── util │ │ │ └── DistanceCalculator.kt │ ├── settings.gradle │ └── station │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── app │ │ └── tankste │ │ └── station │ │ ├── api │ │ └── TankerkoenigApi.kt │ │ ├── di │ │ └── StationModule.kt │ │ ├── model │ │ └── StationModel.kt │ │ ├── repository │ │ ├── FlutterPreferencesRepository.kt │ │ ├── PreferencesRepository.kt │ │ ├── StationListDto.kt │ │ ├── StationRepository.kt │ │ └── TankerkoenigStationRepository.kt │ │ └── usecase │ │ ├── GetStationsUseCase.kt │ │ └── GetStationsUseCaseImpl.kt ├── assets │ ├── google_maps │ │ └── styles │ │ │ ├── dark.json │ │ │ └── light.json │ ├── images │ │ └── markers │ │ │ ├── 0.75x │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── orange.png │ │ │ └── red.png │ │ │ ├── 1.5x │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── orange.png │ │ │ └── red.png │ │ │ ├── 2.0x │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── orange.png │ │ │ └── red.png │ │ │ ├── 3.0x │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── orange.png │ │ │ └── red.png │ │ │ ├── 4.0x │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── orange.png │ │ │ └── red.png │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── orange.png │ │ │ └── red.png │ └── translations │ │ ├── de.yaml │ │ ├── en.yaml │ │ └── is.yaml ├── config.json ├── ios │ ├── .gitignore │ ├── Config.xcconfig │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── 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 │ │ ├── LaunchBackground.colorset │ │ │ └── Contents.json │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── README.md │ │ │ ├── logo_fg 1.png │ │ │ ├── logo_fg.png │ │ │ ├── logo_fg@2x 1.png │ │ │ ├── logo_fg@2x.png │ │ │ ├── logo_fg@3x 1.png │ │ │ └── logo_fg@3x.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── app │ │ └── cubit │ │ │ ├── app_cubit.dart │ │ │ └── app_state.dart │ ├── main.dart │ └── theme.dart ├── pubspec.lock └── pubspec.yaml ├── clean.sh ├── core ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── assets │ └── images │ │ └── logo_foreground.png ├── lib │ ├── app │ │ ├── model │ │ │ └── app_info_model.dart │ │ └── repository │ │ │ └── app_info_repository.dart │ ├── common │ │ └── future.dart │ ├── config │ │ ├── config_repository.dart │ │ └── model │ │ │ └── config_model.dart │ ├── cubit │ │ └── base_state.dart │ ├── device │ │ ├── model │ │ │ └── device_model.dart │ │ └── repository │ │ │ ├── device_repository.dart │ │ │ └── dto │ │ │ └── device_dto.dart │ ├── di │ │ └── core_module_factory.dart │ └── log │ │ ├── feature_filter.dart │ │ └── log.dart ├── pubspec.lock └── pubspec.yaml ├── get-deps.sh ├── map ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── lib │ ├── di │ │ └── map_module_factory.dart │ ├── model │ │ └── camera_position_model.dart │ ├── repository │ │ └── camera_position_repository.dart │ ├── ui │ │ ├── apple │ │ │ └── apple_map_widget.dart │ │ ├── cubit │ │ │ ├── map_cubit.dart │ │ │ └── map_state.dart │ │ ├── generic │ │ │ ├── generic_map.dart │ │ │ └── map_adapter.dart │ │ ├── google │ │ │ ├── google_map_adapter.dart │ │ │ └── google_map_renderer.dart │ │ └── maplibre │ │ │ └── map_libre_map_adapter.dart │ └── usecase │ │ └── get_map_provider_use_case.dart ├── pubspec.lock └── pubspec.yaml ├── navigation ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── lib │ ├── coordinate_model.dart │ ├── repository │ │ ├── location_repository.dart │ │ └── route_repository.dart │ ├── route_model.dart │ ├── ui │ │ └── preview │ │ │ ├── cubit │ │ │ ├── route_preview_cubit.dart │ │ │ └── route_preview_state.dart │ │ │ └── route_preview.dart │ ├── usecase │ │ └── get_route_preview_use_case.dart │ └── util.dart ├── pubspec.lock └── pubspec.yaml ├── report ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── lib │ ├── di │ │ └── report_module_factory.dart │ ├── model │ │ ├── config_model.dart │ │ └── report_model.dart │ ├── repository │ │ ├── config_repository.dart │ │ ├── dto │ │ │ └── report_dto.dart │ │ └── report_repository.dart │ └── ui │ │ └── form │ │ ├── availability_selection_dialog.dart │ │ ├── cubit │ │ ├── report_form_cubit.dart │ │ └── report_form_state.dart │ │ ├── open_time_state_selection_dialog.dart │ │ └── report_form_page.dart ├── pubspec.lock └── pubspec.yaml ├── settings ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── lib │ ├── di │ │ └── settings_module_factory.dart │ ├── model │ │ ├── developer_settings_model.dart │ │ ├── map_destination_model.dart │ │ ├── map_provider_model.dart │ │ └── permission_model.dart │ ├── repository │ │ ├── developer_settings_repository.dart │ │ ├── log_repository.dart │ │ ├── map_destination_repository.dart │ │ ├── map_provider_repository.dart │ │ ├── permission_repository.dart │ │ └── theme_repository.dart │ ├── ui │ │ ├── currency │ │ │ ├── cubit │ │ │ │ ├── currency_item_cubit.dart │ │ │ │ └── currency_item_state.dart │ │ │ ├── currency_item.dart │ │ │ └── currency_selection_dialog.dart │ │ ├── custom_switch_list_tile.dart │ │ ├── developer │ │ │ ├── cubit │ │ │ │ ├── developer_card_cubit.dart │ │ │ │ └── developer_card_state.dart │ │ │ └── developer_card.dart │ │ ├── feature │ │ │ ├── cubit │ │ │ │ ├── feature_settings_cubit.dart │ │ │ │ └── feature_settings_state.dart │ │ │ └── feature_settings_page.dart │ │ ├── log │ │ │ └── log_page.dart │ │ ├── map │ │ │ ├── cubit │ │ │ │ ├── map_provider_item_cubit.dart │ │ │ │ └── map_provider_item_state.dart │ │ │ └── map_provider_item.dart │ │ ├── navigation │ │ │ ├── cubit │ │ │ │ ├── map_destination_item_cubit.dart │ │ │ │ └── map_destination_item_state.dart │ │ │ ├── map_destination_item.dart │ │ │ └── map_destination_selection_dialog.dart │ │ ├── settings │ │ │ ├── settings_card.dart │ │ │ └── settings_page.dart │ │ ├── support │ │ │ ├── cubit │ │ │ │ ├── support_card_cubit.dart │ │ │ │ └── support_card_state.dart │ │ │ └── support_card.dart │ │ ├── theme │ │ │ ├── cubit │ │ │ │ ├── theme_item_cubit.dart │ │ │ │ └── theme_item_state.dart │ │ │ ├── theme_item.dart │ │ │ └── theme_selection_dialog.dart │ │ └── version │ │ │ ├── cubit │ │ │ ├── version_item_cubit.dart │ │ │ └── version_item_state.dart │ │ │ └── version_item.dart │ └── usecase │ │ └── get_app_version_use_case.dart ├── pubspec.lock └── pubspec.yaml ├── sponsor ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── assets │ └── lottie │ │ └── thank_you.json ├── lib │ ├── di │ │ └── sponsor_module_factory.dart │ ├── model │ │ ├── apple_purchase_model.dart │ │ ├── balance_model.dart │ │ ├── comment_model.dart │ │ ├── config_model.dart │ │ ├── play_purchase_model.dart │ │ ├── product_model.dart │ │ ├── purchase_model.dart │ │ └── sponsorship_model.dart │ ├── repository │ │ ├── balance_repository.dart │ │ ├── comment_repository.dart │ │ ├── config_repository.dart │ │ ├── dto │ │ │ ├── apple_purchase_dto.dart │ │ │ ├── balance_dto.dart │ │ │ ├── comment_dto.dart │ │ │ ├── play_purchase_dto.dart │ │ │ └── sponsorship_dto.dart │ │ ├── product_repository.dart │ │ ├── purchase_repository.dart │ │ ├── sponsorship_repository.dart │ │ └── transaction_device_repository.dart │ └── ui │ │ ├── comment │ │ ├── form │ │ │ ├── comment_form_page.dart │ │ │ └── cubit │ │ │ │ ├── comment_form_cubit.dart │ │ │ │ └── comment_form_state.dart │ │ └── list │ │ │ ├── comment_container.dart │ │ │ └── cubit │ │ │ ├── comment_cubit.dart │ │ │ └── comment_state.dart │ │ ├── offer │ │ ├── cubit │ │ │ ├── offer_cubit.dart │ │ │ └── offer_state.dart │ │ └── offer_container.dart │ │ └── overview │ │ ├── cubit │ │ ├── overview_cubit.dart │ │ └── overview_state.dart │ │ └── overview_page.dart └── pubspec.yaml ├── station ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── lib │ ├── di │ │ └── station_module_factory.dart │ ├── model │ │ ├── config_model.dart │ │ ├── currency_model.dart │ │ ├── marker_model.dart │ │ ├── open_time.dart │ │ ├── origin_model.dart │ │ ├── price_model.dart │ │ └── station_model.dart │ ├── repository │ │ ├── config_repository.dart │ │ ├── currency_repository.dart │ │ ├── dto │ │ │ ├── marker_dto.dart │ │ │ ├── open_time_dto.dart │ │ │ ├── origin_dto.dart │ │ │ ├── price_dto.dart │ │ │ └── station_dto.dart │ │ ├── marker_repository.dart │ │ ├── open_time_repository.dart │ │ ├── origin_repository.dart │ │ ├── price_repository.dart │ │ └── station_repository.dart │ └── ui │ │ ├── details │ │ ├── cubit │ │ │ ├── station_details_cubit.dart │ │ │ └── station_details_state.dart │ │ └── station_details_page.dart │ │ ├── map │ │ ├── cubit │ │ │ ├── station_map_cubit.dart │ │ │ └── station_map_state.dart │ │ ├── filter_dialog.dart │ │ └── station_map_page.dart │ │ └── price_format.dart ├── pubspec.lock └── pubspec.yaml └── upgrade-deps.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/.metadata -------------------------------------------------------------------------------- /app/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/analysis_options.yaml -------------------------------------------------------------------------------- /app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/.gitignore -------------------------------------------------------------------------------- /app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/build.gradle -------------------------------------------------------------------------------- /app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/android/app/src/main/kotlin/app/tankste/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/kotlin/app/tankste/MainActivity.kt -------------------------------------------------------------------------------- /app/android/app/src/main/kotlin/app/tankste/TanksteApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/kotlin/app/tankste/TanksteApplication.kt -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable-night/ic_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/drawable-night/ic_logo.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/bg_splash_legacy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/drawable/bg_splash_legacy.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/ic_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/drawable/ic_logo.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/build.gradle -------------------------------------------------------------------------------- /app/android/car/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/android/car/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/build.gradle -------------------------------------------------------------------------------- /app/android/car/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/proguard-rules.pro -------------------------------------------------------------------------------- /app/android/car/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/car/src/main/java/app/tankste/car/CarService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/src/main/java/app/tankste/car/CarService.kt -------------------------------------------------------------------------------- /app/android/car/src/main/java/app/tankste/car/di/CarModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/src/main/java/app/tankste/car/di/CarModule.kt -------------------------------------------------------------------------------- /app/android/car/src/main/java/app/tankste/car/ui/list/ListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/src/main/java/app/tankste/car/ui/list/ListScreen.kt -------------------------------------------------------------------------------- /app/android/car/src/main/java/app/tankste/car/ui/list/ListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/src/main/java/app/tankste/car/ui/list/ListViewModel.kt -------------------------------------------------------------------------------- /app/android/car/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/android/car/src/main/res/xml/car.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/car/src/main/res/xml/car.xml -------------------------------------------------------------------------------- /app/android/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/android/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/core/build.gradle -------------------------------------------------------------------------------- /app/android/core/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/core/proguard-rules.pro -------------------------------------------------------------------------------- /app/android/core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/core/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/core/src/main/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/core/src/main/res/values/config.xml -------------------------------------------------------------------------------- /app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/gradle.properties -------------------------------------------------------------------------------- /app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app/android/navigation/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/android/navigation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/navigation/build.gradle -------------------------------------------------------------------------------- /app/android/navigation/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/android/navigation/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/navigation/proguard-rules.pro -------------------------------------------------------------------------------- /app/android/navigation/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/navigation/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/navigation/src/main/java/app/tankste/navigation/di/NavigationModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/navigation/src/main/java/app/tankste/navigation/di/NavigationModule.kt -------------------------------------------------------------------------------- /app/android/navigation/src/main/java/app/tankste/navigation/model/CoordinateModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/navigation/src/main/java/app/tankste/navigation/model/CoordinateModel.kt -------------------------------------------------------------------------------- /app/android/navigation/src/main/java/app/tankste/navigation/repository/GoogleLocationRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/navigation/src/main/java/app/tankste/navigation/repository/GoogleLocationRepository.kt -------------------------------------------------------------------------------- /app/android/navigation/src/main/java/app/tankste/navigation/repository/LocationRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/navigation/src/main/java/app/tankste/navigation/repository/LocationRepository.kt -------------------------------------------------------------------------------- /app/android/navigation/src/main/java/app/tankste/navigation/util/DistanceCalculator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/navigation/src/main/java/app/tankste/navigation/util/DistanceCalculator.kt -------------------------------------------------------------------------------- /app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/settings.gradle -------------------------------------------------------------------------------- /app/android/station/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/android/station/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/build.gradle -------------------------------------------------------------------------------- /app/android/station/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/proguard-rules.pro -------------------------------------------------------------------------------- /app/android/station/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/api/TankerkoenigApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/api/TankerkoenigApi.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/di/StationModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/di/StationModule.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/model/StationModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/model/StationModel.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/repository/FlutterPreferencesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/repository/FlutterPreferencesRepository.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/repository/PreferencesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/repository/PreferencesRepository.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/repository/StationListDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/repository/StationListDto.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/repository/StationRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/repository/StationRepository.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/repository/TankerkoenigStationRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/repository/TankerkoenigStationRepository.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/usecase/GetStationsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/usecase/GetStationsUseCase.kt -------------------------------------------------------------------------------- /app/android/station/src/main/java/app/tankste/station/usecase/GetStationsUseCaseImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/android/station/src/main/java/app/tankste/station/usecase/GetStationsUseCaseImpl.kt -------------------------------------------------------------------------------- /app/assets/google_maps/styles/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/google_maps/styles/dark.json -------------------------------------------------------------------------------- /app/assets/google_maps/styles/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/google_maps/styles/light.json -------------------------------------------------------------------------------- /app/assets/images/markers/0.75x/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/0.75x/green.png -------------------------------------------------------------------------------- /app/assets/images/markers/0.75x/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/0.75x/grey.png -------------------------------------------------------------------------------- /app/assets/images/markers/0.75x/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/0.75x/orange.png -------------------------------------------------------------------------------- /app/assets/images/markers/0.75x/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/0.75x/red.png -------------------------------------------------------------------------------- /app/assets/images/markers/1.5x/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/1.5x/green.png -------------------------------------------------------------------------------- /app/assets/images/markers/1.5x/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/1.5x/grey.png -------------------------------------------------------------------------------- /app/assets/images/markers/1.5x/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/1.5x/orange.png -------------------------------------------------------------------------------- /app/assets/images/markers/1.5x/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/1.5x/red.png -------------------------------------------------------------------------------- /app/assets/images/markers/2.0x/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/2.0x/green.png -------------------------------------------------------------------------------- /app/assets/images/markers/2.0x/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/2.0x/grey.png -------------------------------------------------------------------------------- /app/assets/images/markers/2.0x/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/2.0x/orange.png -------------------------------------------------------------------------------- /app/assets/images/markers/2.0x/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/2.0x/red.png -------------------------------------------------------------------------------- /app/assets/images/markers/3.0x/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/3.0x/green.png -------------------------------------------------------------------------------- /app/assets/images/markers/3.0x/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/3.0x/grey.png -------------------------------------------------------------------------------- /app/assets/images/markers/3.0x/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/3.0x/orange.png -------------------------------------------------------------------------------- /app/assets/images/markers/3.0x/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/3.0x/red.png -------------------------------------------------------------------------------- /app/assets/images/markers/4.0x/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/4.0x/green.png -------------------------------------------------------------------------------- /app/assets/images/markers/4.0x/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/4.0x/grey.png -------------------------------------------------------------------------------- /app/assets/images/markers/4.0x/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/4.0x/orange.png -------------------------------------------------------------------------------- /app/assets/images/markers/4.0x/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/4.0x/red.png -------------------------------------------------------------------------------- /app/assets/images/markers/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/green.png -------------------------------------------------------------------------------- /app/assets/images/markers/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/grey.png -------------------------------------------------------------------------------- /app/assets/images/markers/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/orange.png -------------------------------------------------------------------------------- /app/assets/images/markers/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/images/markers/red.png -------------------------------------------------------------------------------- /app/assets/translations/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/translations/de.yaml -------------------------------------------------------------------------------- /app/assets/translations/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/translations/en.yaml -------------------------------------------------------------------------------- /app/assets/translations/is.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/assets/translations/is.yaml -------------------------------------------------------------------------------- /app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/config.json -------------------------------------------------------------------------------- /app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/.gitignore -------------------------------------------------------------------------------- /app/ios/Config.xcconfig: -------------------------------------------------------------------------------- 1 | 2 | // TODO: create this auto-generated by `config.json` 3 | GOOGLE_MAPS_KEY = 4 | -------------------------------------------------------------------------------- /app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /app/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Podfile -------------------------------------------------------------------------------- /app/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Podfile.lock -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchBackground.colorset/Contents.json -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg 1.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg@2x 1.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg@2x.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg@3x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg@3x 1.png -------------------------------------------------------------------------------- /app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/logo_fg@3x.png -------------------------------------------------------------------------------- /app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /app/lib/app/cubit/app_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/lib/app/cubit/app_cubit.dart -------------------------------------------------------------------------------- /app/lib/app/cubit/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/lib/app/cubit/app_state.dart -------------------------------------------------------------------------------- /app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/lib/main.dart -------------------------------------------------------------------------------- /app/lib/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/lib/theme.dart -------------------------------------------------------------------------------- /app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/pubspec.lock -------------------------------------------------------------------------------- /app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/app/pubspec.yaml -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/clean.sh -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/.gitignore -------------------------------------------------------------------------------- /core/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/.metadata -------------------------------------------------------------------------------- /core/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/analysis_options.yaml -------------------------------------------------------------------------------- /core/assets/images/logo_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/assets/images/logo_foreground.png -------------------------------------------------------------------------------- /core/lib/app/model/app_info_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/app/model/app_info_model.dart -------------------------------------------------------------------------------- /core/lib/app/repository/app_info_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/app/repository/app_info_repository.dart -------------------------------------------------------------------------------- /core/lib/common/future.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/common/future.dart -------------------------------------------------------------------------------- /core/lib/config/config_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/config/config_repository.dart -------------------------------------------------------------------------------- /core/lib/config/model/config_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/config/model/config_model.dart -------------------------------------------------------------------------------- /core/lib/cubit/base_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/cubit/base_state.dart -------------------------------------------------------------------------------- /core/lib/device/model/device_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/device/model/device_model.dart -------------------------------------------------------------------------------- /core/lib/device/repository/device_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/device/repository/device_repository.dart -------------------------------------------------------------------------------- /core/lib/device/repository/dto/device_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/device/repository/dto/device_dto.dart -------------------------------------------------------------------------------- /core/lib/di/core_module_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/di/core_module_factory.dart -------------------------------------------------------------------------------- /core/lib/log/feature_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/log/feature_filter.dart -------------------------------------------------------------------------------- /core/lib/log/log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/lib/log/log.dart -------------------------------------------------------------------------------- /core/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/pubspec.lock -------------------------------------------------------------------------------- /core/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/core/pubspec.yaml -------------------------------------------------------------------------------- /get-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/get-deps.sh -------------------------------------------------------------------------------- /map/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/.gitignore -------------------------------------------------------------------------------- /map/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/.metadata -------------------------------------------------------------------------------- /map/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/analysis_options.yaml -------------------------------------------------------------------------------- /map/lib/di/map_module_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/di/map_module_factory.dart -------------------------------------------------------------------------------- /map/lib/model/camera_position_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/model/camera_position_model.dart -------------------------------------------------------------------------------- /map/lib/repository/camera_position_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/repository/camera_position_repository.dart -------------------------------------------------------------------------------- /map/lib/ui/apple/apple_map_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/ui/apple/apple_map_widget.dart -------------------------------------------------------------------------------- /map/lib/ui/cubit/map_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/ui/cubit/map_cubit.dart -------------------------------------------------------------------------------- /map/lib/ui/cubit/map_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/ui/cubit/map_state.dart -------------------------------------------------------------------------------- /map/lib/ui/generic/generic_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/ui/generic/generic_map.dart -------------------------------------------------------------------------------- /map/lib/ui/generic/map_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/ui/generic/map_adapter.dart -------------------------------------------------------------------------------- /map/lib/ui/google/google_map_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/ui/google/google_map_adapter.dart -------------------------------------------------------------------------------- /map/lib/ui/google/google_map_renderer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/ui/google/google_map_renderer.dart -------------------------------------------------------------------------------- /map/lib/ui/maplibre/map_libre_map_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/ui/maplibre/map_libre_map_adapter.dart -------------------------------------------------------------------------------- /map/lib/usecase/get_map_provider_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/lib/usecase/get_map_provider_use_case.dart -------------------------------------------------------------------------------- /map/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/pubspec.lock -------------------------------------------------------------------------------- /map/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/map/pubspec.yaml -------------------------------------------------------------------------------- /navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/.gitignore -------------------------------------------------------------------------------- /navigation/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/.metadata -------------------------------------------------------------------------------- /navigation/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/analysis_options.yaml -------------------------------------------------------------------------------- /navigation/lib/coordinate_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/coordinate_model.dart -------------------------------------------------------------------------------- /navigation/lib/repository/location_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/repository/location_repository.dart -------------------------------------------------------------------------------- /navigation/lib/repository/route_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/repository/route_repository.dart -------------------------------------------------------------------------------- /navigation/lib/route_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/route_model.dart -------------------------------------------------------------------------------- /navigation/lib/ui/preview/cubit/route_preview_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/ui/preview/cubit/route_preview_cubit.dart -------------------------------------------------------------------------------- /navigation/lib/ui/preview/cubit/route_preview_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/ui/preview/cubit/route_preview_state.dart -------------------------------------------------------------------------------- /navigation/lib/ui/preview/route_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/ui/preview/route_preview.dart -------------------------------------------------------------------------------- /navigation/lib/usecase/get_route_preview_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/usecase/get_route_preview_use_case.dart -------------------------------------------------------------------------------- /navigation/lib/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/lib/util.dart -------------------------------------------------------------------------------- /navigation/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/pubspec.lock -------------------------------------------------------------------------------- /navigation/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/navigation/pubspec.yaml -------------------------------------------------------------------------------- /report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/.gitignore -------------------------------------------------------------------------------- /report/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/.metadata -------------------------------------------------------------------------------- /report/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/analysis_options.yaml -------------------------------------------------------------------------------- /report/lib/di/report_module_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/di/report_module_factory.dart -------------------------------------------------------------------------------- /report/lib/model/config_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/model/config_model.dart -------------------------------------------------------------------------------- /report/lib/model/report_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/model/report_model.dart -------------------------------------------------------------------------------- /report/lib/repository/config_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/repository/config_repository.dart -------------------------------------------------------------------------------- /report/lib/repository/dto/report_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/repository/dto/report_dto.dart -------------------------------------------------------------------------------- /report/lib/repository/report_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/repository/report_repository.dart -------------------------------------------------------------------------------- /report/lib/ui/form/availability_selection_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/ui/form/availability_selection_dialog.dart -------------------------------------------------------------------------------- /report/lib/ui/form/cubit/report_form_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/ui/form/cubit/report_form_cubit.dart -------------------------------------------------------------------------------- /report/lib/ui/form/cubit/report_form_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/ui/form/cubit/report_form_state.dart -------------------------------------------------------------------------------- /report/lib/ui/form/open_time_state_selection_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/ui/form/open_time_state_selection_dialog.dart -------------------------------------------------------------------------------- /report/lib/ui/form/report_form_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/lib/ui/form/report_form_page.dart -------------------------------------------------------------------------------- /report/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/pubspec.lock -------------------------------------------------------------------------------- /report/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/report/pubspec.yaml -------------------------------------------------------------------------------- /settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/.gitignore -------------------------------------------------------------------------------- /settings/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/.metadata -------------------------------------------------------------------------------- /settings/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/analysis_options.yaml -------------------------------------------------------------------------------- /settings/lib/di/settings_module_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/di/settings_module_factory.dart -------------------------------------------------------------------------------- /settings/lib/model/developer_settings_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/model/developer_settings_model.dart -------------------------------------------------------------------------------- /settings/lib/model/map_destination_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/model/map_destination_model.dart -------------------------------------------------------------------------------- /settings/lib/model/map_provider_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/model/map_provider_model.dart -------------------------------------------------------------------------------- /settings/lib/model/permission_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/model/permission_model.dart -------------------------------------------------------------------------------- /settings/lib/repository/developer_settings_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/repository/developer_settings_repository.dart -------------------------------------------------------------------------------- /settings/lib/repository/log_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/repository/log_repository.dart -------------------------------------------------------------------------------- /settings/lib/repository/map_destination_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/repository/map_destination_repository.dart -------------------------------------------------------------------------------- /settings/lib/repository/map_provider_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/repository/map_provider_repository.dart -------------------------------------------------------------------------------- /settings/lib/repository/permission_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/repository/permission_repository.dart -------------------------------------------------------------------------------- /settings/lib/repository/theme_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/repository/theme_repository.dart -------------------------------------------------------------------------------- /settings/lib/ui/currency/cubit/currency_item_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/currency/cubit/currency_item_cubit.dart -------------------------------------------------------------------------------- /settings/lib/ui/currency/cubit/currency_item_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/currency/cubit/currency_item_state.dart -------------------------------------------------------------------------------- /settings/lib/ui/currency/currency_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/currency/currency_item.dart -------------------------------------------------------------------------------- /settings/lib/ui/currency/currency_selection_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/currency/currency_selection_dialog.dart -------------------------------------------------------------------------------- /settings/lib/ui/custom_switch_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/custom_switch_list_tile.dart -------------------------------------------------------------------------------- /settings/lib/ui/developer/cubit/developer_card_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/developer/cubit/developer_card_cubit.dart -------------------------------------------------------------------------------- /settings/lib/ui/developer/cubit/developer_card_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/developer/cubit/developer_card_state.dart -------------------------------------------------------------------------------- /settings/lib/ui/developer/developer_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/developer/developer_card.dart -------------------------------------------------------------------------------- /settings/lib/ui/feature/cubit/feature_settings_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/feature/cubit/feature_settings_cubit.dart -------------------------------------------------------------------------------- /settings/lib/ui/feature/cubit/feature_settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/feature/cubit/feature_settings_state.dart -------------------------------------------------------------------------------- /settings/lib/ui/feature/feature_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/feature/feature_settings_page.dart -------------------------------------------------------------------------------- /settings/lib/ui/log/log_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/log/log_page.dart -------------------------------------------------------------------------------- /settings/lib/ui/map/cubit/map_provider_item_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/map/cubit/map_provider_item_cubit.dart -------------------------------------------------------------------------------- /settings/lib/ui/map/cubit/map_provider_item_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/map/cubit/map_provider_item_state.dart -------------------------------------------------------------------------------- /settings/lib/ui/map/map_provider_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/map/map_provider_item.dart -------------------------------------------------------------------------------- /settings/lib/ui/navigation/cubit/map_destination_item_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/navigation/cubit/map_destination_item_cubit.dart -------------------------------------------------------------------------------- /settings/lib/ui/navigation/cubit/map_destination_item_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/navigation/cubit/map_destination_item_state.dart -------------------------------------------------------------------------------- /settings/lib/ui/navigation/map_destination_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/navigation/map_destination_item.dart -------------------------------------------------------------------------------- /settings/lib/ui/navigation/map_destination_selection_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/navigation/map_destination_selection_dialog.dart -------------------------------------------------------------------------------- /settings/lib/ui/settings/settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/settings/settings_card.dart -------------------------------------------------------------------------------- /settings/lib/ui/settings/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/settings/settings_page.dart -------------------------------------------------------------------------------- /settings/lib/ui/support/cubit/support_card_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/support/cubit/support_card_cubit.dart -------------------------------------------------------------------------------- /settings/lib/ui/support/cubit/support_card_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/support/cubit/support_card_state.dart -------------------------------------------------------------------------------- /settings/lib/ui/support/support_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/support/support_card.dart -------------------------------------------------------------------------------- /settings/lib/ui/theme/cubit/theme_item_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/theme/cubit/theme_item_cubit.dart -------------------------------------------------------------------------------- /settings/lib/ui/theme/cubit/theme_item_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/theme/cubit/theme_item_state.dart -------------------------------------------------------------------------------- /settings/lib/ui/theme/theme_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/theme/theme_item.dart -------------------------------------------------------------------------------- /settings/lib/ui/theme/theme_selection_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/theme/theme_selection_dialog.dart -------------------------------------------------------------------------------- /settings/lib/ui/version/cubit/version_item_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/version/cubit/version_item_cubit.dart -------------------------------------------------------------------------------- /settings/lib/ui/version/cubit/version_item_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/version/cubit/version_item_state.dart -------------------------------------------------------------------------------- /settings/lib/ui/version/version_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/ui/version/version_item.dart -------------------------------------------------------------------------------- /settings/lib/usecase/get_app_version_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/lib/usecase/get_app_version_use_case.dart -------------------------------------------------------------------------------- /settings/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/pubspec.lock -------------------------------------------------------------------------------- /settings/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/settings/pubspec.yaml -------------------------------------------------------------------------------- /sponsor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/.gitignore -------------------------------------------------------------------------------- /sponsor/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/.metadata -------------------------------------------------------------------------------- /sponsor/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/analysis_options.yaml -------------------------------------------------------------------------------- /sponsor/assets/lottie/thank_you.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/assets/lottie/thank_you.json -------------------------------------------------------------------------------- /sponsor/lib/di/sponsor_module_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/di/sponsor_module_factory.dart -------------------------------------------------------------------------------- /sponsor/lib/model/apple_purchase_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/model/apple_purchase_model.dart -------------------------------------------------------------------------------- /sponsor/lib/model/balance_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/model/balance_model.dart -------------------------------------------------------------------------------- /sponsor/lib/model/comment_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/model/comment_model.dart -------------------------------------------------------------------------------- /sponsor/lib/model/config_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/model/config_model.dart -------------------------------------------------------------------------------- /sponsor/lib/model/play_purchase_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/model/play_purchase_model.dart -------------------------------------------------------------------------------- /sponsor/lib/model/product_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/model/product_model.dart -------------------------------------------------------------------------------- /sponsor/lib/model/purchase_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/model/purchase_model.dart -------------------------------------------------------------------------------- /sponsor/lib/model/sponsorship_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/model/sponsorship_model.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/balance_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/balance_repository.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/comment_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/comment_repository.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/config_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/config_repository.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/dto/apple_purchase_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/dto/apple_purchase_dto.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/dto/balance_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/dto/balance_dto.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/dto/comment_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/dto/comment_dto.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/dto/play_purchase_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/dto/play_purchase_dto.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/dto/sponsorship_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/dto/sponsorship_dto.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/product_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/product_repository.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/purchase_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/purchase_repository.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/sponsorship_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/sponsorship_repository.dart -------------------------------------------------------------------------------- /sponsor/lib/repository/transaction_device_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/repository/transaction_device_repository.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/comment/form/comment_form_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/comment/form/comment_form_page.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/comment/form/cubit/comment_form_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/comment/form/cubit/comment_form_cubit.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/comment/form/cubit/comment_form_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/comment/form/cubit/comment_form_state.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/comment/list/comment_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/comment/list/comment_container.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/comment/list/cubit/comment_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/comment/list/cubit/comment_cubit.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/comment/list/cubit/comment_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/comment/list/cubit/comment_state.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/offer/cubit/offer_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/offer/cubit/offer_cubit.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/offer/cubit/offer_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/offer/cubit/offer_state.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/offer/offer_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/offer/offer_container.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/overview/cubit/overview_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/overview/cubit/overview_cubit.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/overview/cubit/overview_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/overview/cubit/overview_state.dart -------------------------------------------------------------------------------- /sponsor/lib/ui/overview/overview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/lib/ui/overview/overview_page.dart -------------------------------------------------------------------------------- /sponsor/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/sponsor/pubspec.yaml -------------------------------------------------------------------------------- /station/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/.gitignore -------------------------------------------------------------------------------- /station/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/.metadata -------------------------------------------------------------------------------- /station/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/analysis_options.yaml -------------------------------------------------------------------------------- /station/lib/di/station_module_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/di/station_module_factory.dart -------------------------------------------------------------------------------- /station/lib/model/config_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/model/config_model.dart -------------------------------------------------------------------------------- /station/lib/model/currency_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/model/currency_model.dart -------------------------------------------------------------------------------- /station/lib/model/marker_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/model/marker_model.dart -------------------------------------------------------------------------------- /station/lib/model/open_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/model/open_time.dart -------------------------------------------------------------------------------- /station/lib/model/origin_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/model/origin_model.dart -------------------------------------------------------------------------------- /station/lib/model/price_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/model/price_model.dart -------------------------------------------------------------------------------- /station/lib/model/station_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/model/station_model.dart -------------------------------------------------------------------------------- /station/lib/repository/config_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/config_repository.dart -------------------------------------------------------------------------------- /station/lib/repository/currency_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/currency_repository.dart -------------------------------------------------------------------------------- /station/lib/repository/dto/marker_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/dto/marker_dto.dart -------------------------------------------------------------------------------- /station/lib/repository/dto/open_time_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/dto/open_time_dto.dart -------------------------------------------------------------------------------- /station/lib/repository/dto/origin_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/dto/origin_dto.dart -------------------------------------------------------------------------------- /station/lib/repository/dto/price_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/dto/price_dto.dart -------------------------------------------------------------------------------- /station/lib/repository/dto/station_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/dto/station_dto.dart -------------------------------------------------------------------------------- /station/lib/repository/marker_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/marker_repository.dart -------------------------------------------------------------------------------- /station/lib/repository/open_time_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/open_time_repository.dart -------------------------------------------------------------------------------- /station/lib/repository/origin_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/origin_repository.dart -------------------------------------------------------------------------------- /station/lib/repository/price_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/price_repository.dart -------------------------------------------------------------------------------- /station/lib/repository/station_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/repository/station_repository.dart -------------------------------------------------------------------------------- /station/lib/ui/details/cubit/station_details_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/ui/details/cubit/station_details_cubit.dart -------------------------------------------------------------------------------- /station/lib/ui/details/cubit/station_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/ui/details/cubit/station_details_state.dart -------------------------------------------------------------------------------- /station/lib/ui/details/station_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/ui/details/station_details_page.dart -------------------------------------------------------------------------------- /station/lib/ui/map/cubit/station_map_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/ui/map/cubit/station_map_cubit.dart -------------------------------------------------------------------------------- /station/lib/ui/map/cubit/station_map_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/ui/map/cubit/station_map_state.dart -------------------------------------------------------------------------------- /station/lib/ui/map/filter_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/ui/map/filter_dialog.dart -------------------------------------------------------------------------------- /station/lib/ui/map/station_map_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/ui/map/station_map_page.dart -------------------------------------------------------------------------------- /station/lib/ui/price_format.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/lib/ui/price_format.dart -------------------------------------------------------------------------------- /station/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/pubspec.lock -------------------------------------------------------------------------------- /station/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/station/pubspec.yaml -------------------------------------------------------------------------------- /upgrade-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankste/app/HEAD/upgrade-deps.sh --------------------------------------------------------------------------------