├── lib
├── app
│ ├── app.dart
│ ├── views
│ │ ├── app.dart
│ │ └── car_dash.dart
│ └── widgets
│ │ ├── dash_navigation_bar.dart
│ │ ├── dash_icon_bar_control.dart
│ │ ├── lock_control.dart
│ │ ├── dash_summary_item.dart
│ │ ├── dash_summary.dart
│ │ ├── car_area.dart
│ │ ├── dash_bar_control.dart
│ │ ├── dash_controls_area.dart
│ │ ├── dash_navigation_item.dart
│ │ ├── dash_control.dart
│ │ ├── controls_display.dart
│ │ ├── dash_map.dart
│ │ └── player_area.dart
├── main.dart
├── l10n
│ ├── arb
│ │ ├── app_en.arb
│ │ └── app_es.arb
│ └── l10n.dart
├── bootstrap.dart
└── configs
│ └── colors.dart
├── macos
├── Flutter
│ ├── Flutter-Debug.xcconfig
│ ├── Flutter-Release.xcconfig
│ └── GeneratedPluginRegistrant.swift
├── Runner
│ ├── Configs
│ │ ├── Debug.xcconfig
│ │ ├── Release.xcconfig
│ │ ├── Warnings.xcconfig
│ │ └── AppInfo.xcconfig
│ ├── Assets.xcassets
│ │ └── AppIcon.appiconset
│ │ │ ├── app_icon_1024.png
│ │ │ ├── app_icon_128.png
│ │ │ ├── app_icon_16.png
│ │ │ ├── app_icon_256.png
│ │ │ ├── app_icon_32.png
│ │ │ ├── app_icon_512.png
│ │ │ ├── app_icon_64.png
│ │ │ └── Contents.json
│ ├── AppDelegate.swift
│ ├── Release.entitlements
│ ├── MainFlutterWindow.swift
│ ├── DebugProfile.entitlements
│ ├── Info.plist
│ └── Base.lproj
│ │ └── MainMenu.xib
├── .gitignore
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
└── Runner.xcodeproj
│ ├── project.xcworkspace
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
│ ├── xcshareddata
│ └── xcschemes
│ │ └── Runner.xcscheme
│ └── project.pbxproj
├── screenshots
└── 1.png
├── assets
├── icons
│ ├── chart.png
│ ├── home.png
│ ├── music.png
│ ├── play.png
│ ├── send.png
│ ├── crumbs.png
│ ├── settings.png
│ ├── headlights.png
│ ├── park-lights.png
│ └── windscreen-wiper.png
└── images
│ ├── car.png
│ └── music.jpg
├── l10n.yaml
├── .github
├── dependabot.yaml
├── workflows
│ └── main.yaml
├── PULL_REQUEST_TEMPLATE.md
└── cspell.json
├── .vscode
├── extensions.json
└── launch.json
├── .idea
└── runConfigurations
│ └── Car_Dash.xml
├── analysis_options.yaml
├── pubspec.yaml
├── README.md
├── .metadata
├── coverage_badge.svg
├── .gitignore
└── pubspec.lock
/lib/app/app.dart:
--------------------------------------------------------------------------------
1 | export 'views/app.dart';
2 |
--------------------------------------------------------------------------------
/macos/Flutter/Flutter-Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "ephemeral/Flutter-Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/screenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/screenshots/1.png
--------------------------------------------------------------------------------
/macos/Flutter/Flutter-Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "ephemeral/Flutter-Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/assets/icons/chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/chart.png
--------------------------------------------------------------------------------
/assets/icons/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/home.png
--------------------------------------------------------------------------------
/assets/icons/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/music.png
--------------------------------------------------------------------------------
/assets/icons/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/play.png
--------------------------------------------------------------------------------
/assets/icons/send.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/send.png
--------------------------------------------------------------------------------
/assets/images/car.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/images/car.png
--------------------------------------------------------------------------------
/assets/icons/crumbs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/crumbs.png
--------------------------------------------------------------------------------
/assets/icons/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/settings.png
--------------------------------------------------------------------------------
/assets/images/music.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/images/music.jpg
--------------------------------------------------------------------------------
/assets/icons/headlights.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/headlights.png
--------------------------------------------------------------------------------
/assets/icons/park-lights.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/park-lights.png
--------------------------------------------------------------------------------
/assets/icons/windscreen-wiper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/assets/icons/windscreen-wiper.png
--------------------------------------------------------------------------------
/macos/Runner/Configs/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "../../Flutter/Flutter-Debug.xcconfig"
2 | #include "Warnings.xcconfig"
3 |
--------------------------------------------------------------------------------
/macos/Runner/Configs/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "../../Flutter/Flutter-Release.xcconfig"
2 | #include "Warnings.xcconfig"
3 |
--------------------------------------------------------------------------------
/macos/.gitignore:
--------------------------------------------------------------------------------
1 | # Flutter-related
2 | **/Flutter/ephemeral/
3 | **/Pods/
4 |
5 | # Xcode-related
6 | **/dgph
7 | **/xcuserdata/
8 |
--------------------------------------------------------------------------------
/lib/main.dart:
--------------------------------------------------------------------------------
1 | import 'app/views/app.dart';
2 | import 'bootstrap.dart';
3 |
4 | void main() {
5 | bootstrap(() => const App());
6 | }
7 |
--------------------------------------------------------------------------------
/l10n.yaml:
--------------------------------------------------------------------------------
1 | arb-dir: lib/l10n/arb
2 | template-arb-file: app_en.arb
3 | output-localization-file: app_localizations.dart
4 | nullable-getter: false
5 |
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/iamngoni/car_dash/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
--------------------------------------------------------------------------------
/lib/l10n/arb/app_en.arb:
--------------------------------------------------------------------------------
1 | {
2 | "@@locale": "en",
3 | "counterAppBarTitle": "Counter",
4 | "@counterAppBarTitle": {
5 | "description": "Text shown in the AppBar of the Counter Page"
6 | }
7 | }
--------------------------------------------------------------------------------
/lib/l10n/arb/app_es.arb:
--------------------------------------------------------------------------------
1 | {
2 | "@@locale": "es",
3 | "counterAppBarTitle": "Contador",
4 | "@counterAppBarTitle": {
5 | "description": "Texto mostrado en la AppBar de la página del contador"
6 | }
7 | }
--------------------------------------------------------------------------------
/macos/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/macos/Flutter/GeneratedPluginRegistrant.swift:
--------------------------------------------------------------------------------
1 | //
2 | // Generated file. Do not edit.
3 | //
4 |
5 | import FlutterMacOS
6 | import Foundation
7 |
8 |
9 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
10 | }
11 |
--------------------------------------------------------------------------------
/.github/dependabot.yaml:
--------------------------------------------------------------------------------
1 | version: 2
2 | updates:
3 | - package-ecosystem: "github-actions"
4 | directory: "/"
5 | schedule:
6 | interval: "daily"
7 | - package-ecosystem: "pub"
8 | directory: "/"
9 | schedule:
10 | interval: "daily"
11 |
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | // See https://go.microsoft.com/fwlink/?LinkId=827846
3 | // for the documentation about the extensions.json format
4 | "recommendations": [
5 | "dart-code.dart-code",
6 | "dart-code.flutter",
7 | "felixangelov.bloc"
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/macos/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import Cocoa
2 | import FlutterMacOS
3 |
4 | @NSApplicationMain
5 | class AppDelegate: FlutterAppDelegate {
6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
7 | return true
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/macos/Runner/Release.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.security.app-sandbox
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/lib/l10n/l10n.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/widgets.dart';
2 | import 'package:flutter_gen/gen_l10n/app_localizations.dart';
3 |
4 | export 'package:flutter_gen/gen_l10n/app_localizations.dart';
5 |
6 | extension AppLocalizationsX on BuildContext {
7 | AppLocalizations get l10n => AppLocalizations.of(this);
8 | }
9 |
--------------------------------------------------------------------------------
/.idea/runConfigurations/Car_Dash.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/macos/Runner/MainFlutterWindow.swift:
--------------------------------------------------------------------------------
1 | import Cocoa
2 | import FlutterMacOS
3 |
4 | class MainFlutterWindow: NSWindow {
5 | override func awakeFromNib() {
6 | let flutterViewController = FlutterViewController.init()
7 | let windowFrame = self.frame
8 | self.contentViewController = flutterViewController
9 | self.setFrame(windowFrame, display: true)
10 |
11 | RegisterGeneratedPlugins(registry: flutterViewController)
12 |
13 | super.awakeFromNib()
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/macos/Runner/DebugProfile.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.security.app-sandbox
6 |
7 | com.apple.security.cs.allow-jit
8 |
9 | com.apple.security.network.server
10 |
11 | com.apple.security.network.client
12 |
14 |
15 |
--------------------------------------------------------------------------------
/macos/Runner/Configs/Warnings.xcconfig:
--------------------------------------------------------------------------------
1 | WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings
2 | GCC_WARN_UNDECLARED_SELECTOR = YES
3 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES
4 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE
5 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
6 | CLANG_WARN_PRAGMA_PACK = YES
7 | CLANG_WARN_STRICT_PROTOTYPES = YES
8 | CLANG_WARN_COMMA = YES
9 | GCC_WARN_STRICT_SELECTOR_MATCH = YES
10 | CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES
11 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
12 | GCC_WARN_SHADOW = YES
13 | CLANG_WARN_UNREACHABLE_CODE = YES
14 |
--------------------------------------------------------------------------------
/macos/Runner/Configs/AppInfo.xcconfig:
--------------------------------------------------------------------------------
1 | // Application-level settings for the Runner target.
2 | //
3 | // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the
4 | // future. If not, the values below would default to using the project name when this becomes a
5 | // 'flutter create' template.
6 |
7 | // The application's name. By default this is also the title of the Flutter window.
8 | PRODUCT_NAME = car_dash
9 |
10 | // The application's bundle identifier
11 | PRODUCT_BUNDLE_IDENTIFIER = com.example.carDash
12 |
13 | // The copyright displayed in application information
14 | PRODUCT_COPYRIGHT = Copyright © 2023 com.example. All rights reserved.
15 |
--------------------------------------------------------------------------------
/analysis_options.yaml:
--------------------------------------------------------------------------------
1 | include: package:very_good_analysis/analysis_options.4.0.0.yaml
2 |
3 | analyzer:
4 | exclude: [lib/**.freezed.dart, lib/**.g.dart]
5 |
6 | language:
7 | strict-casts: true
8 | strict-raw-types: true
9 |
10 | linter:
11 | rules:
12 | avoid_relative_lib_imports: false
13 | public_member_api_docs: false
14 | lines_longer_than_80_chars: true
15 | avoid_dynamic_calls: true
16 | avoid_type_to_string: true
17 | always_declare_return_types: true
18 | always_specify_types: false
19 | omit_local_variable_types: false
20 | prefer_relative_imports: true
21 | always_use_package_imports: false
22 | avoid_setters_without_getters: false
--------------------------------------------------------------------------------
/lib/app/views/app.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | import '../../l10n/l10n.dart';
4 | import 'car_dash.dart';
5 |
6 | class App extends StatelessWidget {
7 | const App({super.key});
8 |
9 | @override
10 | Widget build(BuildContext context) {
11 | return MaterialApp(
12 | theme: ThemeData(
13 | appBarTheme: const AppBarTheme(color: Color(0xFF13B9FF)),
14 | colorScheme: ColorScheme.fromSwatch(
15 | accentColor: const Color(0xFF13B9FF),
16 | ),
17 | ),
18 | localizationsDelegates: AppLocalizations.localizationsDelegates,
19 | supportedLocales: AppLocalizations.supportedLocales,
20 | home: const CarDash(),
21 | );
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/.github/workflows/main.yaml:
--------------------------------------------------------------------------------
1 | name: car_dash
2 |
3 | concurrency:
4 | group: $-$
5 | cancel-in-progress: true
6 |
7 | on:
8 | push:
9 | branches:
10 | - main
11 | pull_request:
12 | branches:
13 | - main
14 |
15 | jobs:
16 | semantic-pull-request:
17 | uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
18 |
19 | build:
20 | uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
21 | with:
22 | flutter_channel: stable
23 |
24 | spell-check:
25 | uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
26 | with:
27 | includes: |
28 | **/*.md
29 | modified_files_only: false
30 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 |
8 |
9 | ## Description
10 |
11 |
12 |
13 | ## Type of Change
14 |
15 |
16 |
17 | - [ ] ✨ New feature (non-breaking change which adds functionality)
18 | - [ ] 🛠️ Bug fix (non-breaking change which fixes an issue)
19 | - [ ] ❌ Breaking change (fix or feature that would cause existing functionality to change)
20 | - [ ] 🧹 Code refactor
21 | - [ ] ✅ Build configuration change
22 | - [ ] 📝 Documentation
23 | - [ ] 🗑️ Chore
24 |
--------------------------------------------------------------------------------
/pubspec.yaml:
--------------------------------------------------------------------------------
1 | name: car_dash
2 | description: A Very Good Project created by Very Good CLI.
3 | version: 1.0.0+1
4 | publish_to: none
5 |
6 | environment:
7 | sdk: ">=2.18.0 <3.0.0"
8 |
9 | dependencies:
10 | bloc: ^8.1.1
11 | cupertino_icons:
12 | equatable: ^2.0.5
13 | flutter:
14 | sdk: flutter
15 | flutter_bloc: ^8.1.2
16 | flutter_map: ^3.1.0
17 | flutter_localizations:
18 | sdk: flutter
19 | handy_extensions:
20 | intl: ^0.17.0
21 | relative_scale:
22 |
23 | dev_dependencies:
24 | bloc_test: ^9.1.1
25 | flutter_test:
26 | sdk: flutter
27 | mocktail: ^0.3.0
28 | very_good_analysis: ^4.0.0+1
29 |
30 | flutter:
31 | uses-material-design: true
32 | generate: true
33 |
34 | assets:
35 | - assets/icons/
36 | - assets/images/
37 |
--------------------------------------------------------------------------------
/.github/cspell.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.2",
3 | "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
4 | "dictionaries": ["vgv_allowed", "vgv_forbidden"],
5 | "dictionaryDefinitions": [
6 | {
7 | "name": "vgv_allowed",
8 | "path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt",
9 | "description": "Allowed VGV Spellings"
10 | },
11 | {
12 | "name": "vgv_forbidden",
13 | "path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt",
14 | "description": "Forbidden VGV Spellings"
15 | }
16 | ],
17 | "useGitignore": true,
18 | "words": [
19 | "Contador",
20 | "localizable",
21 | "mostrado",
22 | "página",
23 | "Texto"
24 | ]
25 | }
26 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Car Dash
2 |
3 | ![coverage][coverage_badge]
4 | [![style: very good analysis][very_good_analysis_badge]][very_good_analysis_link]
5 | [![License: MIT][license_badge]][license_link]
6 |
7 | Generated by the [Very Good CLI][very_good_cli_link] 🤖
8 |
9 | A Very Good Project created by Very Good CLI.
10 |
11 | ---
12 |
13 | 
14 |
15 | [coverage_badge]: coverage_badge.svg
16 | [flutter_localizations_link]: https://api.flutter.dev/flutter/flutter_localizations/flutter_localizations-library.html
17 | [internationalization_link]: https://flutter.dev/docs/development/accessibility-and-localization/internationalization
18 | [license_badge]: https://img.shields.io/badge/license-MIT-blue.svg
19 | [license_link]: https://opensource.org/licenses/MIT
20 | [very_good_analysis_badge]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg
21 | [very_good_analysis_link]: https://pub.dev/packages/very_good_analysis
22 | [very_good_cli_link]: https://github.com/VeryGoodOpenSource/very_good_cli
23 |
--------------------------------------------------------------------------------
/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled.
5 |
6 | version:
7 | revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
8 | channel: stable
9 |
10 | project_type: app
11 |
12 | # Tracks metadata for the flutter migrate command
13 | migration:
14 | platforms:
15 | - platform: root
16 | create_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
17 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
18 | - platform: macos
19 | create_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
20 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
21 |
22 | # User provided section
23 |
24 | # List of Local paths (relative to this file) that should be
25 | # ignored by the migrate tool.
26 | #
27 | # Files that are not part of the templates will be ignored by default.
28 | unmanaged_files:
29 | - 'lib/main.dart'
30 | - 'ios/Runner.xcodeproj/project.pbxproj'
31 |
--------------------------------------------------------------------------------
/lib/bootstrap.dart:
--------------------------------------------------------------------------------
1 | import 'dart:async';
2 | import 'dart:developer';
3 |
4 | import 'package:bloc/bloc.dart';
5 | import 'package:flutter/widgets.dart';
6 |
7 | class AppBlocObserver extends BlocObserver {
8 | const AppBlocObserver();
9 |
10 | @override
11 | void onChange(BlocBase bloc, Change change) {
12 | super.onChange(bloc, change);
13 | log('onChange(${bloc.runtimeType}, $change)');
14 | }
15 |
16 | @override
17 | void onError(BlocBase bloc, Object error, StackTrace stackTrace) {
18 | log('onError(${bloc.runtimeType}, $error, $stackTrace)');
19 | super.onError(bloc, error, stackTrace);
20 | }
21 | }
22 |
23 | Future bootstrap(FutureOr Function() builder) async {
24 | FlutterError.onError = (details) {
25 | log(details.exceptionAsString(), stackTrace: details.stack);
26 | };
27 |
28 | Bloc.observer = const AppBlocObserver();
29 |
30 | await runZonedGuarded(
31 | () async => runApp(await builder()),
32 | (error, stackTrace) => log(error.toString(), stackTrace: stackTrace),
33 | );
34 | }
35 |
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | // Use IntelliSense to learn about possible attributes.
3 | // Hover to view descriptions of existing attributes.
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 | "version": "0.2.0",
6 | "configurations": [
7 | {
8 | "name": "Launch development",
9 | "request": "launch",
10 | "type": "dart",
11 | "program": "lib/main_development.dart",
12 | "args": [
13 | "--flavor",
14 | "development",
15 | "--target",
16 | "lib/main_development.dart"
17 | ]
18 | },
19 | {
20 | "name": "Launch staging",
21 | "request": "launch",
22 | "type": "dart",
23 | "program": "lib/main_staging.dart",
24 | "args": ["--flavor", "staging", "--target", "lib/main_staging.dart"]
25 | },
26 | {
27 | "name": "Launch production",
28 | "request": "launch",
29 | "type": "dart",
30 | "program": "lib/main_production.dart",
31 | "args": ["--flavor", "production", "--target", "lib/main_production.dart"]
32 | }
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_navigation_bar.dart:
--------------------------------------------------------------------------------
1 | //
2 | // navigation_bar
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/material.dart';
10 |
11 | import 'dash_navigation_item.dart';
12 |
13 | class DashNavigationBar extends StatelessWidget {
14 | const DashNavigationBar({
15 | super.key,
16 | });
17 |
18 | @override
19 | Widget build(BuildContext context) {
20 | return Row(
21 | mainAxisAlignment: MainAxisAlignment.spaceBetween,
22 | children: const [
23 | DashNavigationItem(
24 | icon: 'assets/icons/settings.png',
25 | ),
26 | DashNavigationItem(
27 | icon: 'assets/icons/home.png',
28 | ),
29 | DashNavigationItem(
30 | icon: 'assets/icons/home.png',
31 | isActive: true,
32 | ),
33 | DashNavigationItem(
34 | icon: 'assets/icons/music.png',
35 | ),
36 | DashNavigationItem(
37 | icon: 'assets/icons/send.png',
38 | rotate: true,
39 | ),
40 | ],
41 | );
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/coverage_badge.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/macos/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIconFile
10 |
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | $(FLUTTER_BUILD_NAME)
21 | CFBundleVersion
22 | $(FLUTTER_BUILD_NUMBER)
23 | LSMinimumSystemVersion
24 | $(MACOSX_DEPLOYMENT_TARGET)
25 | NSHumanReadableCopyright
26 | $(PRODUCT_COPYRIGHT)
27 | NSMainNibFile
28 | MainMenu
29 | NSPrincipalClass
30 | NSApplication
31 |
32 |
33 |
--------------------------------------------------------------------------------
/lib/configs/colors.dart:
--------------------------------------------------------------------------------
1 | //
2 | // colors
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/painting.dart';
10 |
11 | class DashColors {
12 | static const Color white = Color(0xFFFAFDFF);
13 | static const Color dashBackgroundColor1 = Color(0xFF243154);
14 | static const Color dashBackgroundColor2 = Color(0xFF131a34);
15 | static const Color inactiveControlColor = Color(0xFF1a1d2c);
16 | static const Color activeControlColor = Color(0xFF3f5284);
17 | static const Color mediaPlayerBackgroundColor = Color(0xFF2c3a61);
18 | static const Color mediaDurationBarColor1 = Color(0xFF1c2335);
19 | static const Color activeControlChildColor = Color(0xFF94b3f4);
20 | static const Color inactiveControlChildColor = Color(0xFF4e5369);
21 | static const Color lockedDoorColor = Color(0xFFd4030a);
22 | static const Color unlockedDoorColor = Color(0xFF98b5ed);
23 | static const Color activeBorderColor = Color(0xFF519763);
24 | static const Color inactiveBorderColor = Color(0xff282b3f);
25 | static const Color backgroundColor = Color(0xFF020514);
26 | static const Color mediaDurationBarColor2 = Color(0xFFb459df);
27 | }
28 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_icon_bar_control.dart:
--------------------------------------------------------------------------------
1 | //
2 | // dash_icon_bar_control
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/material.dart';
10 | import 'package:relative_scale/relative_scale.dart';
11 |
12 | import '../../configs/colors.dart';
13 | import 'dash_bar_control.dart';
14 |
15 | class DashIconBarControl extends StatelessWidget {
16 | const DashIconBarControl({
17 | required this.icon,
18 | required this.value,
19 | super.key,
20 | });
21 |
22 | final IconData icon;
23 | final double value;
24 |
25 | @override
26 | Widget build(BuildContext context) {
27 | return RelativeBuilder(
28 | builder: (context, height, width, sy, sx) {
29 | return Column(
30 | children: [
31 | Expanded(
32 | child: DashBarControl(
33 | value: value,
34 | ),
35 | ),
36 | SizedBox(
37 | height: sy(10),
38 | ),
39 | Icon(
40 | icon,
41 | color: DashColors.activeControlChildColor,
42 | size: sy(15),
43 | ),
44 | ],
45 | );
46 | },
47 | );
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/lib/app/widgets/lock_control.dart:
--------------------------------------------------------------------------------
1 | //
2 | // lock_control
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/cupertino.dart';
10 | import 'package:flutter/material.dart';
11 | import 'package:relative_scale/relative_scale.dart';
12 |
13 | import '../../configs/colors.dart';
14 |
15 | class LockControl extends StatelessWidget {
16 | const LockControl({
17 | this.locked = false,
18 | this.showBackground = false,
19 | super.key,
20 | });
21 |
22 | final bool locked;
23 | final bool showBackground;
24 |
25 | @override
26 | Widget build(BuildContext context) {
27 | return RelativeBuilder(
28 | builder: (context, height, width, sy, sx) {
29 | return Container(
30 | height: sy(30),
31 | width: sy(30),
32 | alignment: Alignment.center,
33 | decoration: BoxDecoration(
34 | color: showBackground
35 | ? DashColors.backgroundColor
36 | : Colors.transparent,
37 | shape: BoxShape.circle,
38 | ),
39 | child: Icon(
40 | !locked ? CupertinoIcons.lock_fill : Icons.lock_open_outlined,
41 | color: locked
42 | ? DashColors.lockedDoorColor
43 | : DashColors.unlockedDoorColor,
44 | size: sy(15),
45 | ),
46 | );
47 | },
48 | );
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "16x16",
5 | "idiom" : "mac",
6 | "filename" : "app_icon_16.png",
7 | "scale" : "1x"
8 | },
9 | {
10 | "size" : "16x16",
11 | "idiom" : "mac",
12 | "filename" : "app_icon_32.png",
13 | "scale" : "2x"
14 | },
15 | {
16 | "size" : "32x32",
17 | "idiom" : "mac",
18 | "filename" : "app_icon_32.png",
19 | "scale" : "1x"
20 | },
21 | {
22 | "size" : "32x32",
23 | "idiom" : "mac",
24 | "filename" : "app_icon_64.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "128x128",
29 | "idiom" : "mac",
30 | "filename" : "app_icon_128.png",
31 | "scale" : "1x"
32 | },
33 | {
34 | "size" : "128x128",
35 | "idiom" : "mac",
36 | "filename" : "app_icon_256.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "256x256",
41 | "idiom" : "mac",
42 | "filename" : "app_icon_256.png",
43 | "scale" : "1x"
44 | },
45 | {
46 | "size" : "256x256",
47 | "idiom" : "mac",
48 | "filename" : "app_icon_512.png",
49 | "scale" : "2x"
50 | },
51 | {
52 | "size" : "512x512",
53 | "idiom" : "mac",
54 | "filename" : "app_icon_512.png",
55 | "scale" : "1x"
56 | },
57 | {
58 | "size" : "512x512",
59 | "idiom" : "mac",
60 | "filename" : "app_icon_1024.png",
61 | "scale" : "2x"
62 | }
63 | ],
64 | "info" : {
65 | "version" : 1,
66 | "author" : "xcode"
67 | }
68 | }
69 |
--------------------------------------------------------------------------------
/lib/app/views/car_dash.dart:
--------------------------------------------------------------------------------
1 | //
2 | // car_dash
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/material.dart';
10 | import 'package:handy_extensions/handy_extensions.dart';
11 | import 'package:relative_scale/relative_scale.dart';
12 |
13 | import '../../configs/colors.dart';
14 | import '../widgets/dash_controls_area.dart';
15 | import '../widgets/dash_map.dart';
16 | import '../widgets/dash_navigation_bar.dart';
17 |
18 | class CarDash extends StatelessWidget {
19 | const CarDash({super.key});
20 |
21 | @override
22 | Widget build(BuildContext context) {
23 | return RelativeBuilder(
24 | builder: (context, height, width, sy, sx) {
25 | return Scaffold(
26 | body: Container(
27 | height: context.height,
28 | width: context.width,
29 | padding: EdgeInsets.symmetric(
30 | horizontal: sx(10),
31 | vertical: sy(10),
32 | ),
33 | decoration: const BoxDecoration(
34 | color: DashColors.backgroundColor,
35 | ),
36 | child: Column(
37 | children: [
38 | Expanded(
39 | child: Row(
40 | children: [
41 | const Expanded(
42 | child: DashControlsArea(),
43 | ),
44 | SizedBox(
45 | width: sx(7),
46 | ),
47 | const DashMap(),
48 | ],
49 | ),
50 | ),
51 | SizedBox(
52 | height: sy(15),
53 | ),
54 | const DashNavigationBar(),
55 | ],
56 | ),
57 | ),
58 | );
59 | },
60 | );
61 | }
62 | }
63 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_summary_item.dart:
--------------------------------------------------------------------------------
1 | //
2 | // dash_summary_item
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/material.dart';
10 | import 'package:relative_scale/relative_scale.dart';
11 |
12 | import '../../configs/colors.dart';
13 |
14 | class DashSummaryItem extends StatelessWidget {
15 | const DashSummaryItem({
16 | required this.value,
17 | required this.unit,
18 | required this.description,
19 | super.key,
20 | });
21 |
22 | final String value;
23 | final String unit;
24 | final String description;
25 |
26 | @override
27 | Widget build(BuildContext context) {
28 | return RelativeBuilder(
29 | builder: (context, height, width, sy, sx) {
30 | return Column(
31 | crossAxisAlignment: CrossAxisAlignment.start,
32 | children: [
33 | RichText(
34 | text: TextSpan(
35 | text: value,
36 | style: TextStyle(
37 | color: DashColors.white,
38 | fontWeight: FontWeight.w600,
39 | fontSize: sy(25),
40 | ),
41 | children: [
42 | TextSpan(
43 | text: ' $unit',
44 | style: TextStyle(
45 | color: DashColors.white,
46 | fontWeight: FontWeight.w400,
47 | fontSize: sy(12),
48 | ),
49 | ),
50 | ],
51 | ),
52 | ),
53 | Text(
54 | description,
55 | style: TextStyle(
56 | color: DashColors.activeControlChildColor,
57 | fontWeight: FontWeight.w400,
58 | fontSize: sy(12),
59 | ),
60 | )
61 | ],
62 | );
63 | },
64 | );
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_summary.dart:
--------------------------------------------------------------------------------
1 | //
2 | // dash_summary
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/material.dart';
10 | import 'package:relative_scale/relative_scale.dart';
11 |
12 | import '../../configs/colors.dart';
13 | import 'dash_summary_item.dart';
14 |
15 | class DashSummary extends StatelessWidget {
16 | const DashSummary({
17 | super.key,
18 | });
19 |
20 | @override
21 | Widget build(BuildContext context) {
22 | return RelativeBuilder(
23 | builder: (context, height, widht, sy, sx) {
24 | return Row(
25 | crossAxisAlignment: CrossAxisAlignment.end,
26 | children: [
27 | const DashSummaryItem(
28 | value: '216',
29 | unit: 'km',
30 | description: 'Total Distance',
31 | ),
32 | SizedBox(
33 | width: sx(10),
34 | ),
35 | Container(
36 | height: sy(50),
37 | width: sx(0.7),
38 | color: DashColors.inactiveControlColor,
39 | ),
40 | SizedBox(
41 | width: sx(10),
42 | ),
43 | const DashSummaryItem(
44 | value: '82',
45 | unit: 'km/h',
46 | description: 'Average Speed',
47 | ),
48 | SizedBox(
49 | width: sx(10),
50 | ),
51 | Container(
52 | height: sy(50),
53 | width: sx(0.7),
54 | color: DashColors.inactiveControlColor,
55 | ),
56 | SizedBox(
57 | width: sx(10),
58 | ),
59 | const DashSummaryItem(
60 | value: '6.2',
61 | unit: 'litre',
62 | description: 'Fuel Consumption',
63 | ),
64 | ],
65 | );
66 | },
67 | );
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/lib/app/widgets/car_area.dart:
--------------------------------------------------------------------------------
1 | //
2 | // car_area
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/cupertino.dart';
10 | import 'package:handy_extensions/handy_extensions.dart';
11 | import 'package:relative_scale/relative_scale.dart';
12 |
13 | import 'lock_control.dart';
14 |
15 | class CarArea extends StatelessWidget {
16 | const CarArea({super.key});
17 |
18 | @override
19 | Widget build(BuildContext context) {
20 | return RelativeBuilder(
21 | builder: (context, height, width, sy, sx) {
22 | return SizedBox(
23 | height: context.height,
24 | child: Stack(
25 | clipBehavior: Clip.none,
26 | children: [
27 | RotatedBox(
28 | quarterTurns: 2,
29 | child: Image(
30 | image: const AssetImage('assets/images/car.png'),
31 | height: context.height * 0.7,
32 | ),
33 | ),
34 | Positioned(
35 | top: sy(150),
36 | left: sx(-5),
37 | child: const LockControl(
38 | locked: true,
39 | ),
40 | ),
41 | Positioned(
42 | top: sy(150),
43 | right: 0,
44 | child: const LockControl(),
45 | ),
46 | Positioned(
47 | top: sy(220),
48 | left: sx(-5),
49 | child: const LockControl(),
50 | ),
51 | Positioned(
52 | top: sy(220),
53 | right: 0,
54 | child: const LockControl(),
55 | ),
56 | Positioned(
57 | top: sy(300),
58 | right: 0,
59 | left: 0,
60 | child: const LockControl(
61 | showBackground: true,
62 | ),
63 | ),
64 | ],
65 | ),
66 | );
67 | },
68 | );
69 | }
70 | }
71 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_bar_control.dart:
--------------------------------------------------------------------------------
1 | //
2 | // dash_bar_control
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/material.dart';
10 | import 'package:relative_scale/relative_scale.dart';
11 |
12 | import '../../configs/colors.dart';
13 |
14 | class DashBarControl extends StatelessWidget {
15 | const DashBarControl({
16 | required this.value,
17 | super.key,
18 | });
19 |
20 | final double value;
21 |
22 | @override
23 | Widget build(BuildContext context) {
24 | return RelativeBuilder(
25 | builder: (context, height, width, sy, sx) {
26 | return Stack(
27 | children: [
28 | Container(
29 | width: sx(20),
30 | decoration: BoxDecoration(
31 | color: DashColors.inactiveControlColor,
32 | border: Border.all(
33 | color: DashColors.inactiveBorderColor,
34 | width: sy(0.5),
35 | ),
36 | borderRadius: BorderRadius.circular(10),
37 | boxShadow: [
38 | BoxShadow(
39 | color: DashColors.white.withOpacity(0.05),
40 | spreadRadius: 1,
41 | blurRadius: 1,
42 | offset: const Offset(0.5, 0.5),
43 | ),
44 | BoxShadow(
45 | color: DashColors.white.withOpacity(0.05),
46 | spreadRadius: 1,
47 | blurRadius: 1,
48 | offset: const Offset(-0.5, -0.5),
49 | ),
50 | ],
51 | ),
52 | ),
53 | Positioned(
54 | bottom: 0,
55 | child: Container(
56 | height: sy(value),
57 | width: sx(20),
58 | decoration: BoxDecoration(
59 | color: DashColors.activeControlChildColor.withOpacity(0.65),
60 | borderRadius: BorderRadius.circular(10),
61 | ),
62 | ),
63 | ),
64 | ],
65 | );
66 | },
67 | );
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_controls_area.dart:
--------------------------------------------------------------------------------
1 | //
2 | // dash_controls_area
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:car_dash/app/widgets/player_area.dart';
10 | import 'package:flutter/cupertino.dart';
11 | import 'package:flutter/material.dart';
12 | import 'package:handy_extensions/handy_extensions.dart';
13 | import 'package:relative_scale/relative_scale.dart';
14 |
15 | import '../../configs/colors.dart';
16 | import 'car_area.dart';
17 | import 'controls_display.dart';
18 |
19 | class DashControlsArea extends StatelessWidget {
20 | const DashControlsArea({
21 | super.key,
22 | });
23 |
24 | @override
25 | Widget build(BuildContext context) {
26 | return RelativeBuilder(
27 | builder: (context, height, width, sy, sx) {
28 | return Container(
29 | height: context.height,
30 | width: context.width,
31 | decoration: BoxDecoration(
32 | gradient: const LinearGradient(
33 | colors: [
34 | DashColors.dashBackgroundColor1,
35 | DashColors.dashBackgroundColor2,
36 | ],
37 | ),
38 | borderRadius: BorderRadius.circular(7),
39 | boxShadow: [
40 | BoxShadow(
41 | color: DashColors.white.withOpacity(0.05),
42 | spreadRadius: 1,
43 | blurRadius: 1,
44 | offset: const Offset(0.5, 0.5),
45 | ),
46 | BoxShadow(
47 | color: DashColors.white.withOpacity(0.05),
48 | spreadRadius: 1,
49 | blurRadius: 1,
50 | offset: const Offset(-0.5, -0.5),
51 | ),
52 | ],
53 | ),
54 | child: Column(
55 | children: [
56 | Expanded(
57 | child: Row(
58 | children: [
59 | const Expanded(
60 | child: ControlsDisplay(),
61 | ),
62 | SizedBox(
63 | width: sx(20),
64 | ),
65 | const CarArea(),
66 | SizedBox(
67 | width: sx(10),
68 | ),
69 | ],
70 | ),
71 | ),
72 | SizedBox(
73 | height: sy(20),
74 | ),
75 | const PlayerArea(),
76 | ],
77 | ),
78 | );
79 | },
80 | );
81 | }
82 | }
83 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_navigation_item.dart:
--------------------------------------------------------------------------------
1 | //
2 | // navigation_item
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/material.dart';
10 | import 'package:relative_scale/relative_scale.dart';
11 |
12 | import '../../configs/colors.dart';
13 |
14 | class DashNavigationItem extends StatelessWidget {
15 | const DashNavigationItem({
16 | required this.icon,
17 | this.isActive = false,
18 | this.rotate = false,
19 | super.key,
20 | });
21 |
22 | final String icon;
23 | final bool isActive;
24 | final bool rotate;
25 |
26 | @override
27 | Widget build(BuildContext context) {
28 | return RelativeBuilder(
29 | builder: (context, height, width, sy, sx) {
30 | return Container(
31 | padding: EdgeInsets.symmetric(
32 | horizontal: sx(40),
33 | vertical: sy(15),
34 | ),
35 | decoration: BoxDecoration(
36 | color: isActive
37 | ? DashColors.dashBackgroundColor1
38 | : DashColors.inactiveControlColor,
39 | border: Border.all(
40 | color: isActive
41 | ? DashColors.activeBorderColor
42 | : DashColors.inactiveBorderColor,
43 | width: sy(2),
44 | ),
45 | borderRadius: BorderRadius.circular(10),
46 | boxShadow: [
47 | BoxShadow(
48 | color: DashColors.white.withOpacity(0.05),
49 | spreadRadius: 1,
50 | blurRadius: 1,
51 | offset: const Offset(0.5, 0.5),
52 | ),
53 | BoxShadow(
54 | color: DashColors.white.withOpacity(0.05),
55 | spreadRadius: 1,
56 | blurRadius: 1,
57 | offset: const Offset(-0.5, -0.5),
58 | ),
59 | ],
60 | ),
61 | child: rotate
62 | ? Transform.rotate(
63 | angle: -7,
64 | child: ImageIcon(
65 | AssetImage(icon),
66 | color: isActive
67 | ? DashColors.activeControlChildColor
68 | : DashColors.inactiveControlChildColor,
69 | size: sy(25),
70 | ),
71 | )
72 | : ImageIcon(
73 | AssetImage(icon),
74 | color: isActive
75 | ? DashColors.activeControlChildColor
76 | : DashColors.inactiveControlChildColor,
77 | size: sy(25),
78 | ),
79 | );
80 | },
81 | );
82 | }
83 | }
84 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.lock
4 | *.log
5 | *.pyc
6 | *.swp
7 | .DS_Store
8 | .atom/
9 | .buildlog/
10 | .history
11 | .svn/
12 |
13 | # IntelliJ related
14 | *.iml
15 | *.ipr
16 | *.iws
17 | .idea/*
18 |
19 | # Visual Studio Code related
20 | .classpath
21 | .project
22 | .settings/
23 | .vscode/*
24 |
25 | # Flutter repo-specific
26 | /bin/cache/
27 | /bin/mingit/
28 | /dev/benchmarks/mega_gallery/
29 | /dev/bots/.recipe_deps
30 | /dev/bots/android_tools/
31 | /dev/docs/doc/
32 | /dev/docs/flutter.docs.zip
33 | /dev/docs/lib/
34 | /dev/docs/pubspec.yaml
35 | /dev/integration_tests/**/xcuserdata
36 | /dev/integration_tests/**/Pods
37 | /packages/flutter/coverage/
38 | version
39 |
40 | # packages file containing multi-root paths
41 | .packages.generated
42 |
43 | # Flutter/Dart/Pub related
44 | **/doc/api/
45 | **/ios/Flutter/.last_build_id
46 | .dart_tool/
47 | .flutter-plugins
48 | .flutter-plugins-dependencies
49 | .packages
50 | .pub-cache/
51 | .pub/
52 | build/
53 | flutter_*.png
54 | linked_*.ds
55 | unlinked.ds
56 | unlinked_spec.ds
57 | .fvm/
58 |
59 | # Android related
60 | **/android/**/gradle-wrapper.jar
61 | **/android/.gradle
62 | **/android/captures/
63 | **/android/gradlew
64 | **/android/gradlew.bat
65 | **/android/local.properties
66 | **/android/**/GeneratedPluginRegistrant.java
67 | **/android/key.properties
68 | **/android/.idea/
69 | *.jks
70 |
71 | # iOS/XCode related
72 | **/ios/**/*.mode1v3
73 | **/ios/**/*.mode2v3
74 | **/ios/**/*.moved-aside
75 | **/ios/**/*.pbxuser
76 | **/ios/**/*.perspectivev3
77 | **/ios/**/*sync/
78 | **/ios/**/.sconsign.dblite
79 | **/ios/**/.tags*
80 | **/ios/**/.vagrant/
81 | **/ios/**/DerivedData/
82 | **/ios/**/Icon?
83 | **/ios/**/Pods/
84 | **/ios/**/.symlinks/
85 | **/ios/**/profile
86 | **/ios/**/xcuserdata
87 | **/ios/.generated/
88 | **/ios/Flutter/App.framework
89 | **/ios/Flutter/Flutter.framework
90 | **/ios/Flutter/Flutter.podspec
91 | **/ios/Flutter/Generated.xcconfig
92 | **/ios/Flutter/app.flx
93 | **/ios/Flutter/app.zip
94 | **/ios/Flutter/.last_build_id
95 | **/ios/Flutter/flutter_assets/
96 | **/ios/Flutter/flutter_export_environment.sh
97 | **/ios/ServiceDefinitions.json
98 | **/ios/Runner/GeneratedPluginRegistrant.*
99 |
100 | # Coverage
101 | coverage/
102 |
103 | # Submodules
104 | !pubspec.lock
105 | packages/**/pubspec.lock
106 |
107 | # Web related
108 | lib/generated_plugin_registrant.dart
109 |
110 | # Symbolication related
111 | app.*.symbols
112 |
113 | # Obfuscation related
114 | app.*.map.json
115 |
116 | # Exceptions to the above rules.
117 | !**/ios/**/default.mode1v3
118 | !**/ios/**/default.mode2v3
119 | !**/ios/**/default.pbxuser
120 | !**/ios/**/default.perspectivev3
121 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
122 | !/dev/ci/**/Gemfile.lock
123 | !.vscode/extensions.json
124 | !.vscode/launch.json
125 | !.idea/codeStyles/
126 | !.idea/dictionaries/
127 | !.idea/runConfigurations/
128 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_control.dart:
--------------------------------------------------------------------------------
1 | //
2 | // dash_control
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/material.dart';
10 | import 'package:relative_scale/relative_scale.dart';
11 |
12 | import '../../configs/colors.dart';
13 |
14 | class DashControl extends StatelessWidget {
15 | const DashControl({
16 | required this.icon,
17 | required this.text,
18 | this.isActive = false,
19 | super.key,
20 | });
21 |
22 | final T icon;
23 | final String text;
24 | final bool isActive;
25 |
26 | @override
27 | Widget build(BuildContext context) {
28 | return RelativeBuilder(
29 | builder: (context, height, width, sy, sx) {
30 | return Container(
31 | height: sy(70),
32 | width: sy(70),
33 | decoration: BoxDecoration(
34 | color: isActive
35 | ? DashColors.dashBackgroundColor1
36 | : DashColors.inactiveControlColor,
37 | border: Border.all(
38 | color: isActive
39 | ? DashColors.activeBorderColor
40 | : DashColors.inactiveBorderColor,
41 | width: sy(2),
42 | ),
43 | borderRadius: BorderRadius.circular(10),
44 | boxShadow: [
45 | BoxShadow(
46 | color: DashColors.white.withOpacity(0.05),
47 | spreadRadius: 1,
48 | blurRadius: 1,
49 | offset: const Offset(0.5, 0.5),
50 | ),
51 | BoxShadow(
52 | color: DashColors.white.withOpacity(0.05),
53 | spreadRadius: 1,
54 | blurRadius: 1,
55 | offset: const Offset(-0.5, -0.5),
56 | ),
57 | ],
58 | ),
59 | child: Column(
60 | mainAxisAlignment: MainAxisAlignment.center,
61 | children: [
62 | if (icon is IconData)
63 | Icon(
64 | icon as IconData,
65 | color: isActive
66 | ? DashColors.activeControlChildColor
67 | : DashColors.inactiveControlChildColor,
68 | size: sy(25),
69 | )
70 | else
71 | ImageIcon(
72 | AssetImage(icon as String),
73 | color: isActive
74 | ? DashColors.activeControlChildColor
75 | : DashColors.inactiveControlChildColor,
76 | size: sy(25),
77 | ),
78 | SizedBox(
79 | height: sy(5),
80 | ),
81 | Text(
82 | text,
83 | style: TextStyle(
84 | color: isActive
85 | ? DashColors.activeControlChildColor
86 | : DashColors.inactiveControlChildColor,
87 | fontWeight: FontWeight.w400,
88 | fontSize: sy(10),
89 | ),
90 | ),
91 | ],
92 | ),
93 | );
94 | },
95 | );
96 | }
97 | }
98 |
--------------------------------------------------------------------------------
/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
37 |
38 |
39 |
40 |
41 |
42 |
52 |
54 |
60 |
61 |
62 |
63 |
69 |
71 |
77 |
78 |
79 |
80 |
82 |
83 |
86 |
87 |
88 |
--------------------------------------------------------------------------------
/lib/app/widgets/controls_display.dart:
--------------------------------------------------------------------------------
1 | //
2 | // controls_display
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/cupertino.dart';
10 | import 'package:flutter/material.dart';
11 | import 'package:relative_scale/relative_scale.dart';
12 |
13 | import 'dash_control.dart';
14 | import 'dash_icon_bar_control.dart';
15 | import 'dash_summary.dart';
16 |
17 | class ControlsDisplay extends StatelessWidget {
18 | const ControlsDisplay({
19 | super.key,
20 | });
21 |
22 | @override
23 | Widget build(BuildContext context) {
24 | return RelativeBuilder(
25 | builder: (context, height, width, sy, sx) {
26 | return Container(
27 | padding: EdgeInsets.only(
28 | top: sy(20),
29 | left: sx(30),
30 | ),
31 | child: Column(
32 | children: [
33 | const DashSummary(),
34 | SizedBox(
35 | height: sy(20),
36 | ),
37 | Expanded(
38 | child: Row(
39 | children: [
40 | Column(
41 | mainAxisAlignment: MainAxisAlignment.spaceBetween,
42 | children: const [
43 | DashControl(
44 | icon: CupertinoIcons.bluetooth,
45 | text: 'Bluetooth',
46 | ),
47 | DashControl(
48 | icon: Icons.radio,
49 | text: 'Radio',
50 | ),
51 | DashControl(
52 | icon: Icons.ac_unit,
53 | text: 'AC',
54 | isActive: true,
55 | ),
56 | ],
57 | ),
58 | SizedBox(
59 | width: sx(15),
60 | ),
61 | Column(
62 | mainAxisAlignment: MainAxisAlignment.spaceBetween,
63 | children: const [
64 | DashControl(
65 | icon: 'assets/icons/headlights.png',
66 | text: 'Headlights',
67 | isActive: true,
68 | ),
69 | DashControl(
70 | icon: 'assets/icons/park-lights.png',
71 | text: 'Park Lights',
72 | ),
73 | DashControl(
74 | icon: 'assets/icons/windscreen-wiper.png',
75 | text: 'W/Wipers',
76 | ),
77 | ],
78 | ),
79 | SizedBox(
80 | width: sx(15),
81 | ),
82 | Row(
83 | children: [
84 | const DashIconBarControl(
85 | icon: CupertinoIcons.volume_up,
86 | value: 170,
87 | ),
88 | SizedBox(
89 | width: sx(15),
90 | ),
91 | const DashIconBarControl(
92 | icon: CupertinoIcons.brightness_solid,
93 | value: 70,
94 | ),
95 | ],
96 | ),
97 | ],
98 | ),
99 | ),
100 | ],
101 | ),
102 | );
103 | },
104 | );
105 | }
106 | }
107 |
--------------------------------------------------------------------------------
/lib/app/widgets/dash_map.dart:
--------------------------------------------------------------------------------
1 | //
2 | // dash_map
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/cupertino.dart';
10 | import 'package:flutter_map/flutter_map.dart';
11 | import 'package:handy_extensions/handy_extensions.dart';
12 | import 'package:latlong2/latlong.dart';
13 | import 'package:relative_scale/relative_scale.dart';
14 |
15 | import '../../configs/colors.dart';
16 |
17 | class DashMap extends StatelessWidget {
18 | const DashMap({
19 | super.key,
20 | });
21 |
22 | @override
23 | Widget build(BuildContext context) {
24 | return RelativeBuilder(
25 | builder: (context, height, width, sy, sx) {
26 | return Container(
27 | height: context.height,
28 | width: context.width * 0.33,
29 | decoration: BoxDecoration(
30 | border: Border.all(
31 | color: DashColors.inactiveBorderColor,
32 | width: sy(2),
33 | ),
34 | borderRadius: BorderRadius.circular(7),
35 | boxShadow: [
36 | BoxShadow(
37 | color: DashColors.white.withOpacity(0.05),
38 | spreadRadius: 1,
39 | blurRadius: 1,
40 | offset: const Offset(0.5, 0.5),
41 | ),
42 | BoxShadow(
43 | color: DashColors.white.withOpacity(0.05),
44 | spreadRadius: 1,
45 | blurRadius: 1,
46 | offset: const Offset(-0.5, -0.5),
47 | ),
48 | ],
49 | ),
50 | child: Column(
51 | children: [
52 | Expanded(
53 | child: ClipRRect(
54 | borderRadius: const BorderRadius.only(
55 | topLeft: Radius.circular(7),
56 | topRight: Radius.circular(7),
57 | ),
58 | child: FlutterMap(
59 | options: MapOptions(
60 | center: LatLng(-17.834701, 31.001470),
61 | zoom: 10,
62 | maxZoom: 22,
63 | interactiveFlags: InteractiveFlag.drag |
64 | InteractiveFlag.flingAnimation |
65 | InteractiveFlag.pinchMove |
66 | InteractiveFlag.pinchZoom |
67 | InteractiveFlag.doubleTapZoom,
68 | ),
69 | children: [
70 | TileLayer(
71 | urlTemplate:
72 | 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
73 | userAgentPackageName: 'com.example.app',
74 | ),
75 | ],
76 | ),
77 | ),
78 | ),
79 | Container(
80 | height: sy(60),
81 | width: context.width,
82 | padding: EdgeInsets.symmetric(
83 | horizontal: sx(10),
84 | ),
85 | decoration: const BoxDecoration(
86 | borderRadius: BorderRadius.only(
87 | bottomRight: Radius.circular(7),
88 | bottomLeft: Radius.circular(7),
89 | ),
90 | ),
91 | child: Row(
92 | mainAxisAlignment: MainAxisAlignment.spaceBetween,
93 | children: [
94 | Row(
95 | children: [
96 | const Icon(
97 | CupertinoIcons.arrow_turn_up_right,
98 | color: DashColors.white,
99 | ),
100 | SizedBox(
101 | width: sx(5),
102 | ),
103 | Text(
104 | 'Turn Right',
105 | style: TextStyle(
106 | color: DashColors.white,
107 | fontWeight: FontWeight.w400,
108 | fontSize: sy(12),
109 | ),
110 | ),
111 | ],
112 | ),
113 | Text(
114 | '550m',
115 | style: TextStyle(
116 | color: DashColors.activeControlChildColor,
117 | fontWeight: FontWeight.w500,
118 | fontSize: sy(12),
119 | ),
120 | ),
121 | ],
122 | ),
123 | ),
124 | ],
125 | ),
126 | );
127 | },
128 | );
129 | }
130 | }
131 |
--------------------------------------------------------------------------------
/lib/app/widgets/player_area.dart:
--------------------------------------------------------------------------------
1 | //
2 | // player_area
3 | // car_dash
4 | //
5 | // Created by Ngonidzashe Mangudya on 23/4/2023.
6 | // Copyright (c) 2023 ModestNerds, Co
7 | //
8 |
9 | import 'package:flutter/cupertino.dart';
10 | import 'package:flutter/material.dart';
11 | import 'package:handy_extensions/handy_extensions.dart';
12 | import 'package:relative_scale/relative_scale.dart';
13 |
14 | import '../../configs/colors.dart';
15 |
16 | class PlayerArea extends StatelessWidget {
17 | const PlayerArea({
18 | super.key,
19 | });
20 |
21 | @override
22 | Widget build(BuildContext context) {
23 | return RelativeBuilder(
24 | builder: (context, height, width, sy, sx) {
25 | return Container(
26 | height: sy(90),
27 | width: context.width,
28 | decoration: const BoxDecoration(
29 | color: Colors.white,
30 | ),
31 | child: Column(
32 | children: [
33 | Expanded(
34 | child: Container(
35 | padding: EdgeInsets.symmetric(
36 | vertical: sy(5),
37 | ),
38 | decoration: const BoxDecoration(
39 | color: DashColors.mediaPlayerBackgroundColor,
40 | ),
41 | child: Row(
42 | children: [
43 | SizedBox(
44 | width: sx(7),
45 | ),
46 | Container(
47 | height: sy(62),
48 | width: sy(62),
49 | decoration: BoxDecoration(
50 | borderRadius: BorderRadius.circular(3),
51 | image: const DecorationImage(
52 | image: AssetImage('assets/images/music.jpg'),
53 | ),
54 | ),
55 | ),
56 | SizedBox(
57 | width: sx(10),
58 | ),
59 | Expanded(
60 | child: Column(
61 | crossAxisAlignment: CrossAxisAlignment.start,
62 | mainAxisAlignment: MainAxisAlignment.center,
63 | children: [
64 | Text(
65 | 'King Kunta',
66 | style: TextStyle(
67 | color: DashColors.white,
68 | fontWeight: FontWeight.w500,
69 | fontSize: sy(14),
70 | ),
71 | ),
72 | Text(
73 | 'Kendrick Lamar - To Pimp a Butterfly',
74 | style: TextStyle(
75 | color: DashColors.activeControlChildColor,
76 | fontWeight: FontWeight.w400,
77 | fontSize: sy(12),
78 | ),
79 | ),
80 | ],
81 | ),
82 | ),
83 | Row(
84 | children: [
85 | const Icon(
86 | CupertinoIcons.backward_end_fill,
87 | color: DashColors.white,
88 | ),
89 | SizedBox(
90 | width: sx(10),
91 | ),
92 | Container(
93 | height: sy(50),
94 | width: sy(50),
95 | alignment: Alignment.center,
96 | decoration: const BoxDecoration(
97 | color: DashColors.white,
98 | shape: BoxShape.circle,
99 | ),
100 | child: ImageIcon(
101 | const AssetImage('assets/icons/play.png'),
102 | color: DashColors.backgroundColor,
103 | size: sy(30),
104 | ),
105 | ),
106 | SizedBox(
107 | width: sx(10),
108 | ),
109 | const Icon(
110 | CupertinoIcons.forward_end_fill,
111 | color: DashColors.white,
112 | ),
113 | SizedBox(
114 | width: sx(20),
115 | ),
116 | ],
117 | ),
118 | ],
119 | ),
120 | ),
121 | ),
122 | LinearProgressIndicator(
123 | value: 0.45,
124 | valueColor: const AlwaysStoppedAnimation(
125 | DashColors.mediaDurationBarColor2,
126 | ),
127 | backgroundColor: DashColors.mediaDurationBarColor1,
128 | minHeight: sy(5),
129 | ),
130 | ],
131 | ),
132 | );
133 | },
134 | );
135 | }
136 | }
137 |
--------------------------------------------------------------------------------
/pubspec.lock:
--------------------------------------------------------------------------------
1 | # Generated by pub
2 | # See https://dart.dev/tools/pub/glossary#lockfile
3 | packages:
4 | _fe_analyzer_shared:
5 | dependency: transitive
6 | description:
7 | name: _fe_analyzer_shared
8 | sha256: "569ddca58d535e601dd1584afa117710abc999d036c0cd2c51777fb257df78e8"
9 | url: "https://pub.dev"
10 | source: hosted
11 | version: "53.0.0"
12 | analyzer:
13 | dependency: transitive
14 | description:
15 | name: analyzer
16 | sha256: "10927c4b7c7c88b1adbca278c3d5531db92e2f4b4abf04e2919a800af965f3f5"
17 | url: "https://pub.dev"
18 | source: hosted
19 | version: "5.5.0"
20 | args:
21 | dependency: transitive
22 | description:
23 | name: args
24 | sha256: "4cab82a83ffef80b262ddedf47a0a8e56ee6fbf7fe21e6e768b02792034dd440"
25 | url: "https://pub.dev"
26 | source: hosted
27 | version: "2.4.0"
28 | async:
29 | dependency: transitive
30 | description:
31 | name: async
32 | sha256: bfe67ef28df125b7dddcea62755991f807aa39a2492a23e1550161692950bbe0
33 | url: "https://pub.dev"
34 | source: hosted
35 | version: "2.10.0"
36 | bloc:
37 | dependency: "direct main"
38 | description:
39 | name: bloc
40 | sha256: "658a5ae59edcf1e58aac98b000a71c762ad8f46f1394c34a52050cafb3e11a80"
41 | url: "https://pub.dev"
42 | source: hosted
43 | version: "8.1.1"
44 | bloc_test:
45 | dependency: "direct dev"
46 | description:
47 | name: bloc_test
48 | sha256: ffbb60c17ee3d8e3784cb78071088e353199057233665541e8ac6cd438dca8ad
49 | url: "https://pub.dev"
50 | source: hosted
51 | version: "9.1.1"
52 | boolean_selector:
53 | dependency: transitive
54 | description:
55 | name: boolean_selector
56 | sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
57 | url: "https://pub.dev"
58 | source: hosted
59 | version: "2.1.1"
60 | characters:
61 | dependency: transitive
62 | description:
63 | name: characters
64 | sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c
65 | url: "https://pub.dev"
66 | source: hosted
67 | version: "1.2.1"
68 | clock:
69 | dependency: transitive
70 | description:
71 | name: clock
72 | sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
73 | url: "https://pub.dev"
74 | source: hosted
75 | version: "1.1.1"
76 | collection:
77 | dependency: transitive
78 | description:
79 | name: collection
80 | sha256: cfc915e6923fe5ce6e153b0723c753045de46de1b4d63771530504004a45fae0
81 | url: "https://pub.dev"
82 | source: hosted
83 | version: "1.17.0"
84 | convert:
85 | dependency: transitive
86 | description:
87 | name: convert
88 | sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592"
89 | url: "https://pub.dev"
90 | source: hosted
91 | version: "3.1.1"
92 | coverage:
93 | dependency: transitive
94 | description:
95 | name: coverage
96 | sha256: "2fb815080e44a09b85e0f2ca8a820b15053982b2e714b59267719e8a9ff17097"
97 | url: "https://pub.dev"
98 | source: hosted
99 | version: "1.6.3"
100 | crypto:
101 | dependency: transitive
102 | description:
103 | name: crypto
104 | sha256: aa274aa7774f8964e4f4f38cc994db7b6158dd36e9187aaceaddc994b35c6c67
105 | url: "https://pub.dev"
106 | source: hosted
107 | version: "3.0.2"
108 | cupertino_icons:
109 | dependency: "direct main"
110 | description:
111 | name: cupertino_icons
112 | sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be
113 | url: "https://pub.dev"
114 | source: hosted
115 | version: "1.0.5"
116 | diff_match_patch:
117 | dependency: transitive
118 | description:
119 | name: diff_match_patch
120 | sha256: "2efc9e6e8f449d0abe15be240e2c2a3bcd977c8d126cfd70598aee60af35c0a4"
121 | url: "https://pub.dev"
122 | source: hosted
123 | version: "0.4.1"
124 | equatable:
125 | dependency: "direct main"
126 | description:
127 | name: equatable
128 | sha256: c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2
129 | url: "https://pub.dev"
130 | source: hosted
131 | version: "2.0.5"
132 | fake_async:
133 | dependency: transitive
134 | description:
135 | name: fake_async
136 | sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
137 | url: "https://pub.dev"
138 | source: hosted
139 | version: "1.3.1"
140 | file:
141 | dependency: transitive
142 | description:
143 | name: file
144 | sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d"
145 | url: "https://pub.dev"
146 | source: hosted
147 | version: "6.1.4"
148 | flutter:
149 | dependency: "direct main"
150 | description: flutter
151 | source: sdk
152 | version: "0.0.0"
153 | flutter_bloc:
154 | dependency: "direct main"
155 | description:
156 | name: flutter_bloc
157 | sha256: "434951eea948dbe87f737b674281465f610b8259c16c097b8163ce138749a775"
158 | url: "https://pub.dev"
159 | source: hosted
160 | version: "8.1.2"
161 | flutter_localizations:
162 | dependency: "direct main"
163 | description: flutter
164 | source: sdk
165 | version: "0.0.0"
166 | flutter_map:
167 | dependency: "direct main"
168 | description:
169 | name: flutter_map
170 | sha256: "59dfd14267b691bea55760786b47d3172d47cdcc0d79ff930746a5ad123491b8"
171 | url: "https://pub.dev"
172 | source: hosted
173 | version: "3.1.0"
174 | flutter_test:
175 | dependency: "direct dev"
176 | description: flutter
177 | source: sdk
178 | version: "0.0.0"
179 | frontend_server_client:
180 | dependency: transitive
181 | description:
182 | name: frontend_server_client
183 | sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612"
184 | url: "https://pub.dev"
185 | source: hosted
186 | version: "3.2.0"
187 | glob:
188 | dependency: transitive
189 | description:
190 | name: glob
191 | sha256: "4515b5b6ddb505ebdd242a5f2cc5d22d3d6a80013789debfbda7777f47ea308c"
192 | url: "https://pub.dev"
193 | source: hosted
194 | version: "2.1.1"
195 | handy_extensions:
196 | dependency: "direct main"
197 | description:
198 | name: handy_extensions
199 | sha256: f7507a947a11d89d2c9544bf66a18ce1b851260eda6a066bac6071a7f6c9982a
200 | url: "https://pub.dev"
201 | source: hosted
202 | version: "0.0.9"
203 | http:
204 | dependency: transitive
205 | description:
206 | name: http
207 | sha256: "6aa2946395183537c8b880962d935877325d6a09a2867c3970c05c0fed6ac482"
208 | url: "https://pub.dev"
209 | source: hosted
210 | version: "0.13.5"
211 | http_multi_server:
212 | dependency: transitive
213 | description:
214 | name: http_multi_server
215 | sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b"
216 | url: "https://pub.dev"
217 | source: hosted
218 | version: "3.2.1"
219 | http_parser:
220 | dependency: transitive
221 | description:
222 | name: http_parser
223 | sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
224 | url: "https://pub.dev"
225 | source: hosted
226 | version: "4.0.2"
227 | intl:
228 | dependency: "direct main"
229 | description:
230 | name: intl
231 | sha256: "910f85bce16fb5c6f614e117efa303e85a1731bb0081edf3604a2ae6e9a3cc91"
232 | url: "https://pub.dev"
233 | source: hosted
234 | version: "0.17.0"
235 | io:
236 | dependency: transitive
237 | description:
238 | name: io
239 | sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e"
240 | url: "https://pub.dev"
241 | source: hosted
242 | version: "1.0.4"
243 | js:
244 | dependency: transitive
245 | description:
246 | name: js
247 | sha256: "5528c2f391ededb7775ec1daa69e65a2d61276f7552de2b5f7b8d34ee9fd4ab7"
248 | url: "https://pub.dev"
249 | source: hosted
250 | version: "0.6.5"
251 | latlong2:
252 | dependency: transitive
253 | description:
254 | name: latlong2
255 | sha256: "408993a0e3f46e79ce1f129e4cb0386eef6d48dfa6394939ecacfbd7049154ec"
256 | url: "https://pub.dev"
257 | source: hosted
258 | version: "0.8.1"
259 | lists:
260 | dependency: transitive
261 | description:
262 | name: lists
263 | sha256: "4ca5c19ae4350de036a7e996cdd1ee39c93ac0a2b840f4915459b7d0a7d4ab27"
264 | url: "https://pub.dev"
265 | source: hosted
266 | version: "1.0.1"
267 | logging:
268 | dependency: transitive
269 | description:
270 | name: logging
271 | sha256: "04094f2eb032cbb06c6f6e8d3607edcfcb0455e2bb6cbc010cb01171dcb64e6d"
272 | url: "https://pub.dev"
273 | source: hosted
274 | version: "1.1.1"
275 | matcher:
276 | dependency: transitive
277 | description:
278 | name: matcher
279 | sha256: "16db949ceee371e9b99d22f88fa3a73c4e59fd0afed0bd25fc336eb76c198b72"
280 | url: "https://pub.dev"
281 | source: hosted
282 | version: "0.12.13"
283 | material_color_utilities:
284 | dependency: transitive
285 | description:
286 | name: material_color_utilities
287 | sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
288 | url: "https://pub.dev"
289 | source: hosted
290 | version: "0.2.0"
291 | meta:
292 | dependency: transitive
293 | description:
294 | name: meta
295 | sha256: "6c268b42ed578a53088d834796959e4a1814b5e9e164f147f580a386e5decf42"
296 | url: "https://pub.dev"
297 | source: hosted
298 | version: "1.8.0"
299 | mgrs_dart:
300 | dependency: transitive
301 | description:
302 | name: mgrs_dart
303 | sha256: fb89ae62f05fa0bb90f70c31fc870bcbcfd516c843fb554452ab3396f78586f7
304 | url: "https://pub.dev"
305 | source: hosted
306 | version: "2.0.0"
307 | mime:
308 | dependency: transitive
309 | description:
310 | name: mime
311 | sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e
312 | url: "https://pub.dev"
313 | source: hosted
314 | version: "1.0.4"
315 | mocktail:
316 | dependency: "direct dev"
317 | description:
318 | name: mocktail
319 | sha256: "80a996cd9a69284b3dc521ce185ffe9150cde69767c2d3a0720147d93c0cef53"
320 | url: "https://pub.dev"
321 | source: hosted
322 | version: "0.3.0"
323 | nested:
324 | dependency: transitive
325 | description:
326 | name: nested
327 | sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
328 | url: "https://pub.dev"
329 | source: hosted
330 | version: "1.0.0"
331 | node_preamble:
332 | dependency: transitive
333 | description:
334 | name: node_preamble
335 | sha256: "8ebdbaa3b96d5285d068f80772390d27c21e1fa10fb2df6627b1b9415043608d"
336 | url: "https://pub.dev"
337 | source: hosted
338 | version: "2.0.1"
339 | package_config:
340 | dependency: transitive
341 | description:
342 | name: package_config
343 | sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd"
344 | url: "https://pub.dev"
345 | source: hosted
346 | version: "2.1.0"
347 | path:
348 | dependency: transitive
349 | description:
350 | name: path
351 | sha256: db9d4f58c908a4ba5953fcee2ae317c94889433e5024c27ce74a37f94267945b
352 | url: "https://pub.dev"
353 | source: hosted
354 | version: "1.8.2"
355 | polylabel:
356 | dependency: transitive
357 | description:
358 | name: polylabel
359 | sha256: "41b9099afb2aa6c1730bdd8a0fab1400d287694ec7615dd8516935fa3144214b"
360 | url: "https://pub.dev"
361 | source: hosted
362 | version: "1.0.1"
363 | pool:
364 | dependency: transitive
365 | description:
366 | name: pool
367 | sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
368 | url: "https://pub.dev"
369 | source: hosted
370 | version: "1.5.1"
371 | positioned_tap_detector_2:
372 | dependency: transitive
373 | description:
374 | name: positioned_tap_detector_2
375 | sha256: "52e06863ad3e1f82b058fd05054fc8c9caeeb3b47d5cea7a24bd9320746059c1"
376 | url: "https://pub.dev"
377 | source: hosted
378 | version: "1.0.4"
379 | proj4dart:
380 | dependency: transitive
381 | description:
382 | name: proj4dart
383 | sha256: c8a659ac9b6864aa47c171e78d41bbe6f5e1d7bd790a5814249e6b68bc44324e
384 | url: "https://pub.dev"
385 | source: hosted
386 | version: "2.1.0"
387 | provider:
388 | dependency: transitive
389 | description:
390 | name: provider
391 | sha256: cdbe7530b12ecd9eb455bdaa2fcb8d4dad22e80b8afb4798b41479d5ce26847f
392 | url: "https://pub.dev"
393 | source: hosted
394 | version: "6.0.5"
395 | pub_semver:
396 | dependency: transitive
397 | description:
398 | name: pub_semver
399 | sha256: "307de764d305289ff24ad257ad5c5793ce56d04947599ad68b3baa124105fc17"
400 | url: "https://pub.dev"
401 | source: hosted
402 | version: "2.1.3"
403 | relative_scale:
404 | dependency: "direct main"
405 | description:
406 | name: relative_scale
407 | sha256: b2dcc2ba32eb30a8545af147b27a29979ab1b4dca0d9ed88b285f2da1dd495be
408 | url: "https://pub.dev"
409 | source: hosted
410 | version: "2.0.0"
411 | shelf:
412 | dependency: transitive
413 | description:
414 | name: shelf
415 | sha256: c24a96135a2ccd62c64b69315a14adc5c3419df63b4d7c05832a346fdb73682c
416 | url: "https://pub.dev"
417 | source: hosted
418 | version: "1.4.0"
419 | shelf_packages_handler:
420 | dependency: transitive
421 | description:
422 | name: shelf_packages_handler
423 | sha256: aef74dc9195746a384843102142ab65b6a4735bb3beea791e63527b88cc83306
424 | url: "https://pub.dev"
425 | source: hosted
426 | version: "3.0.1"
427 | shelf_static:
428 | dependency: transitive
429 | description:
430 | name: shelf_static
431 | sha256: e792b76b96a36d4a41b819da593aff4bdd413576b3ba6150df5d8d9996d2e74c
432 | url: "https://pub.dev"
433 | source: hosted
434 | version: "1.1.1"
435 | shelf_web_socket:
436 | dependency: transitive
437 | description:
438 | name: shelf_web_socket
439 | sha256: a988c0e8d8ffbdb8a28aa7ec8e449c260f3deb808781fe1284d22c5bba7156e8
440 | url: "https://pub.dev"
441 | source: hosted
442 | version: "1.0.3"
443 | sky_engine:
444 | dependency: transitive
445 | description: flutter
446 | source: sdk
447 | version: "0.0.99"
448 | source_map_stack_trace:
449 | dependency: transitive
450 | description:
451 | name: source_map_stack_trace
452 | sha256: "84cf769ad83aa6bb61e0aa5a18e53aea683395f196a6f39c4c881fb90ed4f7ae"
453 | url: "https://pub.dev"
454 | source: hosted
455 | version: "2.1.1"
456 | source_maps:
457 | dependency: transitive
458 | description:
459 | name: source_maps
460 | sha256: "708b3f6b97248e5781f493b765c3337db11c5d2c81c3094f10904bfa8004c703"
461 | url: "https://pub.dev"
462 | source: hosted
463 | version: "0.10.12"
464 | source_span:
465 | dependency: transitive
466 | description:
467 | name: source_span
468 | sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
469 | url: "https://pub.dev"
470 | source: hosted
471 | version: "1.9.1"
472 | stack_trace:
473 | dependency: transitive
474 | description:
475 | name: stack_trace
476 | sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
477 | url: "https://pub.dev"
478 | source: hosted
479 | version: "1.11.0"
480 | stream_channel:
481 | dependency: transitive
482 | description:
483 | name: stream_channel
484 | sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
485 | url: "https://pub.dev"
486 | source: hosted
487 | version: "2.1.1"
488 | string_scanner:
489 | dependency: transitive
490 | description:
491 | name: string_scanner
492 | sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
493 | url: "https://pub.dev"
494 | source: hosted
495 | version: "1.2.0"
496 | term_glyph:
497 | dependency: transitive
498 | description:
499 | name: term_glyph
500 | sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
501 | url: "https://pub.dev"
502 | source: hosted
503 | version: "1.2.1"
504 | test:
505 | dependency: transitive
506 | description:
507 | name: test
508 | sha256: a5fcd2d25eeadbb6589e80198a47d6a464ba3e2049da473943b8af9797900c2d
509 | url: "https://pub.dev"
510 | source: hosted
511 | version: "1.22.0"
512 | test_api:
513 | dependency: transitive
514 | description:
515 | name: test_api
516 | sha256: ad540f65f92caa91bf21dfc8ffb8c589d6e4dc0c2267818b4cc2792857706206
517 | url: "https://pub.dev"
518 | source: hosted
519 | version: "0.4.16"
520 | test_core:
521 | dependency: transitive
522 | description:
523 | name: test_core
524 | sha256: "0ef9755ec6d746951ba0aabe62f874b707690b5ede0fecc818b138fcc9b14888"
525 | url: "https://pub.dev"
526 | source: hosted
527 | version: "0.4.20"
528 | tuple:
529 | dependency: transitive
530 | description:
531 | name: tuple
532 | sha256: "0ea99cd2f9352b2586583ab2ce6489d1f95a5f6de6fb9492faaf97ae2060f0aa"
533 | url: "https://pub.dev"
534 | source: hosted
535 | version: "2.0.1"
536 | typed_data:
537 | dependency: transitive
538 | description:
539 | name: typed_data
540 | sha256: "26f87ade979c47a150c9eaab93ccd2bebe70a27dc0b4b29517f2904f04eb11a5"
541 | url: "https://pub.dev"
542 | source: hosted
543 | version: "1.3.1"
544 | unicode:
545 | dependency: transitive
546 | description:
547 | name: unicode
548 | sha256: "0f69e46593d65245774d4f17125c6084d2c20b4e473a983f6e21b7d7762218f1"
549 | url: "https://pub.dev"
550 | source: hosted
551 | version: "0.3.1"
552 | vector_math:
553 | dependency: transitive
554 | description:
555 | name: vector_math
556 | sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
557 | url: "https://pub.dev"
558 | source: hosted
559 | version: "2.1.4"
560 | very_good_analysis:
561 | dependency: "direct dev"
562 | description:
563 | name: very_good_analysis
564 | sha256: ebc48c51db35beeeec8c414e32f7bd78e612bd7f5992ccb0d46e19edaeb40b08
565 | url: "https://pub.dev"
566 | source: hosted
567 | version: "4.0.0+1"
568 | vm_service:
569 | dependency: transitive
570 | description:
571 | name: vm_service
572 | sha256: e7fb6c2282f7631712b69c19d1bff82f3767eea33a2321c14fa59ad67ea391c7
573 | url: "https://pub.dev"
574 | source: hosted
575 | version: "9.4.0"
576 | watcher:
577 | dependency: transitive
578 | description:
579 | name: watcher
580 | sha256: "6a7f46926b01ce81bfc339da6a7f20afbe7733eff9846f6d6a5466aa4c6667c0"
581 | url: "https://pub.dev"
582 | source: hosted
583 | version: "1.0.2"
584 | web_socket_channel:
585 | dependency: transitive
586 | description:
587 | name: web_socket_channel
588 | sha256: ca49c0bc209c687b887f30527fb6a9d80040b072cc2990f34b9bec3e7663101b
589 | url: "https://pub.dev"
590 | source: hosted
591 | version: "2.3.0"
592 | webkit_inspection_protocol:
593 | dependency: transitive
594 | description:
595 | name: webkit_inspection_protocol
596 | sha256: "67d3a8b6c79e1987d19d848b0892e582dbb0c66c57cc1fef58a177dd2aa2823d"
597 | url: "https://pub.dev"
598 | source: hosted
599 | version: "1.2.0"
600 | wkt_parser:
601 | dependency: transitive
602 | description:
603 | name: wkt_parser
604 | sha256: "8a555fc60de3116c00aad67891bcab20f81a958e4219cc106e3c037aa3937f13"
605 | url: "https://pub.dev"
606 | source: hosted
607 | version: "2.0.0"
608 | yaml:
609 | dependency: transitive
610 | description:
611 | name: yaml
612 | sha256: "23812a9b125b48d4007117254bca50abb6c712352927eece9e155207b1db2370"
613 | url: "https://pub.dev"
614 | source: hosted
615 | version: "3.1.1"
616 | sdks:
617 | dart: ">=2.19.0 <3.0.0"
618 | flutter: ">=3.3.0"
619 |
--------------------------------------------------------------------------------
/macos/Runner.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXAggregateTarget section */
10 | 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = {
11 | isa = PBXAggregateTarget;
12 | buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */;
13 | buildPhases = (
14 | 33CC111E2044C6BF0003C045 /* ShellScript */,
15 | );
16 | dependencies = (
17 | );
18 | name = "Flutter Assemble";
19 | productName = FLX;
20 | };
21 | /* End PBXAggregateTarget section */
22 |
23 | /* Begin PBXBuildFile section */
24 | 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
25 | 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
26 | 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
27 | 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
28 | 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
29 | /* End PBXBuildFile section */
30 |
31 | /* Begin PBXContainerItemProxy section */
32 | 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = {
33 | isa = PBXContainerItemProxy;
34 | containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
35 | proxyType = 1;
36 | remoteGlobalIDString = 33CC111A2044C6BA0003C045;
37 | remoteInfo = FLX;
38 | };
39 | /* End PBXContainerItemProxy section */
40 |
41 | /* Begin PBXCopyFilesBuildPhase section */
42 | 33CC110E2044A8840003C045 /* Bundle Framework */ = {
43 | isa = PBXCopyFilesBuildPhase;
44 | buildActionMask = 2147483647;
45 | dstPath = "";
46 | dstSubfolderSpec = 10;
47 | files = (
48 | );
49 | name = "Bundle Framework";
50 | runOnlyForDeploymentPostprocessing = 0;
51 | };
52 | /* End PBXCopyFilesBuildPhase section */
53 |
54 | /* Begin PBXFileReference section */
55 | 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; };
56 | 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; };
57 | 33CC10ED2044A3C60003C045 /* car_dash.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "car_dash.app"; sourceTree = BUILT_PRODUCTS_DIR; };
58 | 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
59 | 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; };
60 | 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; };
61 | 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; };
62 | 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; };
63 | 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; };
64 | 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; };
65 | 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; };
66 | 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; };
67 | 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; };
68 | 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; };
69 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; };
70 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; };
71 | /* End PBXFileReference section */
72 |
73 | /* Begin PBXFrameworksBuildPhase section */
74 | 33CC10EA2044A3C60003C045 /* Frameworks */ = {
75 | isa = PBXFrameworksBuildPhase;
76 | buildActionMask = 2147483647;
77 | files = (
78 | );
79 | runOnlyForDeploymentPostprocessing = 0;
80 | };
81 | /* End PBXFrameworksBuildPhase section */
82 |
83 | /* Begin PBXGroup section */
84 | 33BA886A226E78AF003329D5 /* Configs */ = {
85 | isa = PBXGroup;
86 | children = (
87 | 33E5194F232828860026EE4D /* AppInfo.xcconfig */,
88 | 9740EEB21CF90195004384FC /* Debug.xcconfig */,
89 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
90 | 333000ED22D3DE5D00554162 /* Warnings.xcconfig */,
91 | );
92 | path = Configs;
93 | sourceTree = "";
94 | };
95 | 33CC10E42044A3C60003C045 = {
96 | isa = PBXGroup;
97 | children = (
98 | 33FAB671232836740065AC1E /* Runner */,
99 | 33CEB47122A05771004F2AC0 /* Flutter */,
100 | 33CC10EE2044A3C60003C045 /* Products */,
101 | D73912EC22F37F3D000D13A0 /* Frameworks */,
102 | );
103 | sourceTree = "";
104 | };
105 | 33CC10EE2044A3C60003C045 /* Products */ = {
106 | isa = PBXGroup;
107 | children = (
108 | 33CC10ED2044A3C60003C045 /* car_dash.app */,
109 | );
110 | name = Products;
111 | sourceTree = "";
112 | };
113 | 33CC11242044D66E0003C045 /* Resources */ = {
114 | isa = PBXGroup;
115 | children = (
116 | 33CC10F22044A3C60003C045 /* Assets.xcassets */,
117 | 33CC10F42044A3C60003C045 /* MainMenu.xib */,
118 | 33CC10F72044A3C60003C045 /* Info.plist */,
119 | );
120 | name = Resources;
121 | path = ..;
122 | sourceTree = "";
123 | };
124 | 33CEB47122A05771004F2AC0 /* Flutter */ = {
125 | isa = PBXGroup;
126 | children = (
127 | 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,
128 | 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,
129 | 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,
130 | 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */,
131 | );
132 | path = Flutter;
133 | sourceTree = "";
134 | };
135 | 33FAB671232836740065AC1E /* Runner */ = {
136 | isa = PBXGroup;
137 | children = (
138 | 33CC10F02044A3C60003C045 /* AppDelegate.swift */,
139 | 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,
140 | 33E51913231747F40026EE4D /* DebugProfile.entitlements */,
141 | 33E51914231749380026EE4D /* Release.entitlements */,
142 | 33CC11242044D66E0003C045 /* Resources */,
143 | 33BA886A226E78AF003329D5 /* Configs */,
144 | );
145 | path = Runner;
146 | sourceTree = "";
147 | };
148 | D73912EC22F37F3D000D13A0 /* Frameworks */ = {
149 | isa = PBXGroup;
150 | children = (
151 | );
152 | name = Frameworks;
153 | sourceTree = "";
154 | };
155 | /* End PBXGroup section */
156 |
157 | /* Begin PBXNativeTarget section */
158 | 33CC10EC2044A3C60003C045 /* Runner */ = {
159 | isa = PBXNativeTarget;
160 | buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
161 | buildPhases = (
162 | 33CC10E92044A3C60003C045 /* Sources */,
163 | 33CC10EA2044A3C60003C045 /* Frameworks */,
164 | 33CC10EB2044A3C60003C045 /* Resources */,
165 | 33CC110E2044A8840003C045 /* Bundle Framework */,
166 | 3399D490228B24CF009A79C7 /* ShellScript */,
167 | );
168 | buildRules = (
169 | );
170 | dependencies = (
171 | 33CC11202044C79F0003C045 /* PBXTargetDependency */,
172 | );
173 | name = Runner;
174 | productName = Runner;
175 | productReference = 33CC10ED2044A3C60003C045 /* car_dash.app */;
176 | productType = "com.apple.product-type.application";
177 | };
178 | /* End PBXNativeTarget section */
179 |
180 | /* Begin PBXProject section */
181 | 33CC10E52044A3C60003C045 /* Project object */ = {
182 | isa = PBXProject;
183 | attributes = {
184 | LastSwiftUpdateCheck = 0920;
185 | LastUpgradeCheck = 1300;
186 | ORGANIZATIONNAME = "";
187 | TargetAttributes = {
188 | 33CC10EC2044A3C60003C045 = {
189 | CreatedOnToolsVersion = 9.2;
190 | LastSwiftMigration = 1100;
191 | ProvisioningStyle = Automatic;
192 | SystemCapabilities = {
193 | com.apple.Sandbox = {
194 | enabled = 1;
195 | };
196 | };
197 | };
198 | 33CC111A2044C6BA0003C045 = {
199 | CreatedOnToolsVersion = 9.2;
200 | ProvisioningStyle = Manual;
201 | };
202 | };
203 | };
204 | buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */;
205 | compatibilityVersion = "Xcode 9.3";
206 | developmentRegion = en;
207 | hasScannedForEncodings = 0;
208 | knownRegions = (
209 | en,
210 | Base,
211 | );
212 | mainGroup = 33CC10E42044A3C60003C045;
213 | productRefGroup = 33CC10EE2044A3C60003C045 /* Products */;
214 | projectDirPath = "";
215 | projectRoot = "";
216 | targets = (
217 | 33CC10EC2044A3C60003C045 /* Runner */,
218 | 33CC111A2044C6BA0003C045 /* Flutter Assemble */,
219 | );
220 | };
221 | /* End PBXProject section */
222 |
223 | /* Begin PBXResourcesBuildPhase section */
224 | 33CC10EB2044A3C60003C045 /* Resources */ = {
225 | isa = PBXResourcesBuildPhase;
226 | buildActionMask = 2147483647;
227 | files = (
228 | 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */,
229 | 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */,
230 | );
231 | runOnlyForDeploymentPostprocessing = 0;
232 | };
233 | /* End PBXResourcesBuildPhase section */
234 |
235 | /* Begin PBXShellScriptBuildPhase section */
236 | 3399D490228B24CF009A79C7 /* ShellScript */ = {
237 | isa = PBXShellScriptBuildPhase;
238 | alwaysOutOfDate = 1;
239 | buildActionMask = 2147483647;
240 | files = (
241 | );
242 | inputFileListPaths = (
243 | );
244 | inputPaths = (
245 | );
246 | outputFileListPaths = (
247 | );
248 | outputPaths = (
249 | );
250 | runOnlyForDeploymentPostprocessing = 0;
251 | shellPath = /bin/sh;
252 | shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n";
253 | };
254 | 33CC111E2044C6BF0003C045 /* ShellScript */ = {
255 | isa = PBXShellScriptBuildPhase;
256 | buildActionMask = 2147483647;
257 | files = (
258 | );
259 | inputFileListPaths = (
260 | Flutter/ephemeral/FlutterInputs.xcfilelist,
261 | );
262 | inputPaths = (
263 | Flutter/ephemeral/tripwire,
264 | );
265 | outputFileListPaths = (
266 | Flutter/ephemeral/FlutterOutputs.xcfilelist,
267 | );
268 | outputPaths = (
269 | );
270 | runOnlyForDeploymentPostprocessing = 0;
271 | shellPath = /bin/sh;
272 | shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
273 | };
274 | /* End PBXShellScriptBuildPhase section */
275 |
276 | /* Begin PBXSourcesBuildPhase section */
277 | 33CC10E92044A3C60003C045 /* Sources */ = {
278 | isa = PBXSourcesBuildPhase;
279 | buildActionMask = 2147483647;
280 | files = (
281 | 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */,
282 | 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */,
283 | 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */,
284 | );
285 | runOnlyForDeploymentPostprocessing = 0;
286 | };
287 | /* End PBXSourcesBuildPhase section */
288 |
289 | /* Begin PBXTargetDependency section */
290 | 33CC11202044C79F0003C045 /* PBXTargetDependency */ = {
291 | isa = PBXTargetDependency;
292 | target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */;
293 | targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */;
294 | };
295 | /* End PBXTargetDependency section */
296 |
297 | /* Begin PBXVariantGroup section */
298 | 33CC10F42044A3C60003C045 /* MainMenu.xib */ = {
299 | isa = PBXVariantGroup;
300 | children = (
301 | 33CC10F52044A3C60003C045 /* Base */,
302 | );
303 | name = MainMenu.xib;
304 | path = Runner;
305 | sourceTree = "";
306 | };
307 | /* End PBXVariantGroup section */
308 |
309 | /* Begin XCBuildConfiguration section */
310 | 338D0CE9231458BD00FA5F75 /* Profile */ = {
311 | isa = XCBuildConfiguration;
312 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
313 | buildSettings = {
314 | ALWAYS_SEARCH_USER_PATHS = NO;
315 | CLANG_ANALYZER_NONNULL = YES;
316 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
317 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
318 | CLANG_CXX_LIBRARY = "libc++";
319 | CLANG_ENABLE_MODULES = YES;
320 | CLANG_ENABLE_OBJC_ARC = YES;
321 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
322 | CLANG_WARN_BOOL_CONVERSION = YES;
323 | CLANG_WARN_CONSTANT_CONVERSION = YES;
324 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
325 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
326 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
327 | CLANG_WARN_EMPTY_BODY = YES;
328 | CLANG_WARN_ENUM_CONVERSION = YES;
329 | CLANG_WARN_INFINITE_RECURSION = YES;
330 | CLANG_WARN_INT_CONVERSION = YES;
331 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
332 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
333 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
334 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
335 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
336 | CODE_SIGN_IDENTITY = "-";
337 | COPY_PHASE_STRIP = NO;
338 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
339 | ENABLE_NS_ASSERTIONS = NO;
340 | ENABLE_STRICT_OBJC_MSGSEND = YES;
341 | GCC_C_LANGUAGE_STANDARD = gnu11;
342 | GCC_NO_COMMON_BLOCKS = YES;
343 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
344 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
345 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
346 | GCC_WARN_UNUSED_FUNCTION = YES;
347 | GCC_WARN_UNUSED_VARIABLE = YES;
348 | MACOSX_DEPLOYMENT_TARGET = 10.14;
349 | MTL_ENABLE_DEBUG_INFO = NO;
350 | SDKROOT = macosx;
351 | SWIFT_COMPILATION_MODE = wholemodule;
352 | SWIFT_OPTIMIZATION_LEVEL = "-O";
353 | };
354 | name = Profile;
355 | };
356 | 338D0CEA231458BD00FA5F75 /* Profile */ = {
357 | isa = XCBuildConfiguration;
358 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
359 | buildSettings = {
360 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
361 | CLANG_ENABLE_MODULES = YES;
362 | CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
363 | CODE_SIGN_STYLE = Automatic;
364 | COMBINE_HIDPI_IMAGES = YES;
365 | INFOPLIST_FILE = Runner/Info.plist;
366 | LD_RUNPATH_SEARCH_PATHS = (
367 | "$(inherited)",
368 | "@executable_path/../Frameworks",
369 | );
370 | PROVISIONING_PROFILE_SPECIFIER = "";
371 | SWIFT_VERSION = 5.0;
372 | };
373 | name = Profile;
374 | };
375 | 338D0CEB231458BD00FA5F75 /* Profile */ = {
376 | isa = XCBuildConfiguration;
377 | buildSettings = {
378 | CODE_SIGN_STYLE = Manual;
379 | PRODUCT_NAME = "$(TARGET_NAME)";
380 | };
381 | name = Profile;
382 | };
383 | 33CC10F92044A3C60003C045 /* Debug */ = {
384 | isa = XCBuildConfiguration;
385 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
386 | buildSettings = {
387 | ALWAYS_SEARCH_USER_PATHS = NO;
388 | CLANG_ANALYZER_NONNULL = YES;
389 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
390 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
391 | CLANG_CXX_LIBRARY = "libc++";
392 | CLANG_ENABLE_MODULES = YES;
393 | CLANG_ENABLE_OBJC_ARC = YES;
394 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
395 | CLANG_WARN_BOOL_CONVERSION = YES;
396 | CLANG_WARN_CONSTANT_CONVERSION = YES;
397 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
398 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
399 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
400 | CLANG_WARN_EMPTY_BODY = YES;
401 | CLANG_WARN_ENUM_CONVERSION = YES;
402 | CLANG_WARN_INFINITE_RECURSION = YES;
403 | CLANG_WARN_INT_CONVERSION = YES;
404 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
405 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
406 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
407 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
408 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
409 | CODE_SIGN_IDENTITY = "-";
410 | COPY_PHASE_STRIP = NO;
411 | DEBUG_INFORMATION_FORMAT = dwarf;
412 | ENABLE_STRICT_OBJC_MSGSEND = YES;
413 | ENABLE_TESTABILITY = YES;
414 | GCC_C_LANGUAGE_STANDARD = gnu11;
415 | GCC_DYNAMIC_NO_PIC = NO;
416 | GCC_NO_COMMON_BLOCKS = YES;
417 | GCC_OPTIMIZATION_LEVEL = 0;
418 | GCC_PREPROCESSOR_DEFINITIONS = (
419 | "DEBUG=1",
420 | "$(inherited)",
421 | );
422 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
423 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
424 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
425 | GCC_WARN_UNUSED_FUNCTION = YES;
426 | GCC_WARN_UNUSED_VARIABLE = YES;
427 | MACOSX_DEPLOYMENT_TARGET = 10.14;
428 | MTL_ENABLE_DEBUG_INFO = YES;
429 | ONLY_ACTIVE_ARCH = YES;
430 | SDKROOT = macosx;
431 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
432 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
433 | };
434 | name = Debug;
435 | };
436 | 33CC10FA2044A3C60003C045 /* Release */ = {
437 | isa = XCBuildConfiguration;
438 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
439 | buildSettings = {
440 | ALWAYS_SEARCH_USER_PATHS = NO;
441 | CLANG_ANALYZER_NONNULL = YES;
442 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
443 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
444 | CLANG_CXX_LIBRARY = "libc++";
445 | CLANG_ENABLE_MODULES = YES;
446 | CLANG_ENABLE_OBJC_ARC = YES;
447 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
448 | CLANG_WARN_BOOL_CONVERSION = YES;
449 | CLANG_WARN_CONSTANT_CONVERSION = YES;
450 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
451 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
452 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
453 | CLANG_WARN_EMPTY_BODY = YES;
454 | CLANG_WARN_ENUM_CONVERSION = YES;
455 | CLANG_WARN_INFINITE_RECURSION = YES;
456 | CLANG_WARN_INT_CONVERSION = YES;
457 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
458 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
459 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
460 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
461 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
462 | CODE_SIGN_IDENTITY = "-";
463 | COPY_PHASE_STRIP = NO;
464 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
465 | ENABLE_NS_ASSERTIONS = NO;
466 | ENABLE_STRICT_OBJC_MSGSEND = YES;
467 | GCC_C_LANGUAGE_STANDARD = gnu11;
468 | GCC_NO_COMMON_BLOCKS = YES;
469 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
470 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
471 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
472 | GCC_WARN_UNUSED_FUNCTION = YES;
473 | GCC_WARN_UNUSED_VARIABLE = YES;
474 | MACOSX_DEPLOYMENT_TARGET = 10.14;
475 | MTL_ENABLE_DEBUG_INFO = NO;
476 | SDKROOT = macosx;
477 | SWIFT_COMPILATION_MODE = wholemodule;
478 | SWIFT_OPTIMIZATION_LEVEL = "-O";
479 | };
480 | name = Release;
481 | };
482 | 33CC10FC2044A3C60003C045 /* Debug */ = {
483 | isa = XCBuildConfiguration;
484 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
485 | buildSettings = {
486 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
487 | CLANG_ENABLE_MODULES = YES;
488 | CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
489 | CODE_SIGN_STYLE = Automatic;
490 | COMBINE_HIDPI_IMAGES = YES;
491 | INFOPLIST_FILE = Runner/Info.plist;
492 | LD_RUNPATH_SEARCH_PATHS = (
493 | "$(inherited)",
494 | "@executable_path/../Frameworks",
495 | );
496 | PROVISIONING_PROFILE_SPECIFIER = "";
497 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
498 | SWIFT_VERSION = 5.0;
499 | };
500 | name = Debug;
501 | };
502 | 33CC10FD2044A3C60003C045 /* Release */ = {
503 | isa = XCBuildConfiguration;
504 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
505 | buildSettings = {
506 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
507 | CLANG_ENABLE_MODULES = YES;
508 | CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
509 | CODE_SIGN_STYLE = Automatic;
510 | COMBINE_HIDPI_IMAGES = YES;
511 | INFOPLIST_FILE = Runner/Info.plist;
512 | LD_RUNPATH_SEARCH_PATHS = (
513 | "$(inherited)",
514 | "@executable_path/../Frameworks",
515 | );
516 | PROVISIONING_PROFILE_SPECIFIER = "";
517 | SWIFT_VERSION = 5.0;
518 | };
519 | name = Release;
520 | };
521 | 33CC111C2044C6BA0003C045 /* Debug */ = {
522 | isa = XCBuildConfiguration;
523 | buildSettings = {
524 | CODE_SIGN_STYLE = Manual;
525 | PRODUCT_NAME = "$(TARGET_NAME)";
526 | };
527 | name = Debug;
528 | };
529 | 33CC111D2044C6BA0003C045 /* Release */ = {
530 | isa = XCBuildConfiguration;
531 | buildSettings = {
532 | CODE_SIGN_STYLE = Automatic;
533 | PRODUCT_NAME = "$(TARGET_NAME)";
534 | };
535 | name = Release;
536 | };
537 | /* End XCBuildConfiguration section */
538 |
539 | /* Begin XCConfigurationList section */
540 | 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = {
541 | isa = XCConfigurationList;
542 | buildConfigurations = (
543 | 33CC10F92044A3C60003C045 /* Debug */,
544 | 33CC10FA2044A3C60003C045 /* Release */,
545 | 338D0CE9231458BD00FA5F75 /* Profile */,
546 | );
547 | defaultConfigurationIsVisible = 0;
548 | defaultConfigurationName = Release;
549 | };
550 | 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = {
551 | isa = XCConfigurationList;
552 | buildConfigurations = (
553 | 33CC10FC2044A3C60003C045 /* Debug */,
554 | 33CC10FD2044A3C60003C045 /* Release */,
555 | 338D0CEA231458BD00FA5F75 /* Profile */,
556 | );
557 | defaultConfigurationIsVisible = 0;
558 | defaultConfigurationName = Release;
559 | };
560 | 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = {
561 | isa = XCConfigurationList;
562 | buildConfigurations = (
563 | 33CC111C2044C6BA0003C045 /* Debug */,
564 | 33CC111D2044C6BA0003C045 /* Release */,
565 | 338D0CEB231458BD00FA5F75 /* Profile */,
566 | );
567 | defaultConfigurationIsVisible = 0;
568 | defaultConfigurationName = Release;
569 | };
570 | /* End XCConfigurationList section */
571 | };
572 | rootObject = 33CC10E52044A3C60003C045 /* Project object */;
573 | }
574 |
--------------------------------------------------------------------------------
/macos/Runner/Base.lproj/MainMenu.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
--------------------------------------------------------------------------------