diff --git a/apps/wyatt_clean_code/.gitignore b/apps/wyatt_clean_code/.gitignore
deleted file mode 100644
index a8e938c..0000000
--- a/apps/wyatt_clean_code/.gitignore
+++ /dev/null
@@ -1,47 +0,0 @@
-# Miscellaneous
-*.class
-*.log
-*.pyc
-*.swp
-.DS_Store
-.atom/
-.buildlog/
-.history
-.svn/
-migrate_working_dir/
-
-# IntelliJ related
-*.iml
-*.ipr
-*.iws
-.idea/
-
-# The .vscode folder contains launch configuration and tasks you configure in
-# VS Code which you may wish to be included in version control, so this line
-# is commented out by default.
-#.vscode/
-
-# Flutter/Dart/Pub related
-**/doc/api/
-**/ios/Flutter/.last_build_id
-.dart_tool/
-.flutter-plugins
-.flutter-plugins-dependencies
-.packages
-.pub-cache/
-.pub/
-/build/
-
-# Web related
-lib/generated_plugin_registrant.dart
-
-# Symbolication related
-app.*.symbols
-
-# Obfuscation related
-app.*.map.json
-
-# Android Studio will place build artifacts here
-/android/app/debug
-/android/app/profile
-/android/app/release
diff --git a/apps/wyatt_clean_code/.metadata b/apps/wyatt_clean_code/.metadata
deleted file mode 100644
index 2112298..0000000
--- a/apps/wyatt_clean_code/.metadata
+++ /dev/null
@@ -1,30 +0,0 @@
-# This file tracks properties of this Flutter project.
-# Used by Flutter tool to assess capabilities and perform upgrades etc.
-#
-# This file should be version controlled.
-
-version:
- revision: f1875d570e39de09040c8f79aa13cc56baab8db1
- channel: stable
-
-project_type: app
-
-# Tracks metadata for the flutter migrate command
-migration:
- platforms:
- - platform: root
- create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
- base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
- - platform: web
- create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
- base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
-
- # User provided section
-
- # List of Local paths (relative to this file) that should be
- # ignored by the migrate tool.
- #
- # Files that are not part of the templates will be ignored by default.
- unmanaged_files:
- - 'lib/main.dart'
- - 'ios/Runner.xcodeproj/project.pbxproj'
diff --git a/apps/wyatt_clean_code/.vscode/launch.json b/apps/wyatt_clean_code/.vscode/launch.json
deleted file mode 100644
index 40a2104..0000000
--- a/apps/wyatt_clean_code/.vscode/launch.json
+++ /dev/null
@@ -1,125 +0,0 @@
-{
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Launch development",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_development.dart",
- "args": [
- "--flavor",
- "development",
- "--target",
- "lib/main_development.dart"
- ],
- "flutterMode": "debug"
- },
- {
- "name": "Launch development in profile mode",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_development.dart",
- "args": [
- "--flavor",
- "development",
- "--target",
- "lib/main_development.dart"
- ],
- "flutterMode": "profile"
- },
- {
- "name": "Launch development in release mode",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_development.dart",
- "args": [
- "--flavor",
- "development",
- "--target",
- "lib/main_development.dart"
- ],
- "flutterMode": "release"
- },
- {
- "name": "Launch staging",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_staging.dart",
- "args": [
- "--flavor",
- "staging",
- "--target",
- "lib/main_staging.dart"
- ],
- "flutterMode": "debug"
- },
- {
- "name": "Launch staging in profile mode",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_staging.dart",
- "args": [
- "--flavor",
- "staging",
- "--target",
- "lib/main_staging.dart"
- ],
- "flutterMode": "profile"
- },
- {
- "name": "Launch staging in release mode",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_staging.dart",
- "args": [
- "--flavor",
- "staging",
- "--target",
- "lib/main_staging.dart"
- ],
- "flutterMode": "release"
- },
- {
- "name": "Launch production",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_production.dart",
- "args": [
- "--flavor",
- "production",
- "--target",
- "lib/main_production.dart"
- ],
- "flutterMode": "debug"
- },
- {
- "name": "Launch production in profile mode",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_production.dart",
- "args": [
- "--flavor",
- "production",
- "--target",
- "lib/main_production.dart"
- ],
- "flutterMode": "profile"
- },
- {
- "name": "Launch production in release mode",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_production.dart",
- "args": [
- "--flavor",
- "production",
- "--target",
- "lib/main_production.dart"
- ],
- "flutterMode": "release"
- },
- ]
-}
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/.vscode/settings.json b/apps/wyatt_clean_code/.vscode/settings.json
deleted file mode 100644
index 855293b..0000000
--- a/apps/wyatt_clean_code/.vscode/settings.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "bloc.newCubitTemplate.type": "equatable",
- "psi-header.config": {
- "blankLinesAfter": 0,
- "forceToTop": true,
- },
- "psi-header.templates": [
- {
- "language": "*",
- "template": [],
- // disabled,
- }
- ],
-}
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/Makefile b/apps/wyatt_clean_code/Makefile
deleted file mode 100644
index a9a3ef9..0000000
--- a/apps/wyatt_clean_code/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-.PHONY: help clean get upgrade format lint gen watch run-dev run-stg run-prod
-
-# Adding a help file: https://gist.github.com/prwhite/8168133#gistcomment-1313022
-help: ## This help dialog.
- @IFS=$$'\n' ; \
- help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//'`); \
- for help_line in $${help_lines[@]}; do \
- IFS=$$'#' ; \
- help_split=($$help_line) ; \
- help_command=`echo $${help_split[0]} | sed -e 's/^ *//' -e 's/ *$$//'` ; \
- help_info=`echo $${help_split[2]} | sed -e 's/^ *//' -e 's/ *$$//'` ; \
- printf "%-30s %s\n" $$help_command $$help_info ; \
- done
-
-clean: ## Cleans the environment.
- @echo "• Cleaning the project..."
- @rm -rf pubspec.lock
- @flutter clean
-
-get: ## Gets the dependencies.
- @echo "• Getting the dependencies..."
- @flutter pub get
-
-upgrade: clean ## Upgrades dependencies.
- @echo "• Upgrading dependencies..."
- @flutter pub upgrade
-
-format: ## Formats the code.
- @echo "• Formatting the code"
- @dart format . --fix
-
-lint: ## Lints the code.
- @echo "• Verifying code..."
- @dart analyze . || (echo "Error in project"; exit 1)
-
-gen: get ## Run build_runner build (Freezed, Fluttergen, Hive etc...)
- @echo "• build_runner build"
- @flutter pub run build_runner build
-
-watch: get ## Run build_runner watch (Freezed, Fluttergen, Hive etc...)
- @echo "• build_runner watch"
- @flutter pub run build_runner watch
-
-run-dev: ## Run app in development mode
- @echo "• Running the app (development)"
- @flutter run --flavor development --target lib/main_development.dart
-
-run-stg: ## Run app in staging mode
- @echo "• Running the app (staging)"
- @flutter run --flavor staging --target lib/main_staging.dart
-
-run-prod: ## Run app in production mode
- @echo "• Running the app (production)"
- @flutter run --flavor production --target lib/main_production.dart
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/README.md b/apps/wyatt_clean_code/README.md
deleted file mode 100644
index 27d3667..0000000
--- a/apps/wyatt_clean_code/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# wyatt_clean_code
-
-A new Flutter project.
-
-## Getting Started
-
-This project is a starting point for a Flutter application.
-
-A few resources to get you started if this is your first Flutter project:
-
-- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
-- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
-
-For help getting started with Flutter development, view the
-[online documentation](https://docs.flutter.dev/), which offers tutorials,
-samples, guidance on mobile development, and a full API reference.
diff --git a/apps/wyatt_clean_code/analysis_options.yaml b/apps/wyatt_clean_code/analysis_options.yaml
deleted file mode 100644
index 9bdb566..0000000
--- a/apps/wyatt_clean_code/analysis_options.yaml
+++ /dev/null
@@ -1,35 +0,0 @@
-# This file configures the analyzer, which statically analyzes Dart code to
-# check for errors, warnings, and lints.
-#
-# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
-# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
-# invoked from the command line by running `flutter analyze`.
-
-# The following line activates a set of recommended lints for Flutter by
-# Wyatt Studio, for apps packages, and plugins designed to
-# encourage good coding practices.
-include: package:wyatt_analysis/analysis_options.flutter.yaml
-
-analyzer:
- exclude:
- - '**/*.g.dart'
- - '**/*.freezed.dart'
-
-linter:
- # The lint rules applied to this project can be customized in the
- # section below to disable rules from the `package:flutter_lints/flutter.yaml`
- # included above or to enable additional rules. A list of all available lints
- # and their documentation is published at
- # https://dart-lang.github.io/linter/lints/index.html.
- #
- # Instead of disabling a lint rule for the entire project in the
- # section below, it can also be suppressed for a single line of code
- # or a specific dart file by using the `// ignore: name_of_lint` and
- # `// ignore_for_file: name_of_lint` syntax on the line or in the file
- # producing the lint.
- rules:
- # avoid_print: false # Uncomment to disable the `avoid_print` rule
- # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
-
-# Additional information about this file can be found at
-# https://dart.dev/guides/language/analysis-options
diff --git a/apps/wyatt_clean_code/android/.gitignore b/apps/wyatt_clean_code/android/.gitignore
deleted file mode 100644
index 6f56801..0000000
--- a/apps/wyatt_clean_code/android/.gitignore
+++ /dev/null
@@ -1,13 +0,0 @@
-gradle-wrapper.jar
-/.gradle
-/captures/
-/gradlew
-/gradlew.bat
-/local.properties
-GeneratedPluginRegistrant.java
-
-# Remember to never publicly share your keystore.
-# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
-key.properties
-**/*.keystore
-**/*.jks
diff --git a/apps/wyatt_clean_code/android/app/build.gradle b/apps/wyatt_clean_code/android/app/build.gradle
deleted file mode 100644
index 0b3ee57..0000000
--- a/apps/wyatt_clean_code/android/app/build.gradle
+++ /dev/null
@@ -1,117 +0,0 @@
-def localProperties = new Properties()
-def localPropertiesFile = rootProject.file('local.properties')
-if (localPropertiesFile.exists()) {
- localPropertiesFile.withReader('UTF-8') { reader ->
- localProperties.load(reader)
- }
-}
-
-def flutterRoot = localProperties.getProperty('flutter.sdk')
-if (flutterRoot == null) {
- throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
-}
-
-def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
-if (flutterVersionCode == null) {
- flutterVersionCode = '1'
-}
-
-def flutterVersionName = localProperties.getProperty('flutter.versionName')
-if (flutterVersionName == null) {
- flutterVersionName = '1.0'
-}
-
-def keystoreProperties = new Properties()
-def keystorePropertiesFile = rootProject.file('key.properties')
-if (keystorePropertiesFile.exists()) {
- keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
-}
-
-apply plugin: 'com.android.application'
-apply plugin: 'kotlin-android'
-apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
-
-android {
- compileSdkVersion flutter.compileSdkVersion
- ndkVersion flutter.ndkVersion
-
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
-
- kotlinOptions {
- jvmTarget = '1.8'
- }
-
- sourceSets {
- main.java.srcDirs += 'src/main/kotlin'
- }
-
- defaultConfig {
- // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
- applicationId "com.example.wyatt_clean_code"
- // You can update the following values to match your application needs.
- // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
- minSdkVersion flutter.minSdkVersion
- targetSdkVersion flutter.targetSdkVersion
- versionCode flutterVersionCode.toInteger()
- versionName flutterVersionName
- }
-
- signingConfigs {
- if (System.getenv("ANDROID_KEYSTORE_PATH")) {
- release {
- storeFile file(System.getenv("ANDROID_KEYSTORE_PATH"))
- keyAlias System.getenv("ANDROID_KEYSTORE_ALIAS")
- keyPassword System.getenv("ANDROID_KEYSTORE_PRIVATE_KEY_PASSWORD")
- storePassword System.getenv("ANDROID_KEYSTORE_PASSWORD")
- }
- } else {
- release {
- keyAlias keystoreProperties['keyAlias']
- keyPassword keystoreProperties['keyPassword']
- storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
- storePassword keystoreProperties['storePassword']
- }
- }
- }
-
- flavorDimensions "default"
- productFlavors {
- production {
- dimension "default"
- applicationIdSuffix ""
- manifestPlaceholders = [appName: "Wyatt Demo"]
- }
- staging {
- dimension "default"
- applicationIdSuffix ".stg"
- manifestPlaceholders = [appName: "[STG] Wyatt Demo"]
- }
- development {
- dimension "default"
- applicationIdSuffix ".dev"
- manifestPlaceholders = [appName: "[DEV] Wyatt Demo"]
- }
- }
-
- buildTypes {
- release {
- signingConfig signingConfigs.release
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android.txt')
- }
- debug {
- signingConfig signingConfigs.debug
- }
- }
-}
-
-flutter {
- source '../..'
-}
-
-dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
-}
diff --git a/apps/wyatt_clean_code/android/app/src/debug/AndroidManifest.xml b/apps/wyatt_clean_code/android/app/src/debug/AndroidManifest.xml
deleted file mode 100644
index 6ce672d..0000000
--- a/apps/wyatt_clean_code/android/app/src/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
diff --git a/apps/wyatt_clean_code/android/app/src/main/AndroidManifest.xml b/apps/wyatt_clean_code/android/app/src/main/AndroidManifest.xml
deleted file mode 100644
index a940650..0000000
--- a/apps/wyatt_clean_code/android/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/android/app/src/main/kotlin/com/example/wyatt_clean_code/MainActivity.kt b/apps/wyatt_clean_code/android/app/src/main/kotlin/com/example/wyatt_clean_code/MainActivity.kt
deleted file mode 100644
index 466b2c9..0000000
--- a/apps/wyatt_clean_code/android/app/src/main/kotlin/com/example/wyatt_clean_code/MainActivity.kt
+++ /dev/null
@@ -1,6 +0,0 @@
-package com.example.wyatt_clean_code
-
-import io.flutter.embedding.android.FlutterActivity
-
-class MainActivity: FlutterActivity() {
-}
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/drawable-v21/launch_background.xml b/apps/wyatt_clean_code/android/app/src/main/res/drawable-v21/launch_background.xml
deleted file mode 100644
index f74085f..0000000
--- a/apps/wyatt_clean_code/android/app/src/main/res/drawable-v21/launch_background.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/drawable/launch_background.xml b/apps/wyatt_clean_code/android/app/src/main/res/drawable/launch_background.xml
deleted file mode 100644
index 304732f..0000000
--- a/apps/wyatt_clean_code/android/app/src/main/res/drawable/launch_background.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/apps/wyatt_clean_code/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index db77bb4..0000000
Binary files a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/apps/wyatt_clean_code/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 17987b7..0000000
Binary files a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 09d4391..0000000
Binary files a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index d5f1c8d..0000000
Binary files a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 4d6372e..0000000
Binary files a/apps/wyatt_clean_code/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/values-night/styles.xml b/apps/wyatt_clean_code/android/app/src/main/res/values-night/styles.xml
deleted file mode 100644
index 06952be..0000000
--- a/apps/wyatt_clean_code/android/app/src/main/res/values-night/styles.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/android/app/src/main/res/values/styles.xml b/apps/wyatt_clean_code/android/app/src/main/res/values/styles.xml
deleted file mode 100644
index cb1ef88..0000000
--- a/apps/wyatt_clean_code/android/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/android/app/src/profile/AndroidManifest.xml b/apps/wyatt_clean_code/android/app/src/profile/AndroidManifest.xml
deleted file mode 100644
index 6ce672d..0000000
--- a/apps/wyatt_clean_code/android/app/src/profile/AndroidManifest.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
diff --git a/apps/wyatt_clean_code/android/build.gradle b/apps/wyatt_clean_code/android/build.gradle
deleted file mode 100644
index 83ae220..0000000
--- a/apps/wyatt_clean_code/android/build.gradle
+++ /dev/null
@@ -1,31 +0,0 @@
-buildscript {
- ext.kotlin_version = '1.6.10'
- repositories {
- google()
- mavenCentral()
- }
-
- dependencies {
- classpath 'com.android.tools.build:gradle:7.1.2'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
-}
-
-allprojects {
- repositories {
- google()
- mavenCentral()
- }
-}
-
-rootProject.buildDir = '../build'
-subprojects {
- project.buildDir = "${rootProject.buildDir}/${project.name}"
-}
-subprojects {
- project.evaluationDependsOn(':app')
-}
-
-task clean(type: Delete) {
- delete rootProject.buildDir
-}
diff --git a/apps/wyatt_clean_code/android/gradle.properties b/apps/wyatt_clean_code/android/gradle.properties
deleted file mode 100644
index 94adc3a..0000000
--- a/apps/wyatt_clean_code/android/gradle.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-org.gradle.jvmargs=-Xmx1536M
-android.useAndroidX=true
-android.enableJetifier=true
diff --git a/apps/wyatt_clean_code/android/gradle/wrapper/gradle-wrapper.properties b/apps/wyatt_clean_code/android/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index cc5527d..0000000
--- a/apps/wyatt_clean_code/android/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-#Fri Jun 23 08:50:38 CEST 2017
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
diff --git a/apps/wyatt_clean_code/android/settings.gradle b/apps/wyatt_clean_code/android/settings.gradle
deleted file mode 100644
index 44e62bc..0000000
--- a/apps/wyatt_clean_code/android/settings.gradle
+++ /dev/null
@@ -1,11 +0,0 @@
-include ':app'
-
-def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
-def properties = new Properties()
-
-assert localPropertiesFile.exists()
-localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
-
-def flutterSdkPath = properties.getProperty("flutter.sdk")
-assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
-apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
diff --git a/apps/wyatt_clean_code/assets/colors.xml b/apps/wyatt_clean_code/assets/colors.xml
deleted file mode 100644
index f5e9c9a..0000000
--- a/apps/wyatt_clean_code/assets/colors.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
- #FF2196F3
-
- #FF0061A6
- #FFFFFFFF
- #FFD0E4FF
- #FF001D36
-
- #FF535F70
- #FFFFFFFF
- #FFD6E3F7
- #FF101C2B
-
- #FFBA1B1B
- #FFFFFFFF
- #FFFFDAD4
- #FF410001
-
- #FFFDFCFF
- #FF1B1B1B
- #FFFDFCFF
- #FF1B1B1B
- #FFDFE2EB
- #FF42474E
- #FF73777F
- #FF000000
-
- #FF2F3033
- #FFF1F0F4
- #FF9CCAFF
-
-
- #FF9CCAFF
- #FF00325A
- #FF00497F
- #FFD0E4FF
-
- #FFBBC8DB
- #FF253140
- #FF3C4858
- #FFD6E3F7
-
- #FFFFB4A9
- #FF680003
- #FF930006
- #FFFFB4A9
-
- #FF1B1B1B
- #FFE2E2E6
- #FF1B1B1B
- #FFE2E2E6
- #FF42474E
- #FFC3C7D0
- #FF8D9199
- #FF000000
-
- #FFE2E2E6
- #FF2F3033
- #FF0061A6
-
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/assets/fonts/.gitkeep b/apps/wyatt_clean_code/assets/fonts/.gitkeep
deleted file mode 100644
index f94cb6f..0000000
--- a/apps/wyatt_clean_code/assets/fonts/.gitkeep
+++ /dev/null
@@ -1 +0,0 @@
-# just to keep empty folder in brick generation
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/assets/images/wyatt-studio-logo.png b/apps/wyatt_clean_code/assets/images/wyatt-studio-logo.png
deleted file mode 100644
index 322633e..0000000
Binary files a/apps/wyatt_clean_code/assets/images/wyatt-studio-logo.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/assets/l10n/intl_fr.arb b/apps/wyatt_clean_code/assets/l10n/intl_fr.arb
deleted file mode 100644
index b95f76d..0000000
--- a/apps/wyatt_clean_code/assets/l10n/intl_fr.arb
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "@@locale": "fr",
- "counterAppBarTitle": "Compteur",
- "@counterAppBarTitle": {
- "description": "Texte affiché dans l'AppBar de la page Compteur"
- },
- "youHavePushed": "Vous avez appuyé {count} fois sur le bouton !",
- "@youHavePushed": {
- "description": "Message affiché sur la page compteur",
- "placeholders": {
- "count": {
- "type": "int"
- }
- }
- },
- "goToCounter": "Aller au Compteur",
- "@goToCounter": {
- "description": "Texte affiché dans le bouton ammenant vers la page Compteur"
- }
-}
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/generate.sh b/apps/wyatt_clean_code/generate.sh
deleted file mode 100755
index ac3f503..0000000
--- a/apps/wyatt_clean_code/generate.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env sh
-
-make clean
-rm -rf .idea
-rm -f wyatt_clean_code.iml
-rm .fvm/flutter_sdk
-cd ../../
-echo "Brick generator..."
-dart tools/brick_generator/bin/brick_generator.dart wyatt_clean_code wyatt_clean_code wyatt-clean-code "Wyatt Demo" com.example.wyatt_clean_code
-
-echo "Make platforms optional..."
-mkdir bricks/wyatt_clean_code/__brick__/{{#enable_android}}android\{\{
-mv -f bricks/wyatt_clean_code/__brick__/android/ bricks/wyatt_clean_code/__brick__/{{#enable_android}}android{{/enable_android}}
-
-mkdir bricks/wyatt_clean_code/__brick__/{{#enable_ios}}ios\{\{
-mv -f bricks/wyatt_clean_code/__brick__/ios/ bricks/wyatt_clean_code/__brick__/{{#enable_ios}}ios{{/enable_ios}}
-
-mkdir bricks/wyatt_clean_code/__brick__/{{#enable_web}}web\{\{
-mv -f bricks/wyatt_clean_code/__brick__/web/ bricks/wyatt_clean_code/__brick__/{{#enable_web}}web{{/enable_web}}
-
-rm bricks/wyatt_clean_code/__brick__/generate.sh
-rm -rf bricks/wyatt_clean_code/__brick__/.fvm/flutter_sdk
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/ios/.gitignore b/apps/wyatt_clean_code/ios/.gitignore
deleted file mode 100644
index 7a7f987..0000000
--- a/apps/wyatt_clean_code/ios/.gitignore
+++ /dev/null
@@ -1,34 +0,0 @@
-**/dgph
-*.mode1v3
-*.mode2v3
-*.moved-aside
-*.pbxuser
-*.perspectivev3
-**/*sync/
-.sconsign.dblite
-.tags*
-**/.vagrant/
-**/DerivedData/
-Icon?
-**/Pods/
-**/.symlinks/
-profile
-xcuserdata
-**/.generated/
-Flutter/App.framework
-Flutter/Flutter.framework
-Flutter/Flutter.podspec
-Flutter/Generated.xcconfig
-Flutter/ephemeral/
-Flutter/app.flx
-Flutter/app.zip
-Flutter/flutter_assets/
-Flutter/flutter_export_environment.sh
-ServiceDefinitions.json
-Runner/GeneratedPluginRegistrant.*
-
-# Exceptions to above rules.
-!default.mode1v3
-!default.mode2v3
-!default.pbxuser
-!default.perspectivev3
diff --git a/apps/wyatt_clean_code/ios/Flutter/AppFrameworkInfo.plist b/apps/wyatt_clean_code/ios/Flutter/AppFrameworkInfo.plist
deleted file mode 100644
index 8d4492f..0000000
--- a/apps/wyatt_clean_code/ios/Flutter/AppFrameworkInfo.plist
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- App
- CFBundleIdentifier
- io.flutter.flutter.app
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- App
- CFBundlePackageType
- FMWK
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1.0
- MinimumOSVersion
- 9.0
-
-
diff --git a/apps/wyatt_clean_code/ios/Flutter/Debug.xcconfig b/apps/wyatt_clean_code/ios/Flutter/Debug.xcconfig
deleted file mode 100644
index 592ceee..0000000
--- a/apps/wyatt_clean_code/ios/Flutter/Debug.xcconfig
+++ /dev/null
@@ -1 +0,0 @@
-#include "Generated.xcconfig"
diff --git a/apps/wyatt_clean_code/ios/Flutter/Release.xcconfig b/apps/wyatt_clean_code/ios/Flutter/Release.xcconfig
deleted file mode 100644
index 592ceee..0000000
--- a/apps/wyatt_clean_code/ios/Flutter/Release.xcconfig
+++ /dev/null
@@ -1 +0,0 @@
-#include "Generated.xcconfig"
diff --git a/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.pbxproj b/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.pbxproj
deleted file mode 100644
index 4e399b8..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,1174 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 50;
- objects = {
-
-/* Begin PBXBuildFile section */
- 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
- 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
- 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
- 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
- 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
- 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXCopyFilesBuildPhase section */
- 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
- 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
- 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
- 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
- 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
- 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
- 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
- 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
- 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
- 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
- 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
- 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
- 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 97C146EB1CF9000F007C117D /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 9740EEB11CF90186004384FC /* Flutter */ = {
- isa = PBXGroup;
- children = (
- 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
- 9740EEB21CF90195004384FC /* Debug.xcconfig */,
- 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
- 9740EEB31CF90195004384FC /* Generated.xcconfig */,
- );
- name = Flutter;
- sourceTree = "";
- };
- 97C146E51CF9000F007C117D = {
- isa = PBXGroup;
- children = (
- 9740EEB11CF90186004384FC /* Flutter */,
- 97C146F01CF9000F007C117D /* Runner */,
- 97C146EF1CF9000F007C117D /* Products */,
- );
- sourceTree = "";
- };
- 97C146EF1CF9000F007C117D /* Products */ = {
- isa = PBXGroup;
- children = (
- 97C146EE1CF9000F007C117D /* Runner.app */,
- );
- name = Products;
- sourceTree = "";
- };
- 97C146F01CF9000F007C117D /* Runner */ = {
- isa = PBXGroup;
- children = (
- 97C146FA1CF9000F007C117D /* Main.storyboard */,
- 97C146FD1CF9000F007C117D /* Assets.xcassets */,
- 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
- 97C147021CF9000F007C117D /* Info.plist */,
- 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
- 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
- 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
- 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
- );
- path = Runner;
- sourceTree = "";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 97C146ED1CF9000F007C117D /* Runner */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
- buildPhases = (
- 9740EEB61CF901F6004384FC /* Run Script */,
- 97C146EA1CF9000F007C117D /* Sources */,
- 97C146EB1CF9000F007C117D /* Frameworks */,
- 97C146EC1CF9000F007C117D /* Resources */,
- 9705A1C41CF9048500538489 /* Embed Frameworks */,
- 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Runner;
- productName = Runner;
- productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
- productType = "com.apple.product-type.application";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 97C146E61CF9000F007C117D /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 1300;
- ORGANIZATIONNAME = "";
- TargetAttributes = {
- 97C146ED1CF9000F007C117D = {
- CreatedOnToolsVersion = 7.3.1;
- LastSwiftMigration = 1100;
- };
- };
- };
- buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
- compatibilityVersion = "Xcode 9.3";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 97C146E51CF9000F007C117D;
- productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 97C146ED1CF9000F007C117D /* Runner */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 97C146EC1CF9000F007C117D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
- 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
- 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
- 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
- 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Thin Binary";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
- };
- 9740EEB61CF901F6004384FC /* Run Script */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Run Script";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
- };
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 97C146EA1CF9000F007C117D /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
- 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXVariantGroup section */
- 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 97C146FB1CF9000F007C117D /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "";
- };
- 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 97C147001CF9000F007C117D /* Base */,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 249021D3217E4FDB00AE95B9 /* Profile */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Profile;
- };
- 249021D4217E4FDB00AE95B9 /* Profile */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Profile;
- };
- 6B497CB72889B0D000E01771 /* Debug-development */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = "Debug-development";
- };
- 6B497CB82889B0D000E01771 /* Debug-development */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Debug-development";
- };
- 6B497CB92889B0F300E01771 /* Debug-staging */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = "Debug-staging";
- };
- 6B497CBA2889B0F300E01771 /* Debug-staging */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Debug-staging";
- };
- 6B497CBB2889B11500E01771 /* Debug-production */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = "Debug-production";
- };
- 6B497CBC2889B11500E01771 /* Debug-production */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Debug-production";
- };
- 6B497CBD2889B12000E01771 /* Profile-development */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = "Profile-development";
- };
- 6B497CBE2889B12000E01771 /* Profile-development */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Profile-development";
- };
- 6B497CBF2889B12800E01771 /* Profile-staging */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = "Profile-staging";
- };
- 6B497CC02889B12800E01771 /* Profile-staging */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Profile-staging";
- };
- 6B497CC12889B12F00E01771 /* Profile-production */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = "Profile-production";
- };
- 6B497CC22889B12F00E01771 /* Profile-production */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Profile-production";
- };
- 6B497CC32889B13A00E01771 /* Release-development */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = "Release-development";
- };
- 6B497CC42889B13A00E01771 /* Release-development */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Release-development";
- };
- 6B497CC52889B14200E01771 /* Release-staging */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = "Release-staging";
- };
- 6B497CC62889B14200E01771 /* Release-staging */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Release-staging";
- };
- 6B497CC72889B14900E01771 /* Release-production */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = "Release-production";
- };
- 6B497CC82889B14900E01771 /* Release-production */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = "Release-production";
- };
- 97C147031CF9000F007C117D /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 97C147041CF9000F007C117D /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 97C147061CF9000F007C117D /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- 97C147071CF9000F007C117D /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
- DEVELOPMENT_TEAM = 6Z5P8GG96U;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = Runner/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.example.wyattCleanCode;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 97C147031CF9000F007C117D /* Debug */,
- 6B497CB72889B0D000E01771 /* Debug-development */,
- 6B497CB92889B0F300E01771 /* Debug-staging */,
- 6B497CBB2889B11500E01771 /* Debug-production */,
- 97C147041CF9000F007C117D /* Release */,
- 6B497CC32889B13A00E01771 /* Release-development */,
- 6B497CC52889B14200E01771 /* Release-staging */,
- 6B497CC72889B14900E01771 /* Release-production */,
- 249021D3217E4FDB00AE95B9 /* Profile */,
- 6B497CBD2889B12000E01771 /* Profile-development */,
- 6B497CBF2889B12800E01771 /* Profile-staging */,
- 6B497CC12889B12F00E01771 /* Profile-production */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 97C147061CF9000F007C117D /* Debug */,
- 6B497CB82889B0D000E01771 /* Debug-development */,
- 6B497CBA2889B0F300E01771 /* Debug-staging */,
- 6B497CBC2889B11500E01771 /* Debug-production */,
- 97C147071CF9000F007C117D /* Release */,
- 6B497CC42889B13A00E01771 /* Release-development */,
- 6B497CC62889B14200E01771 /* Release-staging */,
- 6B497CC82889B14900E01771 /* Release-production */,
- 249021D4217E4FDB00AE95B9 /* Profile */,
- 6B497CBE2889B12000E01771 /* Profile-development */,
- 6B497CC02889B12800E01771 /* Profile-staging */,
- 6B497CC22889B12F00E01771 /* Profile-production */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 97C146E61CF9000F007C117D /* Project object */;
-}
diff --git a/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 919434a..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
deleted file mode 100644
index 18d9810..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- IDEDidComputeMac32BitWarning
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
deleted file mode 100644
index f9b0d7c..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- PreviewsEnabled
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
deleted file mode 100644
index c87d15a..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme b/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme
deleted file mode 100644
index 85c759b..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme b/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme
deleted file mode 100644
index 85c759b..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme b/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme
deleted file mode 100644
index 85c759b..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcworkspace/contents.xcworkspacedata b/apps/wyatt_clean_code/ios/Runner.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 1d526a1..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/apps/wyatt_clean_code/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
deleted file mode 100644
index 18d9810..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- IDEDidComputeMac32BitWarning
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/apps/wyatt_clean_code/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
deleted file mode 100644
index f9b0d7c..0000000
--- a/apps/wyatt_clean_code/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- PreviewsEnabled
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner/AppDelegate.swift b/apps/wyatt_clean_code/ios/Runner/AppDelegate.swift
deleted file mode 100644
index 70693e4..0000000
--- a/apps/wyatt_clean_code/ios/Runner/AppDelegate.swift
+++ /dev/null
@@ -1,13 +0,0 @@
-import UIKit
-import Flutter
-
-@UIApplicationMain
-@objc class AppDelegate: FlutterAppDelegate {
- override func application(
- _ application: UIApplication,
- didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
- ) -> Bool {
- GeneratedPluginRegistrant.register(with: self)
- return super.application(application, didFinishLaunchingWithOptions: launchOptions)
- }
-}
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
deleted file mode 100644
index d36b1fa..0000000
--- a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
+++ /dev/null
@@ -1,122 +0,0 @@
-{
- "images" : [
- {
- "size" : "20x20",
- "idiom" : "iphone",
- "filename" : "Icon-App-20x20@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "20x20",
- "idiom" : "iphone",
- "filename" : "Icon-App-20x20@3x.png",
- "scale" : "3x"
- },
- {
- "size" : "29x29",
- "idiom" : "iphone",
- "filename" : "Icon-App-29x29@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "29x29",
- "idiom" : "iphone",
- "filename" : "Icon-App-29x29@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "29x29",
- "idiom" : "iphone",
- "filename" : "Icon-App-29x29@3x.png",
- "scale" : "3x"
- },
- {
- "size" : "40x40",
- "idiom" : "iphone",
- "filename" : "Icon-App-40x40@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "40x40",
- "idiom" : "iphone",
- "filename" : "Icon-App-40x40@3x.png",
- "scale" : "3x"
- },
- {
- "size" : "60x60",
- "idiom" : "iphone",
- "filename" : "Icon-App-60x60@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "60x60",
- "idiom" : "iphone",
- "filename" : "Icon-App-60x60@3x.png",
- "scale" : "3x"
- },
- {
- "size" : "20x20",
- "idiom" : "ipad",
- "filename" : "Icon-App-20x20@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "20x20",
- "idiom" : "ipad",
- "filename" : "Icon-App-20x20@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "29x29",
- "idiom" : "ipad",
- "filename" : "Icon-App-29x29@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "29x29",
- "idiom" : "ipad",
- "filename" : "Icon-App-29x29@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "40x40",
- "idiom" : "ipad",
- "filename" : "Icon-App-40x40@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "40x40",
- "idiom" : "ipad",
- "filename" : "Icon-App-40x40@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "76x76",
- "idiom" : "ipad",
- "filename" : "Icon-App-76x76@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "76x76",
- "idiom" : "ipad",
- "filename" : "Icon-App-76x76@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "83.5x83.5",
- "idiom" : "ipad",
- "filename" : "Icon-App-83.5x83.5@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "1024x1024",
- "idiom" : "ios-marketing",
- "filename" : "Icon-App-1024x1024@1x.png",
- "scale" : "1x"
- }
- ],
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
deleted file mode 100644
index dc9ada4..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
deleted file mode 100644
index 28c6bf0..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
deleted file mode 100644
index 2ccbfd9..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
deleted file mode 100644
index f091b6b..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
deleted file mode 100644
index 4cde121..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
deleted file mode 100644
index d0ef06e..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
deleted file mode 100644
index dcdc230..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
deleted file mode 100644
index 2ccbfd9..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
deleted file mode 100644
index c8f9ed8..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
deleted file mode 100644
index a6d6b86..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
deleted file mode 100644
index a6d6b86..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
deleted file mode 100644
index 75b2d16..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
deleted file mode 100644
index c4df70d..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
deleted file mode 100644
index 6a84f41..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
deleted file mode 100644
index d0e1f58..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
deleted file mode 100644
index 0bedcf2..0000000
--- a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "images" : [
- {
- "idiom" : "universal",
- "filename" : "LaunchImage.png",
- "scale" : "1x"
- },
- {
- "idiom" : "universal",
- "filename" : "LaunchImage@2x.png",
- "scale" : "2x"
- },
- {
- "idiom" : "universal",
- "filename" : "LaunchImage@3x.png",
- "scale" : "3x"
- }
- ],
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
deleted file mode 100644
index 9da19ea..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
deleted file mode 100644
index 9da19ea..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
deleted file mode 100644
index 9da19ea..0000000
Binary files a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png and /dev/null differ
diff --git a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
deleted file mode 100644
index 89c2725..0000000
--- a/apps/wyatt_clean_code/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# Launch Screen Assets
-
-You can customize the launch screen with your own desired assets by replacing the image files in this directory.
-
-You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/ios/Runner/Base.lproj/LaunchScreen.storyboard b/apps/wyatt_clean_code/ios/Runner/Base.lproj/LaunchScreen.storyboard
deleted file mode 100644
index f2e259c..0000000
--- a/apps/wyatt_clean_code/ios/Runner/Base.lproj/LaunchScreen.storyboard
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner/Base.lproj/Main.storyboard b/apps/wyatt_clean_code/ios/Runner/Base.lproj/Main.storyboard
deleted file mode 100644
index f3c2851..0000000
--- a/apps/wyatt_clean_code/ios/Runner/Base.lproj/Main.storyboard
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner/Info.plist b/apps/wyatt_clean_code/ios/Runner/Info.plist
deleted file mode 100644
index 80488e4..0000000
--- a/apps/wyatt_clean_code/ios/Runner/Info.plist
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- $(DEVELOPMENT_LANGUAGE)
- CFBundleDisplayName
- Wyatt Clean Code
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- wyatt_clean_code
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- $(FLUTTER_BUILD_NAME)
- CFBundleSignature
- ????
- CFBundleVersion
- $(FLUTTER_BUILD_NUMBER)
- LSRequiresIPhoneOS
-
- UILaunchStoryboardName
- LaunchScreen
- UIMainStoryboardFile
- Main
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UIViewControllerBasedStatusBarAppearance
-
- CADisableMinimumFrameDurationOnPhone
-
-
-
diff --git a/apps/wyatt_clean_code/ios/Runner/Runner-Bridging-Header.h b/apps/wyatt_clean_code/ios/Runner/Runner-Bridging-Header.h
deleted file mode 100644
index 308a2a5..0000000
--- a/apps/wyatt_clean_code/ios/Runner/Runner-Bridging-Header.h
+++ /dev/null
@@ -1 +0,0 @@
-#import "GeneratedPluginRegistrant.h"
diff --git a/apps/wyatt_clean_code/l10n.yaml b/apps/wyatt_clean_code/l10n.yaml
deleted file mode 100644
index dcb899b..0000000
--- a/apps/wyatt_clean_code/l10n.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-arb-dir: assets/l10n
-template-arb-file: intl_fr.arb
-output-localization-file: app_localizations.dart
-nullable-getter: false
diff --git a/apps/wyatt_clean_code/lib/bootstrap.dart b/apps/wyatt_clean_code/lib/bootstrap.dart
deleted file mode 100644
index 757794e..0000000
--- a/apps/wyatt_clean_code/lib/bootstrap.dart
+++ /dev/null
@@ -1,46 +0,0 @@
-import 'dart:async';
-
-import 'package:flutter/foundation.dart';
-import 'package:flutter/widgets.dart';
-import 'package:flutter_bloc/flutter_bloc.dart';
-import 'package:go_router/go_router.dart';
-import 'package:wyatt_clean_code/core/dependency_injection/get_it.dart';
-import 'package:wyatt_clean_code/core/flavors/flavor_settings.dart';
-import 'package:wyatt_clean_code/core/utils/app_bloc_observer.dart';
-import 'package:wyatt_clean_code/core/utils/wyatt_printer.dart';
-
-Future bootstrap(FutureOr Function() builder) async {
- await runZonedGuarded(
- () async {
- WidgetsFlutterBinding.ensureInitialized();
-
- FlutterError.onError = (details) {
- WyattPrinter.get().e(
- '',
- details,
- details.stack,
- );
- };
-
- FlavorSettings.init();
- GetItInitializer.run();
-
- GoRouter.setUrlPathStrategy(UrlPathStrategy.path);
-
- if (!kReleaseMode) {
- final env = FlavorSettings.get();
- WyattPrinter.get().i('Flavor : ${env.flavor.name}');
- }
-
- await BlocOverrides.runZoned(
- () async => runApp(await builder()),
- blocObserver: AppBlocObserver(),
- );
- },
- (error, stackTrace) => WyattPrinter.get().e(
- '',
- error,
- stackTrace,
- ),
- );
-}
diff --git a/apps/wyatt_clean_code/lib/core/constants/.gitkeep b/apps/wyatt_clean_code/lib/core/constants/.gitkeep
deleted file mode 100644
index f94cb6f..0000000
--- a/apps/wyatt_clean_code/lib/core/constants/.gitkeep
+++ /dev/null
@@ -1 +0,0 @@
-# just to keep empty folder in brick generation
\ No newline at end of file
diff --git a/apps/wyatt_clean_code/lib/core/dependency_injection/get_it.dart b/apps/wyatt_clean_code/lib/core/dependency_injection/get_it.dart
deleted file mode 100644
index 7180ebb..0000000
--- a/apps/wyatt_clean_code/lib/core/dependency_injection/get_it.dart
+++ /dev/null
@@ -1,15 +0,0 @@
-import 'dart:async';
-
-import 'package:get_it/get_it.dart';
-
-final getIt = GetIt.I;
-
-abstract class GetItInitializer {
- static Future init() async {
- // Here, register data sources
- }
-
- static void run() {
- unawaited(init());
- }
-}
diff --git a/apps/wyatt_clean_code/lib/core/design_system/colors.dart b/apps/wyatt_clean_code/lib/core/design_system/colors.dart
deleted file mode 100644
index b48f3f8..0000000
--- a/apps/wyatt_clean_code/lib/core/design_system/colors.dart
+++ /dev/null
@@ -1,2 +0,0 @@
-/// Generate colors with `flutter pub run build_runner build`
-export 'package:wyatt_clean_code/gen/colors.gen.dart';
diff --git a/apps/wyatt_clean_code/lib/core/design_system/sizing.dart b/apps/wyatt_clean_code/lib/core/design_system/sizing.dart
deleted file mode 100644
index 1c4fdc0..0000000
--- a/apps/wyatt_clean_code/lib/core/design_system/sizing.dart
+++ /dev/null
@@ -1,235 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:gap/gap.dart';
-
-/// Geometric progression.
-abstract class AppSizing {
- /// Default to 1
- static const double factor = 1;
-
- /// SizedBox.shrink();
- static const SizedBox empty = SizedBox.shrink();
-
- /// xxs = factor * 2
- static const double xxs = factor * 2;
-
- /// xs = factor * 4
- static const double xs = factor * 4;
-
- /// s = factor * 8
- static const double s = factor * 8;
-
- /// m = factor * 16
- static const double m = factor * 16;
-
- /// l = factor * 32
- static const double l = factor * 32;
-
- /// xl = factor * 64
- static const double xl = factor * 64;
-
- /// xxl = factor * 128
- static const double xxl = factor * 128;
-
- /// xxs = factor * 2
- static const Gap xxsGap = Gap(xxs);
-
- /// xs = factor * 4
- static const Gap xsGap = Gap(xs);
-
- /// s = factor * 8
- static const Gap sGap = Gap(s);
-
- /// m = factor * 16
- static const Gap mGap = Gap(m);
-
- /// l = factor * 32
- static const Gap lGap = Gap(l);
-
- /// xl = factor * 64
- static const Gap xlGap = Gap(xl);
-
- /// xxl = factor * 128
- static const Gap xxlGap = Gap(xxl);
-
- /// xxs = factor * 2
- static const Radius xxsRadius = Radius.circular(xxs);
-
- /// xs = factor * 4
- static const Radius xsRadius = Radius.circular(xs);
-
- /// s = factor * 8
- static const Radius sRadius = Radius.circular(s);
-
- /// m = factor * 16
- static const Radius mRadius = Radius.circular(m);
-
- /// l = factor * 32
- static const Radius lRadius = Radius.circular(l);
-
- /// xl = factor * 64
- static const Radius xlRadius = Radius.circular(xl);
-
- /// xxl = factor * 128
- static const Radius xxlRadius = Radius.circular(xxl);
-
- /// xxs = factor * 2
- ///
- /// A square inset offers indents content on all four sides.
- ///
- /// *e.g [EdgeInsets.all(value)]*
- static const EdgeInsets xxsSquareInset = EdgeInsets.all(xxs);
-
- /// xs = factor * 4
- ///
- /// A square inset offers indents content on all four sides.
- ///
- /// *e.g [EdgeInsets.all(value)]*
- static const EdgeInsets xsSquareInset = EdgeInsets.all(xs);
-
- /// s = factor * 8
- ///
- /// A square inset offers indents content on all four sides.
- ///
- /// *e.g [EdgeInsets.all(value)]*
- static const EdgeInsets sSquareInset = EdgeInsets.all(s);
-
- /// m = factor * 16
- ///
- /// A square inset offers indents content on all four sides.
- ///
- /// *e.g [EdgeInsets.all(value)]*
- static const EdgeInsets mSquareInset = EdgeInsets.all(m);
-
- /// l = factor * 32
- ///
- /// A square inset offers indents content on all four sides.
- ///
- /// *e.g [EdgeInsets.all(value)]*
- static const EdgeInsets lSquareInset = EdgeInsets.all(l);
-
- /// xl = factor * 64
- ///
- /// A square inset offers indents content on all four sides.
- ///
- /// *e.g [EdgeInsets.all(value)]*
- static const EdgeInsets xlSquareInset = EdgeInsets.all(xl);
-
- /// xxl = factor * 128
- ///
- /// A square inset offers indents content on all four sides.
- ///
- /// *e.g [EdgeInsets.all(value)]*
- static const EdgeInsets xxlSquareInset = EdgeInsets.all(xxl);
-
- /// xxs = factor * 2
- ///
- /// A squished inset reduces space top and bottom by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(horizontal: value, vertical: value / 2)]*
- static const EdgeInsets xxsSquishInset =
- EdgeInsets.symmetric(horizontal: xxs, vertical: xxs / 2);
-
- /// xs = factor * 4
- ///
- /// A squished inset reduces space top and bottom by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(horizontal: value, vertical: value / 2)]*
- static const EdgeInsets xsSquishInset =
- EdgeInsets.symmetric(horizontal: xs, vertical: xs / 2);
-
- /// s = factor * 8
- ///
- /// A squished inset reduces space top and bottom by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(horizontal: value, vertical: value / 2)]*
- static const EdgeInsets sSquishInset =
- EdgeInsets.symmetric(horizontal: s, vertical: s / 2);
-
- /// m = factor * 16
- ///
- /// A squished inset reduces space top and bottom by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(horizontal: value, vertical: value / 2)]*
- static const EdgeInsets mSquishInset =
- EdgeInsets.symmetric(horizontal: m, vertical: m / 2);
-
- /// l = factor * 32
- ///
- /// A squished inset reduces space top and bottom by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(horizontal: value, vertical: value / 2)]*
- static const EdgeInsets lSquishInset =
- EdgeInsets.symmetric(horizontal: l, vertical: l / 2);
-
- /// xl = factor * 64
- ///
- /// A squished inset reduces space top and bottom by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(horizontal: value, vertical: value / 2)]*
- static const EdgeInsets xlSquishInset =
- EdgeInsets.symmetric(horizontal: xl, vertical: xl / 2);
-
- /// xxl = factor * 128
- ///
- /// A squished inset reduces space top and bottom by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(horizontal: value, vertical: value / 2)]*
- static const EdgeInsets xxlSquishInset =
- EdgeInsets.symmetric(horizontal: xxl, vertical: xxl / 2);
-
- /// xxs = factor * 2
- ///
- /// A stretched inset reduces space left and right by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(vertical: value, horizontal: value / 2)]*
- static const EdgeInsets xxsStretchInset =
- EdgeInsets.symmetric(vertical: xxs, horizontal: xxs / 2);
-
- /// xs = factor * 4
- ///
- /// A stretched inset reduces space left and right by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(vertical: value, horizontal: value / 2)]*
- static const EdgeInsets xsStretchInset =
- EdgeInsets.symmetric(vertical: xs, horizontal: xs / 2);
-
- /// s = factor * 8
- ///
- /// A stretched inset reduces space left and right by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(vertical: value, horizontal: value / 2)]*
- static const EdgeInsets sStretchInset =
- EdgeInsets.symmetric(vertical: s, horizontal: s / 2);
-
- /// m = factor * 16
- ///
- /// A stretched inset reduces space left and right by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(vertical: value, horizontal: value / 2)]*
- static const EdgeInsets mStretchInset =
- EdgeInsets.symmetric(vertical: m, horizontal: m / 2);
-
- /// l = factor * 32
- ///
- /// A stretched inset reduces space left and right by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(vertical: value, horizontal: value / 2)]*
- static const EdgeInsets lStretchInset =
- EdgeInsets.symmetric(vertical: l, horizontal: l / 2);
-
- /// xl = factor * 64
- ///
- /// A stretched inset reduces space left and right by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(vertical: value, horizontal: value / 2)]*
- static const EdgeInsets xlStretchInset =
- EdgeInsets.symmetric(vertical: xl, horizontal: xl / 2);
-
- /// xxl = factor * 128
- ///
- /// A stretched inset reduces space left and right by 50%.
- ///
- /// *e.g [EdgeInsets.symmetric(vertical: value, horizontal: value / 2)]*
- static const EdgeInsets xxlStretchInset =
- EdgeInsets.symmetric(vertical: xxl, horizontal: xxl / 2);
-}
diff --git a/apps/wyatt_clean_code/lib/core/design_system/theme.dart b/apps/wyatt_clean_code/lib/core/design_system/theme.dart
deleted file mode 100644
index 1f079c0..0000000
--- a/apps/wyatt_clean_code/lib/core/design_system/theme.dart
+++ /dev/null
@@ -1,240 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:wyatt_clean_code/core/design_system/colors.dart';
-import 'package:wyatt_clean_code/core/design_system/typography.dart';
-
-const _smallTextScaleFactor = 0.80;
-const _largeTextScaleFactor = 1.20;
-
-/// Namespace for the [ThemeData].
-class AppTheme {
- /// Light `ThemeData` for UI.
- static ThemeData get light => ThemeData(
- colorScheme: ColorScheme.fromSwatch(
- primarySwatch: ColorName.seedColor,
- accentColor: ColorName.seedColorAccent,
- cardColor: ColorName.lightBackground,
- backgroundColor: ColorName.lightBackground,
- errorColor: ColorName.lightError,
- ),
- appBarTheme: _appBarLightTheme,
- elevatedButtonTheme: _elevatedButtonLightTheme,
- outlinedButtonTheme: _outlinedButtonLightTheme,
- textTheme: _textTheme(),
- dialogTheme: _dialogLightTheme,
- tooltipTheme: _tooltipLightTheme,
- bottomSheetTheme: _bottomSheetLightTheme,
- tabBarTheme: _tabBarLightTheme,
- dividerTheme: _dividerLightTheme,
- backgroundColor: ColorName.lightBackground,
- );
-
- /// dark `ThemeData` for UI.
- static ThemeData get dark => ThemeData(
- colorScheme: ColorScheme.fromSwatch(
- primarySwatch: ColorName.seedColor,
- accentColor: ColorName.darkSecondary,
- cardColor: ColorName.darkBackground,
- backgroundColor: ColorName.darkBackground,
- errorColor: ColorName.darkError,
- brightness: Brightness.dark,
- ),
- appBarTheme: _appBarDarkTheme,
- elevatedButtonTheme: _elevatedButtonDarkTheme,
- outlinedButtonTheme: _outlinedButtonDarkTheme,
- textTheme: _textTheme(isDark: true),
- dialogTheme: _dialogDarkTheme,
- tooltipTheme: _tooltipDarkTheme,
- bottomSheetTheme: _bottomSheetDarkTheme,
- tabBarTheme: _tabBarDarkTheme,
- dividerTheme: _dividerDarkTheme,
- backgroundColor: ColorName.darkBackground,
- canvasColor: ColorName.darkBackground,
- );
-
- /// `ThemeData` for UI for small screens.
- static ThemeData get lightSmall =>
- light.copyWith(textTheme: _smallTextTheme());
-
- /// `ThemeData` for UI for medium screens.
- static ThemeData get lightMedium =>
- light.copyWith(textTheme: _smallTextTheme());
-
- /// `ThemeData` for UI for large screens.
- static ThemeData get lightLarge =>
- light.copyWith(textTheme: _largeTextTheme());
-
- /// `ThemeData` for UI for small screens.
- static ThemeData get darkSmall =>
- dark.copyWith(textTheme: _smallTextTheme(isDark: true));
-
- /// `ThemeData` for UI for medium screens.
- static ThemeData get darkMedium =>
- dark.copyWith(textTheme: _smallTextTheme(isDark: true));
-
- /// `ThemeData` for UI for large screens.
- static ThemeData get darkLarge =>
- dark.copyWith(textTheme: _largeTextTheme(isDark: true));
-
- static TextTheme _textTheme({bool isDark = false}) => TextTheme(
- headline1: AppTypography.headline1,
- headline2: AppTypography.headline2,
- headline3: AppTypography.headline3,
- headline4: AppTypography.headline4,
- headline5: AppTypography.headline5,
- headline6: AppTypography.headline6,
- subtitle1: AppTypography.subtitle1,
- subtitle2: AppTypography.subtitle2,
- bodyText1: AppTypography.bodyText1,
- bodyText2: AppTypography.bodyText2,
- caption: AppTypography.caption,
- overline: AppTypography.overline,
- button: AppTypography.button,
- ).apply(
- bodyColor:
- isDark ? ColorName.darkOnBackground : ColorName.lightOnBackground,
- displayColor:
- isDark ? ColorName.darkOnBackground : ColorName.lightOnBackground,
- );
-
- static TextTheme _smallTextTheme({bool isDark = false}) =>
- _textTheme(isDark: isDark).apply(fontSizeFactor: _smallTextScaleFactor);
-
- static TextTheme _largeTextTheme({bool isDark = false}) =>
- _textTheme(isDark: isDark).apply(fontSizeFactor: _largeTextScaleFactor);
-
- static AppBarTheme get _appBarLightTheme =>
- const AppBarTheme(color: ColorName.lightPrimary);
-
- static AppBarTheme get _appBarDarkTheme =>
- const AppBarTheme(color: ColorName.darkSurfaceVariant);
-
- static ElevatedButtonThemeData get _elevatedButtonLightTheme =>
- ElevatedButtonThemeData(
- style: ElevatedButton.styleFrom(
- elevation: 0,
- shape: const RoundedRectangleBorder(
- borderRadius: BorderRadius.all(Radius.circular(30)),
- ),
- primary: ColorName.lightPrimary,
- fixedSize: const Size(208, 54),
- ),
- );
-
- static ElevatedButtonThemeData get _elevatedButtonDarkTheme =>
- ElevatedButtonThemeData(
- style: ElevatedButton.styleFrom(
- elevation: 0,
- shape: const RoundedRectangleBorder(
- borderRadius: BorderRadius.all(Radius.circular(30)),
- ),
- primary: ColorName.darkPrimary,
- fixedSize: const Size(208, 54),
- ),
- );
-
- static OutlinedButtonThemeData get _outlinedButtonLightTheme =>
- OutlinedButtonThemeData(
- style: OutlinedButton.styleFrom(
- shape: const RoundedRectangleBorder(
- borderRadius: BorderRadius.all(Radius.circular(30)),
- ),
- side: const BorderSide(color: ColorName.lightOutline, width: 2),
- primary: ColorName.lightPrimary,
- fixedSize: const Size(208, 54),
- ),
- );
-
- static OutlinedButtonThemeData get _outlinedButtonDarkTheme =>
- OutlinedButtonThemeData(
- style: OutlinedButton.styleFrom(
- shape: const RoundedRectangleBorder(
- borderRadius: BorderRadius.all(Radius.circular(30)),
- ),
- side: const BorderSide(color: ColorName.darkOutline, width: 2),
- primary: ColorName.darkPrimary,
- fixedSize: const Size(208, 54),
- ),
- );
-
- static TooltipThemeData get _tooltipLightTheme => const TooltipThemeData(
- decoration: BoxDecoration(
- color: ColorName.lightInverseSurface,
- borderRadius: BorderRadius.all(Radius.circular(5)),
- ),
- padding: EdgeInsets.all(10),
- textStyle: TextStyle(color: ColorName.lightOnInverseSurface),
- );
-
- static TooltipThemeData get _tooltipDarkTheme => const TooltipThemeData(
- decoration: BoxDecoration(
- color: ColorName.darkInverseSurface,
- borderRadius: BorderRadius.all(Radius.circular(5)),
- ),
- padding: EdgeInsets.all(10),
- textStyle: TextStyle(color: ColorName.darkOnInverseSurface),
- );
-
- static DialogTheme get _dialogLightTheme => DialogTheme(
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(12),
- ),
- );
-
- static DialogTheme get _dialogDarkTheme => DialogTheme(
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(12),
- ),
- );
-
- static BottomSheetThemeData get _bottomSheetLightTheme =>
- const BottomSheetThemeData(
- backgroundColor: ColorName.lightBackground,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.vertical(top: Radius.circular(12)),
- ),
- );
-
- static BottomSheetThemeData get _bottomSheetDarkTheme =>
- const BottomSheetThemeData(
- backgroundColor: ColorName.darkBackground,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.vertical(top: Radius.circular(12)),
- ),
- );
-
- static TabBarTheme get _tabBarLightTheme => const TabBarTheme(
- indicator: UnderlineTabIndicator(
- borderSide: BorderSide(
- width: 2,
- color: ColorName.lightPrimary,
- ),
- ),
- labelColor: ColorName.lightPrimary,
- unselectedLabelColor: ColorName.lightOutline,
- indicatorSize: TabBarIndicatorSize.tab,
- );
-
- static TabBarTheme get _tabBarDarkTheme => const TabBarTheme(
- indicator: UnderlineTabIndicator(
- borderSide: BorderSide(
- width: 2,
- color: ColorName.darkPrimary,
- ),
- ),
- labelColor: ColorName.darkPrimary,
- unselectedLabelColor: ColorName.darkOutline,
- indicatorSize: TabBarIndicatorSize.tab,
- );
-
- static DividerThemeData get _dividerLightTheme => const DividerThemeData(
- space: 0,
- thickness: 1,
- color: ColorName.lightOutline,
- );
-
- static DividerThemeData get _dividerDarkTheme => const DividerThemeData(
- space: 0,
- thickness: 1,
- color: ColorName.darkOutline,
- );
-}
diff --git a/apps/wyatt_clean_code/lib/core/design_system/typography.dart b/apps/wyatt_clean_code/lib/core/design_system/typography.dart
deleted file mode 100644
index ce1b241..0000000
--- a/apps/wyatt_clean_code/lib/core/design_system/typography.dart
+++ /dev/null
@@ -1,115 +0,0 @@
-import 'package:flutter/material.dart';
-
-abstract class AppFontWeight {
- /// FontWeight value of `w900`
- static const FontWeight black = FontWeight.w900;
-
- /// FontWeight value of `w800`
- static const FontWeight extraBold = FontWeight.w800;
-
- /// FontWeight value of `w700`
- static const FontWeight bold = FontWeight.w700;
-
- /// FontWeight value of `w600`
- static const FontWeight semiBold = FontWeight.w600;
-
- /// FontWeight value of `w500`
- static const FontWeight medium = FontWeight.w500;
-
- /// FontWeight value of `w400`
- static const FontWeight regular = FontWeight.w400;
-
- /// FontWeight value of `w300`
- static const FontWeight light = FontWeight.w300;
-
- /// FontWeight value of `w200`
- static const FontWeight extraLight = FontWeight.w200;
-
- /// FontWeight value of `w100`
- static const FontWeight thin = FontWeight.w100;
-}
-
-class AppTypography {
- static const TextStyle _base = TextStyle(
- color: Colors.black,
- fontWeight: AppFontWeight.regular,
- );
-
- /// Headline 1 Text Style
- static TextStyle get headline1 => _base.copyWith(
- fontSize: 56,
- fontWeight: AppFontWeight.medium,
- );
-
- /// Headline 2 Text Style
- static TextStyle get headline2 => _base.copyWith(
- fontSize: 30,
- fontWeight: AppFontWeight.regular,
- );
-
- /// Headline 3 Text Style
- static TextStyle get headline3 => _base.copyWith(
- fontSize: 28,
- fontWeight: AppFontWeight.regular,
- );
-
- /// Headline 4 Text Style
- static TextStyle get headline4 => _base.copyWith(
- fontSize: 22,
- fontWeight: AppFontWeight.bold,
- );
-
- /// Headline 5 Text Style
- static TextStyle get headline5 => _base.copyWith(
- fontSize: 20,
- fontWeight: AppFontWeight.medium,
- );
-
- /// Headline 6 Text Style
- static TextStyle get headline6 => _base.copyWith(
- fontSize: 22,
- fontWeight: AppFontWeight.bold,
- );
-
- /// Subtitle 1 Text Style
- static TextStyle get subtitle1 => _base.copyWith(
- fontSize: 16,
- fontWeight: AppFontWeight.bold,
- );
-
- /// Subtitle 2 Text Style
- static TextStyle get subtitle2 => _base.copyWith(
- fontSize: 14,
- fontWeight: AppFontWeight.bold,
- );
-
- /// Body Text 1 Text Style
- static TextStyle get bodyText1 => _base.copyWith(
- fontSize: 18,
- fontWeight: AppFontWeight.medium,
- );
-
- /// Body Text 2 Text Style (the default)
- static TextStyle get bodyText2 => _base.copyWith(
- fontSize: 16,
- fontWeight: AppFontWeight.regular,
- );
-
- /// Caption Text Style
- static TextStyle get caption => _base.copyWith(
- fontSize: 14,
- fontWeight: AppFontWeight.regular,
- );
-
- /// Overline Text Style
- static TextStyle get overline => _base.copyWith(
- fontSize: 16,
- fontWeight: AppFontWeight.regular,
- );
-
- /// Button Text Style
- static TextStyle get button => _base.copyWith(
- fontSize: 18,
- fontWeight: AppFontWeight.medium,
- );
-}
diff --git a/apps/wyatt_clean_code/lib/core/enums/exception_type.dart b/apps/wyatt_clean_code/lib/core/enums/exception_type.dart
deleted file mode 100644
index decb960..0000000
--- a/apps/wyatt_clean_code/lib/core/enums/exception_type.dart
+++ /dev/null
@@ -1,7 +0,0 @@
-enum AppExceptionType {
- network,
- api,
- database,
- cache,
- assertion,
-}
diff --git a/apps/wyatt_clean_code/lib/core/enums/flavor.dart b/apps/wyatt_clean_code/lib/core/enums/flavor.dart
deleted file mode 100644
index 2cec6bb..0000000
--- a/apps/wyatt_clean_code/lib/core/enums/flavor.dart
+++ /dev/null
@@ -1,12 +0,0 @@
-import 'package:flutter/material.dart';
-
-enum Flavor {
- development('dev', Colors.red),
- staging('stg', Colors.blue),
- production('prod', Colors.green);
-
- final String short;
- final Color color;
-
- const Flavor(this.short, this.color);
-}
diff --git a/apps/wyatt_clean_code/lib/core/errors/exceptions.dart b/apps/wyatt_clean_code/lib/core/errors/exceptions.dart
deleted file mode 100644
index 48d84be..0000000
--- a/apps/wyatt_clean_code/lib/core/errors/exceptions.dart
+++ /dev/null
@@ -1,29 +0,0 @@
-import 'package:equatable/equatable.dart';
-import 'package:wyatt_clean_code/core/enums/exception_type.dart';
-
-abstract class AppException extends Equatable implements Exception {
- final String message;
- final AppExceptionType type;
-
- AppException(this.type, [String? message]) : message = message ?? type.name;
-
- @override
- List