diff --git a/apps/wyatt_app_template/brick_config.yaml b/apps/wyatt_app_template/brick_config.yaml
new file mode 100644
index 0000000..b90fd25
--- /dev/null
+++ b/apps/wyatt_app_template/brick_config.yaml
@@ -0,0 +1,31 @@
+name: wyatt_app_template
+description: New app template for Wyatt Studio projects.
+path_to_brickify: wyatt_app_template
+
+version: 0.1.0
+
+vars:
+ display_name:
+ name: Wyatt App
+ type: string
+ description: The display name
+ default: Wyatt App
+ prompt: "What is the display name?"
+ project_name:
+ name: wyatt_app_template
+ type: string
+ description: The project name
+ default: wyatt_app
+ prompt: "What is the project name?"
+ org_name:
+ name: io.wyattapp.new
+ type: string
+ description: The organization name
+ default: io.wyattapp.new
+ prompt: "What is the organization name?"
+ description:
+ name: wyatt_description
+ type: string
+ description: A short project description
+ default: An app by Wyatt Studio.
+ prompt: "What is the project description?"
\ No newline at end of file
diff --git a/apps/wyatt_app_template/wyatt_app_template/.env.example b/apps/wyatt_app_template/wyatt_app_template/.env.example
new file mode 100644
index 0000000..e69de29
diff --git a/apps/wyatt_app_template/wyatt_app_template/.gitignore b/apps/wyatt_app_template/wyatt_app_template/.gitignore
new file mode 100644
index 0000000..8f2fa50
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/.gitignore
@@ -0,0 +1,53 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.buildlog/
+.history
+.svn/
+migrate_working_dir/
+
+# IntelliJ related
+*.iml
+*.ipr
+*.iws
+.idea/
+*.env.*
+!*.env.example
+
+# 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
+.mason/
+
+.env
+!.env.example
\ No newline at end of file
diff --git a/apps/wyatt_app_template/wyatt_app_template/.metadata b/apps/wyatt_app_template/wyatt_app_template/.metadata
new file mode 100644
index 0000000..ddd7794
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/.metadata
@@ -0,0 +1,33 @@
+# 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: 135454af32477f815a7525073027a3ff9eff1bfd
+ channel: stable
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
+ base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
+ - platform: android
+ create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
+ base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
+ - platform: ios
+ create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
+ base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
+
+ # 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_app_template/wyatt_app_template/README.md b/apps/wyatt_app_template/wyatt_app_template/README.md
new file mode 100644
index 0000000..3a62ff3
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/README.md
@@ -0,0 +1,9 @@
+# Wyatt App
+
+wyatt_description
+
+## Requirements
+
+- Flutter
+- Taskfile
+- Trapeze
\ No newline at end of file
diff --git a/apps/wyatt_app_template/wyatt_app_template/Taskfile.yml b/apps/wyatt_app_template/wyatt_app_template/Taskfile.yml
new file mode 100644
index 0000000..43888b9
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/Taskfile.yml
@@ -0,0 +1,51 @@
+version: 3
+
+vars:
+ RED: '\033[0;31m'
+ GREEN: '\033[0;32m'
+ COLOROFF: '\033[0m'
+ PREFIX: "⏳"
+
+includes:
+ gen: ./automation/generator.yml
+ pub: ./automation/pub.yml
+ run: ./automation/run.yml
+ build: ./automation/build.yml
+
+silent: true
+
+tasks:
+ help:
+ desc: Help dialog.
+ aliases: [h, default]
+ cmds:
+ - task --summary --list-all
+
+ clean:
+ desc: Cleans the environment.
+ aliases: [cl]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Cleaning the project...{{.COLOROFF}}"
+ - flutter clean
+
+ format:
+ desc: Formats the code.
+ aliases: [fmt]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Formatting the code...{{.COLOROFF}}"
+ - flutter format --fix
+ - dart fix --apply
+
+ lint:
+ desc: Lints the code.
+ aliases: [l]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Verifying code...{{.COLOROFF}}"
+ - dart analyze . || (echo "Error in project"; exit 1)
+
+ start-emulators:
+ desc: Start needed emulators.
+ aliases: [emu]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Start Firebase emulators...{{.COLOROFF}}"
+ - firebase emulators:start --only auth,functions,firestore,storage --import=./functions/saved-data --export-on-exit=./functions/saved-data
diff --git a/apps/wyatt_app_template/wyatt_app_template/analysis_options.yaml b/apps/wyatt_app_template/wyatt_app_template/analysis_options.yaml
new file mode 100644
index 0000000..f165353
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/analysis_options.yaml
@@ -0,0 +1,23 @@
+include: package:wyatt_analysis/analysis_options.flutter.yaml
+
+dart_code_metrics:
+ anti-patterns:
+ - long-method
+ - long-parameter-list
+ metrics:
+ cyclomatic-complexity: 20
+ maximum-nesting-level: 5
+ number-of-parameters: 4
+ source-lines-of-code: 50
+ metrics-exclude:
+ - test/**
+ rules:
+ - newline-before-return
+ - no-boolean-literal-compare
+ - no-empty-block
+ - prefer-trailing-comma
+ - prefer-conditional-expressions
+ - no-equal-then-else
+ - avoid-border-all
+ - prefer-const-border-radius
+ - prefer-using-list-view
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/.gitignore b/apps/wyatt_app_template/wyatt_app_template/android/.gitignore
new file mode 100644
index 0000000..6f56801
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/.gitignore
@@ -0,0 +1,13 @@
+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_app_template/wyatt_app_template/android/app/build.gradle b/apps/wyatt_app_template/wyatt_app_template/android/app/build.gradle
new file mode 100644
index 0000000..cc30cd1
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/build.gradle
@@ -0,0 +1,71 @@
+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'
+}
+
+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 "io.wyattapp.new.wyatt_app_template"
+ // 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
+ }
+
+ buildTypes {
+ release {
+ // TODO: Add your own signing config for the release build.
+ // Signing with the debug keys for now, so `flutter run --release` works.
+ signingConfig signingConfigs.debug
+ }
+ }
+}
+
+flutter {
+ source '../..'
+}
+
+dependencies {
+ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/debug/AndroidManifest.xml b/apps/wyatt_app_template/wyatt_app_template/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..b7f2933
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/AndroidManifest.xml b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..ef7a00b
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/kotlin/io/wyattapp/new/wyatt_app_template/MainActivity.kt b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/kotlin/io/wyattapp/new/wyatt_app_template/MainActivity.kt
new file mode 100644
index 0000000..3861c72
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/kotlin/io/wyattapp/new/wyatt_app_template/MainActivity.kt
@@ -0,0 +1,6 @@
+package io.wyattapp.new.wyatt_app_template
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity: FlutterActivity() {
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/drawable-v21/launch_background.xml b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000..f74085f
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/drawable/launch_background.xml b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..304732f
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..db77bb4
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..17987b7
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..09d4391
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..d5f1c8d
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..4d6372e
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/values-night/styles.xml b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000..06952be
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/values/styles.xml b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..cb1ef88
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/app/src/profile/AndroidManifest.xml b/apps/wyatt_app_template/wyatt_app_template/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..b7f2933
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/build.gradle b/apps/wyatt_app_template/wyatt_app_template/android/build.gradle
new file mode 100644
index 0000000..83ae220
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/build.gradle
@@ -0,0 +1,31 @@
+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_app_template/wyatt_app_template/android/gradle.properties b/apps/wyatt_app_template/wyatt_app_template/android/gradle.properties
new file mode 100644
index 0000000..94adc3a
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Xmx1536M
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/apps/wyatt_app_template/wyatt_app_template/android/gradle/wrapper/gradle-wrapper.properties b/apps/wyatt_app_template/wyatt_app_template/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..cb24abd
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+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_app_template/wyatt_app_template/android/settings.gradle b/apps/wyatt_app_template/wyatt_app_template/android/settings.gradle
new file mode 100644
index 0000000..44e62bc
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/android/settings.gradle
@@ -0,0 +1,11 @@
+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_app_template/wyatt_app_template/assets/colors.xml b/apps/wyatt_app_template/wyatt_app_template/assets/colors.xml
new file mode 100644
index 0000000..503e1f0
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/assets/colors.xml
@@ -0,0 +1,5 @@
+
+
+ #FFFFFF
+ #000000
+
\ No newline at end of file
diff --git a/apps/wyatt_app_template/wyatt_app_template/assets/images/wyatt_logo.jpeg b/apps/wyatt_app_template/wyatt_app_template/assets/images/wyatt_logo.jpeg
new file mode 100644
index 0000000..09e8249
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/assets/images/wyatt_logo.jpeg differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/assets/l10n/intl_fr.arb b/apps/wyatt_app_template/wyatt_app_template/assets/l10n/intl_fr.arb
new file mode 100644
index 0000000..b95f76d
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/assets/l10n/intl_fr.arb
@@ -0,0 +1,20 @@
+{
+ "@@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_app_template/wyatt_app_template/automation/build.yml b/apps/wyatt_app_template/wyatt_app_template/automation/build.yml
new file mode 100644
index 0000000..7dbc051
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/automation/build.yml
@@ -0,0 +1,38 @@
+version: 3
+
+vars:
+ RED: '\033[0;31m'
+ GREEN: '\033[0;32m'
+ COLOROFF: '\033[0m'
+ PREFIX: "⏳"
+
+silent: true
+
+tasks:
+ clean:
+ desc: Cleans the environment.
+ internal: true
+ cmds:
+ - flutter clean
+
+ get:
+ desc: Getting latest dependencies.
+ internal: true
+ cmds:
+ - flutter pub get
+
+ android:
+ desc: Building Android APK
+ deps: [clean, get]
+ aliases: [a]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Building Android APK...{{.COLOROFF}}"
+ - flutter build lib/main_production apk --no-pub --no-shrink
+
+ ios:
+ desc: Building iOS IPA
+ deps: [clean, get]
+ aliases: [i]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Building iOS IPA...{{.COLOROFF}}"
+ - flutter build lib/main_production ipa --no-pub
\ No newline at end of file
diff --git a/apps/wyatt_app_template/wyatt_app_template/automation/generator.yml b/apps/wyatt_app_template/wyatt_app_template/automation/generator.yml
new file mode 100644
index 0000000..0f3d7aa
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/automation/generator.yml
@@ -0,0 +1,63 @@
+version: 3
+
+vars:
+ RED: '\033[0;31m'
+ GREEN: '\033[0;32m'
+ COLOROFF: '\033[0m'
+ PREFIX: "⏳"
+
+silent: true
+
+tasks:
+ get:
+ internal: true
+ desc: Gets dependencies.
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Getting the dependencies...{{.COLOROFF}}"
+ - flutter pub get
+
+ build:
+ desc: Running build runner
+ deps: [get]
+ aliases: [b]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running build runner...{{.COLOROFF}}"
+ - flutter pub run build_runner build
+
+ intl:
+ desc: Generating internationalization file
+ deps: [get]
+ aliases: [i]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running intl generation...{{.COLOROFF}}"
+ - flutter gen-l10n
+
+ build-delete:
+ desc: Running build runner with deletion of conflicting outputs
+ deps: [get]
+ aliases: [d]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running build runner with deletion of conflicting outputs...{{.COLOROFF}}"
+ - flutter pub run build_runner build --delete-conflicting-outputs
+
+ clean:
+ desc: Cleaning build runner
+ aliases: [c]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Cleaning build runner...{{.COLOROFF}}"
+ - flutter pub run build_runner clean
+
+ watch:
+ desc: Running build runner in watch mode
+ deps: [get]
+ aliases: [w]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running build runner in watch mode...{{.COLOROFF}}"
+ - flutter pub run build_runner watch
+
+ trapeze:
+ desc: Running Trapeze config
+ aliases: [t]
+ cmds:
+ - npm install @trapezedev/configure
+ - npx trapeze run trapeze.yaml
diff --git a/apps/wyatt_app_template/wyatt_app_template/automation/pub.yml b/apps/wyatt_app_template/wyatt_app_template/automation/pub.yml
new file mode 100644
index 0000000..94cd880
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/automation/pub.yml
@@ -0,0 +1,39 @@
+version: 3
+
+vars:
+ RED: '\033[0;31m'
+ GREEN: '\033[0;32m'
+ COLOROFF: '\033[0m'
+ PREFIX: "⏳"
+
+silent: true
+
+tasks:
+ get:
+ desc: Getting latest dependencies
+ aliases: [g]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Getting latest dependencies...{{.COLOROFF}}"
+ - flutter pub get
+
+ upgrade:
+ desc: Upgrading dependencies
+ aliases: [u]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Upgrading dependencies...{{.COLOROFF}}"
+ - flutter pub upgrade
+
+ upgrade-major:
+ desc: Upgrading dependencies
+ aliases: [um]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Upgrading dependencies --major-versions...{{.COLOROFF}}"
+ - flutter pub upgrade --major-versions
+
+ outdated:
+ desc: Checking for outdated dependencies
+ deps: [upgrade]
+ aliases: [o]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Checking for outdated dependencies...{{.COLOROFF}}"
+ - flutter pub upgrade
diff --git a/apps/wyatt_app_template/wyatt_app_template/automation/run.yml b/apps/wyatt_app_template/wyatt_app_template/automation/run.yml
new file mode 100644
index 0000000..66bff75
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/automation/run.yml
@@ -0,0 +1,59 @@
+version: 3
+
+vars:
+ RED: '\033[0;31m'
+ GREEN: '\033[0;32m'
+ COLOROFF: '\033[0m'
+ PREFIX: "⏳"
+
+silent: true
+
+tasks:
+ logs:
+ desc: Show log output for running Flutter apps
+ aliases: [l]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Showing log output for running Flutter apps...{{.COLOROFF}}"
+ - flutter logs
+
+ mock:
+ desc: Run app in development environnement with mocks
+ aliases: [m]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (development:mocks)...{{.COLOROFF}}"
+ - flutter run --target lib/main_development.dart --dart-define="dev_mode=mock"
+
+ emu:
+ desc: Run app in development with emulated environment
+ aliases: [m]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (development:emulator)...{{.COLOROFF}}"
+ - flutter run --target lib/main_development.dart --dart-define="dev_mode=emulator"
+
+ dev:
+ desc: Run app in development environnement
+ aliases: [m]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (development:real)...{{.COLOROFF}}"
+ - flutter run --target lib/main_development.dart --dart-define="dev_mode=real"
+
+ staging:
+ desc: Run app in staging environnement
+ aliases: [s]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (staging)...{{.COLOROFF}}"
+ - flutter run --target lib/main_staging.dart
+
+ prod:
+ desc: Run app in production environnement
+ aliases: [p]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (production)...{{.COLOROFF}}"
+ - flutter run --target lib/main_production.dart
+
+ release:
+ desc: Run app in production environnement and in release mode
+ aliases: [r]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (production/release)...{{.COLOROFF}}"
+ - flutter run --target lib/main_production.dart --release
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/.gitignore b/apps/wyatt_app_template/wyatt_app_template/ios/.gitignore
new file mode 100644
index 0000000..7a7f987
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/.gitignore
@@ -0,0 +1,34 @@
+**/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_app_template/wyatt_app_template/ios/Flutter/AppFrameworkInfo.plist b/apps/wyatt_app_template/wyatt_app_template/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 0000000..9625e10
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Flutter/AppFrameworkInfo.plist
@@ -0,0 +1,26 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ App
+ CFBundleIdentifier
+ io.flutter.flutter.app
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ App
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+ MinimumOSVersion
+ 11.0
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Flutter/Debug.xcconfig b/apps/wyatt_app_template/wyatt_app_template/ios/Flutter/Debug.xcconfig
new file mode 100644
index 0000000..ec97fc6
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Flutter/Debug.xcconfig
@@ -0,0 +1,2 @@
+#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
+#include "Generated.xcconfig"
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Flutter/Release.xcconfig b/apps/wyatt_app_template/wyatt_app_template/ios/Flutter/Release.xcconfig
new file mode 100644
index 0000000..c4855bf
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Flutter/Release.xcconfig
@@ -0,0 +1,2 @@
+#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
+#include "Generated.xcconfig"
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Podfile b/apps/wyatt_app_template/wyatt_app_template/ios/Podfile
new file mode 100644
index 0000000..88359b2
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Podfile
@@ -0,0 +1,41 @@
+# Uncomment this line to define a global platform for your project
+# platform :ios, '11.0'
+
+# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
+ENV['COCOAPODS_DISABLE_STATS'] = 'true'
+
+project 'Runner', {
+ 'Debug' => :debug,
+ 'Profile' => :release,
+ 'Release' => :release,
+}
+
+def flutter_root
+ generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
+ unless File.exist?(generated_xcode_build_settings_path)
+ raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
+ end
+
+ File.foreach(generated_xcode_build_settings_path) do |line|
+ matches = line.match(/FLUTTER_ROOT\=(.*)/)
+ return matches[1].strip if matches
+ end
+ raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
+end
+
+require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
+
+flutter_ios_podfile_setup
+
+target 'Runner' do
+ use_frameworks!
+ use_modular_headers!
+
+ flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
+end
+
+post_install do |installer|
+ installer.pods_project.targets.each do |target|
+ flutter_additional_ios_build_settings(target)
+ end
+end
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.pbxproj b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..2f4af02
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,484 @@
+// !$*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 = 11.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 = io.wyattapp.new.wyattAppTemplate;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Profile;
+ };
+ 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 = 11.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 = 11.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 = io.wyattapp.new.wyattAppTemplate;
+ 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 = io.wyattapp.new.wyattAppTemplate;
+ 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 */,
+ 97C147041CF9000F007C117D /* Release */,
+ 249021D3217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147061CF9000F007C117D /* Debug */,
+ 97C147071CF9000F007C117D /* Release */,
+ 249021D4217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000..c87d15a
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/contents.xcworkspacedata b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..1d526a1
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/AppDelegate.swift b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000..70693e4
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+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_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..d36b1fa
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,122 @@
+{
+ "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_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 0000000..dc9ada4
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 0000000..28c6bf0
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 0000000..2ccbfd9
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 0000000..f091b6b
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 0000000..4cde121
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 0000000..d0ef06e
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 0000000..dcdc230
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 0000000..2ccbfd9
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 0000000..c8f9ed8
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 0000000..a6d6b86
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 0000000..a6d6b86
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 0000000..75b2d16
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 0000000..c4df70d
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 0000000..6a84f41
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 0000000..d0e1f58
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000..0bedcf2
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -0,0 +1,23 @@
+{
+ "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_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 0000000..89c2725
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
@@ -0,0 +1,5 @@
+# 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_app_template/wyatt_app_template/ios/Runner/Base.lproj/LaunchScreen.storyboard b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..f2e259c
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Base.lproj/Main.storyboard b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 0000000..f3c2851
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Info.plist b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Info.plist
new file mode 100644
index 0000000..d0301a4
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Info.plist
@@ -0,0 +1,51 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ Wyatt App Template
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ wyatt_app_template
+ 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
+
+ UIApplicationSupportsIndirectInputEvents
+
+
+
diff --git a/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Runner-Bridging-Header.h b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 0000000..308a2a5
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/apps/wyatt_app_template/wyatt_app_template/l10n.yaml b/apps/wyatt_app_template/wyatt_app_template/l10n.yaml
new file mode 100644
index 0000000..7a66bf4
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/l10n.yaml
@@ -0,0 +1,8 @@
+arb-dir: assets/l10n
+template-arb-file: intl_fr.arb
+output-localization-file: app_localizations.dart
+output-dir: lib/gen/
+nullable-getter: false
+use-deferred-loading: true
+synthetic-package: false
+header: "/// Wyatt App, localized files. Automatically generated with `task gen:intl`."
\ No newline at end of file
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/bootstrap.dart b/apps/wyatt_app_template/wyatt_app_template/lib/bootstrap.dart
new file mode 100644
index 0000000..cf39bb3
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/bootstrap.dart
@@ -0,0 +1,21 @@
+import 'dart:async';
+
+import 'package:flutter/material.dart';
+import 'package:flutter_bloc/flutter_bloc.dart';
+import 'package:flutter_native_splash/flutter_native_splash.dart';
+import 'package:wyatt_app_template/core/dependency_injection/get_it.dart';
+import 'package:wyatt_app_template/core/flavors/flavor.dart';
+import 'package:wyatt_app_template/core/utils/app_bloc_observer.dart';
+
+Future bootstrap(FutureOr Function() builder) async {
+ final widgetsBinding = WidgetsFlutterBinding.ensureInitialized();
+ FlutterNativeSplash.preserve(widgetsBinding: widgetsBinding);
+
+ Bloc.observer = AppBlocObserver();
+
+ debugPrint('Flavor: ${Flavor.get()}');
+
+ await GetItInitializer.init();
+
+ runApp(await builder());
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/core/constants/emulator.dart b/apps/wyatt_app_template/wyatt_app_template/lib/core/constants/emulator.dart
new file mode 100644
index 0000000..00258ff
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/core/constants/emulator.dart
@@ -0,0 +1,18 @@
+/// Firebase Emulator constants.
+///
+/// If you don't use Firebase, it can be safely deleted.
+abstract class Emulator {
+ static const String firebaseCloudFunctionEnvKey =
+ 'EMULATOR_FIREBASE_CLOUD_FUNCTION_PORT';
+ static const String firebaseFirestoreEnvKey =
+ 'EMULATOR_FIREBASE_FIRESTORE_PORT';
+ static const String firebaseAuthEnvKey = 'EMULATOR_FIREBASE_AUTH_PORT';
+ static const String firebaseStorageEnvKey = 'EMULATOR_FIREBASE_STORAGE_PORT';
+ static const String hostEnvKey = 'EMULATOR_HOST';
+
+ static const int defaultFirebaseCloudFunctionPort = 5001;
+ static const int defaultFirebaseFirestorePort = 8080;
+ static const int defaultFirebaseAuthPort = 9099;
+ static const int defaultFirebaseStoragePort = 9199;
+ static const defaultHost = 'localhost';
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/core/dependency_injection/get_it.dart b/apps/wyatt_app_template/wyatt_app_template/lib/core/dependency_injection/get_it.dart
new file mode 100644
index 0000000..5a5b94d
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/core/dependency_injection/get_it.dart
@@ -0,0 +1,35 @@
+import 'dart:async';
+
+import 'package:get_it/get_it.dart';
+import 'package:wyatt_app_template/core/enums/dev_mode.dart';
+import 'package:wyatt_app_template/core/flavors/flavor.dart';
+
+final getIt = GetIt.I;
+
+/// Service and Data Source locator
+abstract class GetItInitializer {
+ static FutureOr _initCommon() async {
+ // Initialize common sources/services
+ }
+
+ static FutureOr _initMocks() async {
+ // Initialize mocked sources/services
+ }
+
+ static FutureOr _initReal() async {
+ // Initialize real sources/services
+ }
+
+ static FutureOr init() async {
+ await _initCommon();
+ final flavor = Flavor.get();
+
+ if (flavor.devMode == DevMode.mock) {
+ await _initMocks();
+ } else {
+ await _initReal();
+ }
+
+ await getIt.allReady();
+ }
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/core/enums/dev_mode.dart b/apps/wyatt_app_template/wyatt_app_template/lib/core/enums/dev_mode.dart
new file mode 100644
index 0000000..ab67a28
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/core/enums/dev_mode.dart
@@ -0,0 +1,19 @@
+enum DevMode {
+ mock,
+ emulator,
+ real;
+
+ @override
+ String toString() => name;
+
+ /// Tries to parse String and returns mode. Fallback is returned if there
+ /// is an error during parsing.
+ static DevMode fromString(String? mode, {DevMode fallback = DevMode.mock}) {
+ for (final m in values) {
+ if (m.name == mode) {
+ return m;
+ }
+ }
+ return fallback;
+ }
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/core/extensions/build_context_extension.dart b/apps/wyatt_app_template/wyatt_app_template/lib/core/extensions/build_context_extension.dart
new file mode 100644
index 0000000..ca168ee
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/core/extensions/build_context_extension.dart
@@ -0,0 +1,6 @@
+import 'package:flutter/widgets.dart';
+import 'package:wyatt_app_template/gen/app_localizations.dart';
+
+extension BuildContextExtension on BuildContext {
+ AppLocalizations get l10n => AppLocalizations.of(this);
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/core/flavors/flavor.dart b/apps/wyatt_app_template/wyatt_app_template/lib/core/flavors/flavor.dart
new file mode 100644
index 0000000..8c8657f
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/core/flavors/flavor.dart
@@ -0,0 +1,52 @@
+import 'package:wyatt_app_template/core/enums/dev_mode.dart';
+
+abstract class Flavor {
+ Flavor._({
+ this.banner,
+ this.devMode,
+ }) {
+ _instance = this;
+ }
+
+ static Flavor? _instance;
+
+ final String? banner;
+ final DevMode? devMode;
+
+ /// Returns [Flavor] instance.
+ static Flavor get() {
+ if (_instance == null) {
+ throw Exception('Flavor not initialized!');
+ }
+ return _instance!;
+ }
+
+ @override
+ String toString() => runtimeType.toString().replaceAll('Flavor', '');
+}
+
+class DevelopmentFlavor extends Flavor {
+ factory DevelopmentFlavor() {
+ const modeString = String.fromEnvironment('dev_mode', defaultValue: 'mock');
+ final mode = DevMode.fromString(modeString);
+
+ return DevelopmentFlavor._(devMode: mode);
+ }
+ DevelopmentFlavor._({
+ required DevMode devMode,
+ }) : super._(
+ banner: 'Mock',
+ devMode: devMode,
+ );
+}
+
+class StagingFlavor extends Flavor {
+ StagingFlavor()
+ : super._(
+ banner: 'Staging',
+ );
+}
+
+class ProductionFlavor extends Flavor {
+ ProductionFlavor() : super._();
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/core/routes/router.dart b/apps/wyatt_app_template/wyatt_app_template/lib/core/routes/router.dart
new file mode 100644
index 0000000..79d65b2
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/core/routes/router.dart
@@ -0,0 +1,42 @@
+import 'package:flutter/cupertino.dart';
+import 'package:go_router/go_router.dart';
+
+abstract class AppRouter {
+ /// Default transition for all pages
+ static Page defaultTransition(
+ BuildContext context,
+ GoRouterState state,
+ Widget child,
+ ) =>
+ CupertinoPage(
+ key: state.pageKey,
+ child: child,
+ );
+
+ /// Disable transition animation
+ static Page noTransition(
+ BuildContext context,
+ GoRouterState state,
+ Widget child,
+ ) =>
+ CustomTransitionPage(
+ key: state.pageKey,
+ transitionsBuilder: (_, __, ___, child) => child,
+ child: child,
+ );
+
+ /// Defines public routes (no authentication needed).
+ ///
+ /// Example:
+ /// ```dart
+ /// static final publicRoutes = [
+ /// '/',
+ /// '/sign_in',
+ /// '/sign_up',
+ /// ];
+ /// ```
+ static final List publicRoutes = [];
+
+ /// Defines GoRoute routes.
+ static final List routes = [];
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/core/utils/app_bloc_observer.dart b/apps/wyatt_app_template/wyatt_app_template/lib/core/utils/app_bloc_observer.dart
new file mode 100644
index 0000000..cb417f8
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/core/utils/app_bloc_observer.dart
@@ -0,0 +1,67 @@
+import 'package:flutter/foundation.dart';
+import 'package:flutter_bloc/flutter_bloc.dart';
+
+const _messageLength = 120;
+
+class AppBlocObserver extends BlocObserver {
+ AppBlocObserver({
+ this.printEvent = true,
+ this.printError = true,
+ this.printTransition = false,
+ this.printChange = true,
+ this.fullPrint = false,
+ });
+
+ final bool printEvent;
+ final bool printError;
+ final bool printChange;
+ final bool printTransition;
+ final bool fullPrint;
+
+ String sanitize(Object? object) {
+ final message = object.toString();
+ return fullPrint
+ ? message
+ : message.substring(
+ 0,
+ message.length < _messageLength ? message.length : _messageLength,
+ );
+ }
+
+ @override
+ void onEvent(Bloc bloc, Object? event) {
+ super.onEvent(bloc, event);
+ if (printEvent) {
+ debugPrint('onEvent(${bloc.runtimeType}, ${sanitize(event)})');
+ }
+ }
+
+ @override
+ void onError(BlocBase bloc, Object error, StackTrace stackTrace) {
+ if (printError) {
+ debugPrint(
+ 'onError(${bloc.runtimeType}, ${sanitize(error)})\n$stackTrace',
+ );
+ }
+ super.onError(bloc, error, stackTrace);
+ }
+
+ @override
+ void onChange(BlocBase bloc, Change change) {
+ super.onChange(bloc, change);
+ if (printChange) {
+ debugPrint('onChange(${bloc.runtimeType}, ${sanitize(change)})');
+ }
+ }
+
+ @override
+ void onTransition(
+ Bloc bloc,
+ Transition transition,
+ ) {
+ super.onTransition(bloc, transition);
+ if (printTransition) {
+ debugPrint('onTransition(${bloc.runtimeType}, ${sanitize(transition)})');
+ }
+ }
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/gen/app_localizations.dart b/apps/wyatt_app_template/wyatt_app_template/lib/gen/app_localizations.dart
new file mode 100644
index 0000000..f9e3bc6
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/gen/app_localizations.dart
@@ -0,0 +1,142 @@
+/// Wyatt App, localized files. Automatically generated with `task gen:intl`.
+import 'dart:async';
+
+import 'package:flutter/widgets.dart';
+import 'package:flutter_localizations/flutter_localizations.dart';
+import 'package:intl/intl.dart' as intl;
+
+import 'app_localizations_fr.dart' deferred as app_localizations_fr;
+
+/// Callers can lookup localized strings with an instance of AppLocalizations
+/// returned by `AppLocalizations.of(context)`.
+///
+/// Applications need to include `AppLocalizations.delegate()` in their app's
+/// `localizationDelegates` list, and the locales they support in the app's
+/// `supportedLocales` list. For example:
+///
+/// ```dart
+/// import 'gen/app_localizations.dart';
+///
+/// return MaterialApp(
+/// localizationsDelegates: AppLocalizations.localizationsDelegates,
+/// supportedLocales: AppLocalizations.supportedLocales,
+/// home: MyApplicationHome(),
+/// );
+/// ```
+///
+/// ## Update pubspec.yaml
+///
+/// Please make sure to update your pubspec.yaml to include the following
+/// packages:
+///
+/// ```yaml
+/// dependencies:
+/// # Internationalization support.
+/// flutter_localizations:
+/// sdk: flutter
+/// intl: any # Use the pinned version from flutter_localizations
+///
+/// # Rest of dependencies
+/// ```
+///
+/// ## iOS Applications
+///
+/// iOS applications define key application metadata, including supported
+/// locales, in an Info.plist file that is built into the application bundle.
+/// To configure the locales supported by your app, you’ll need to edit this
+/// file.
+///
+/// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
+/// Then, in the Project Navigator, open the Info.plist file under the Runner
+/// project’s Runner folder.
+///
+/// Next, select the Information Property List item, select Add Item from the
+/// Editor menu, then select Localizations from the pop-up menu.
+///
+/// Select and expand the newly-created Localizations item then, for each
+/// locale your application supports, add a new item and select the locale
+/// you wish to add from the pop-up menu in the Value field. This list should
+/// be consistent with the languages listed in the AppLocalizations.supportedLocales
+/// property.
+abstract class AppLocalizations {
+ AppLocalizations(String locale) : localeName = intl.Intl.canonicalizedLocale(locale.toString());
+
+ final String localeName;
+
+ static AppLocalizations of(BuildContext context) {
+ return Localizations.of(context, AppLocalizations)!;
+ }
+
+ static const LocalizationsDelegate delegate = _AppLocalizationsDelegate();
+
+ /// A list of this localizations delegate along with the default localizations
+ /// delegates.
+ ///
+ /// Returns a list of localizations delegates containing this delegate along with
+ /// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
+ /// and GlobalWidgetsLocalizations.delegate.
+ ///
+ /// Additional delegates can be added by appending to this list in
+ /// MaterialApp. This list does not have to be used at all if a custom list
+ /// of delegates is preferred or required.
+ static const List> localizationsDelegates = >[
+ delegate,
+ GlobalMaterialLocalizations.delegate,
+ GlobalCupertinoLocalizations.delegate,
+ GlobalWidgetsLocalizations.delegate,
+ ];
+
+ /// A list of this localizations delegate's supported locales.
+ static const List supportedLocales = [
+ Locale('fr')
+ ];
+
+ /// Texte affiché dans l'AppBar de la page Compteur
+ ///
+ /// In fr, this message translates to:
+ /// **'Compteur'**
+ String get counterAppBarTitle;
+
+ /// Message affiché sur la page compteur
+ ///
+ /// In fr, this message translates to:
+ /// **'Vous avez appuyé {count} fois sur le bouton !'**
+ String youHavePushed(int count);
+
+ /// Texte affiché dans le bouton ammenant vers la page Compteur
+ ///
+ /// In fr, this message translates to:
+ /// **'Aller au Compteur'**
+ String get goToCounter;
+}
+
+class _AppLocalizationsDelegate extends LocalizationsDelegate {
+ const _AppLocalizationsDelegate();
+
+ @override
+ Future load(Locale locale) {
+ return lookupAppLocalizations(locale);
+ }
+
+ @override
+ bool isSupported(Locale locale) => ['fr'].contains(locale.languageCode);
+
+ @override
+ bool shouldReload(_AppLocalizationsDelegate old) => false;
+}
+
+Future lookupAppLocalizations(Locale locale) {
+
+
+ // Lookup logic when only language code is specified.
+ switch (locale.languageCode) {
+ case 'fr': return app_localizations_fr.loadLibrary().then((dynamic _) => app_localizations_fr.AppLocalizationsFr());
+ }
+
+ throw FlutterError(
+ 'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
+ 'an issue with the localizations generation tool. Please file an issue '
+ 'on GitHub with a reproducible sample app and the gen-l10n configuration '
+ 'that was used.'
+ );
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/gen/app_localizations_fr.dart b/apps/wyatt_app_template/wyatt_app_template/lib/gen/app_localizations_fr.dart
new file mode 100644
index 0000000..1029aee
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/gen/app_localizations_fr.dart
@@ -0,0 +1,19 @@
+/// Wyatt App, localized files. Automatically generated with `task gen:intl`.
+
+import 'app_localizations.dart';
+
+/// The translations for French (`fr`).
+class AppLocalizationsFr extends AppLocalizations {
+ AppLocalizationsFr([String locale = 'fr']) : super(locale);
+
+ @override
+ String get counterAppBarTitle => 'Compteur';
+
+ @override
+ String youHavePushed(int count) {
+ return 'Vous avez appuyé $count fois sur le bouton !';
+ }
+
+ @override
+ String get goToCounter => 'Aller au Compteur';
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/main.dart b/apps/wyatt_app_template/wyatt_app_template/lib/main.dart
new file mode 100644
index 0000000..e016029
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/main.dart
@@ -0,0 +1,115 @@
+import 'package:flutter/material.dart';
+
+void main() {
+ runApp(const MyApp());
+}
+
+class MyApp extends StatelessWidget {
+ const MyApp({super.key});
+
+ // This widget is the root of your application.
+ @override
+ Widget build(BuildContext context) {
+ return MaterialApp(
+ title: 'Flutter Demo',
+ theme: ThemeData(
+ // This is the theme of your application.
+ //
+ // Try running your application with "flutter run". You'll see the
+ // application has a blue toolbar. Then, without quitting the app, try
+ // changing the primarySwatch below to Colors.green and then invoke
+ // "hot reload" (press "r" in the console where you ran "flutter run",
+ // or simply save your changes to "hot reload" in a Flutter IDE).
+ // Notice that the counter didn't reset back to zero; the application
+ // is not restarted.
+ primarySwatch: Colors.blue,
+ ),
+ home: const MyHomePage(title: 'Flutter Demo Home Page'),
+ );
+ }
+}
+
+class MyHomePage extends StatefulWidget {
+ const MyHomePage({super.key, required this.title});
+
+ // This widget is the home page of your application. It is stateful, meaning
+ // that it has a State object (defined below) that contains fields that affect
+ // how it looks.
+
+ // This class is the configuration for the state. It holds the values (in this
+ // case the title) provided by the parent (in this case the App widget) and
+ // used by the build method of the State. Fields in a Widget subclass are
+ // always marked "final".
+
+ final String title;
+
+ @override
+ State createState() => _MyHomePageState();
+}
+
+class _MyHomePageState extends State {
+ int _counter = 0;
+
+ void _incrementCounter() {
+ setState(() {
+ // This call to setState tells the Flutter framework that something has
+ // changed in this State, which causes it to rerun the build method below
+ // so that the display can reflect the updated values. If we changed
+ // _counter without calling setState(), then the build method would not be
+ // called again, and so nothing would appear to happen.
+ _counter++;
+ });
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ // This method is rerun every time setState is called, for instance as done
+ // by the _incrementCounter method above.
+ //
+ // The Flutter framework has been optimized to make rerunning build methods
+ // fast, so that you can just rebuild anything that needs updating rather
+ // than having to individually change instances of widgets.
+ return Scaffold(
+ appBar: AppBar(
+ // Here we take the value from the MyHomePage object that was created by
+ // the App.build method, and use it to set our appbar title.
+ title: Text(widget.title),
+ ),
+ body: Center(
+ // Center is a layout widget. It takes a single child and positions it
+ // in the middle of the parent.
+ child: Column(
+ // Column is also a layout widget. It takes a list of children and
+ // arranges them vertically. By default, it sizes itself to fit its
+ // children horizontally, and tries to be as tall as its parent.
+ //
+ // Invoke "debug painting" (press "p" in the console, choose the
+ // "Toggle Debug Paint" action from the Flutter Inspector in Android
+ // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
+ // to see the wireframe for each widget.
+ //
+ // Column has various properties to control how it sizes itself and
+ // how it positions its children. Here we use mainAxisAlignment to
+ // center the children vertically; the main axis here is the vertical
+ // axis because Columns are vertical (the cross axis would be
+ // horizontal).
+ mainAxisAlignment: MainAxisAlignment.center,
+ children: [
+ const Text(
+ 'You have pushed the button this many times:',
+ ),
+ Text(
+ '$_counter',
+ style: Theme.of(context).textTheme.headline4,
+ ),
+ ],
+ ),
+ ),
+ floatingActionButton: FloatingActionButton(
+ onPressed: _incrementCounter,
+ tooltip: 'Increment',
+ child: const Icon(Icons.add),
+ ), // This trailing comma makes auto-formatting nicer for build methods.
+ );
+ }
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/main_development.dart b/apps/wyatt_app_template/wyatt_app_template/lib/main_development.dart
new file mode 100644
index 0000000..158d435
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/main_development.dart
@@ -0,0 +1,11 @@
+import 'package:flutter/material.dart';
+import 'package:wyatt_app_template/bootstrap.dart';
+import 'package:wyatt_app_template/core/flavors/flavor.dart';
+
+void main(List args) {
+ // Define environment
+ DevelopmentFlavor();
+
+ // Initialize environment and variables
+ bootstrap(() async => Container());
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/main_production.dart b/apps/wyatt_app_template/wyatt_app_template/lib/main_production.dart
new file mode 100644
index 0000000..69fdf89
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/main_production.dart
@@ -0,0 +1,11 @@
+import 'package:flutter/material.dart';
+import 'package:wyatt_app_template/bootstrap.dart';
+import 'package:wyatt_app_template/core/flavors/flavor.dart';
+
+void main(List args) {
+ // Define environment
+ ProductionFlavor();
+
+ // Initialize environment and variables
+ bootstrap(() async => Container());
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/lib/main_staging.dart b/apps/wyatt_app_template/wyatt_app_template/lib/main_staging.dart
new file mode 100644
index 0000000..5d63b09
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/lib/main_staging.dart
@@ -0,0 +1,11 @@
+import 'package:flutter/material.dart';
+import 'package:wyatt_app_template/bootstrap.dart';
+import 'package:wyatt_app_template/core/flavors/flavor.dart';
+
+void main(List args) {
+ // Define environment
+ StagingFlavor();
+
+ // Initialize environment and variables
+ bootstrap(() async => Container());
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/local_packages/README.md b/apps/wyatt_app_template/wyatt_app_template/local_packages/README.md
new file mode 100644
index 0000000..1051ebd
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/local_packages/README.md
@@ -0,0 +1,2 @@
+Here you can find local package development copies.
+Clone the package you want to customize here, then add it in `pubspec_overrides.yaml`.
\ No newline at end of file
diff --git a/apps/wyatt_app_template/wyatt_app_template/pubspec.yaml b/apps/wyatt_app_template/wyatt_app_template/pubspec.yaml
new file mode 100644
index 0000000..5b3e8f3
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/pubspec.yaml
@@ -0,0 +1,89 @@
+name: wyatt_app_template
+description: wyatt_description
+
+publish_to: "none"
+
+version: 1.0.0+1
+
+environment:
+ sdk: ">=2.18.0 <3.0.0"
+ flutter: ">=3.0.0"
+
+dependencies:
+ flutter: { sdk: flutter }
+ flutter_localizations: { sdk: flutter }
+ intl: ^0.17.0
+ go_router: ^6.0.1
+ equatable: ^2.0.5
+ freezed_annotation: ^2.2.0
+ json_annotation: ^4.8.0
+ cupertino_icons: ^1.0.5
+ get_it: ^7.2.0
+ flutter_dotenv: ^5.0.2
+ gap: ^2.0.1
+ flutter_bloc: ^8.1.1
+ url_launcher: ^6.1.7
+ uuid: ^3.0.7
+ flutter_native_splash: ^2.2.15
+ wyatt_architecture:
+ hosted:
+ url: https://git.wyatt-studio.fr/api/packages/Wyatt-FOSS/pub/
+ name: wyatt_architecture
+ version: 0.1.0+1
+ wyatt_bloc_helper:
+ hosted:
+ url: https://git.wyatt-studio.fr/api/packages/Wyatt-FOSS/pub/
+ name: wyatt_bloc_helper
+ version: 2.0.0
+ wyatt_type_utils:
+ hosted:
+ url: https://git.wyatt-studio.fr/api/packages/Wyatt-FOSS/pub/
+ name: wyatt_type_utils
+ version: 0.0.4
+
+dev_dependencies:
+ flutter_test: { sdk: flutter }
+ dependency_validator: ^3.2.2
+ build_runner: ^2.3.3
+ flutter_gen_runner: ^5.1.0+1
+ freezed: ^2.3.2
+ json_serializable: ^6.6.0
+ flutter_launcher_icons: ^0.11.0
+ dart_code_metrics: ^5.4.0
+ wyatt_analysis:
+ hosted:
+ url: https://git.wyatt-studio.fr/api/packages/Wyatt-FOSS/pub/
+ name: wyatt_analysis
+ version: 2.3.0
+
+flutter:
+ uses-material-design: true
+ generate: true
+ assets:
+ - .env
+ - assets/images/
+
+flutter_gen:
+ output: lib/gen/
+ integrations:
+ flutter_svg: true
+ flare_flutter: true
+ rive: true
+ lottie: true
+ colors:
+ inputs:
+ - assets/colors.xml
+
+flutter_icons:
+ android: "launcher_icon"
+ ios: true
+ image_path: "assets/images/wyatt_logo.jpeg"
+ adaptive_icon_background: "#FFFFFF"
+
+flutter_native_splash:
+ image: "assets/images/wyatt_logo.jpeg"
+ color: "#FFFFFF"
+ android: true
+ ios: true
+ android_gravity: fill
+ ios_content_mode: scaleAspectFit
diff --git a/apps/wyatt_app_template/wyatt_app_template/pubspec_overrides.yaml b/apps/wyatt_app_template/wyatt_app_template/pubspec_overrides.yaml
new file mode 100644
index 0000000..c3425c6
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/pubspec_overrides.yaml
@@ -0,0 +1,2 @@
+# For local package development/modification.
+dependency_overrides:
\ No newline at end of file
diff --git a/apps/wyatt_app_template/wyatt_app_template/test/widget_test.dart b/apps/wyatt_app_template/wyatt_app_template/test/widget_test.dart
new file mode 100644
index 0000000..3d97111
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/test/widget_test.dart
@@ -0,0 +1,30 @@
+// This is a basic Flutter widget test.
+//
+// To perform an interaction with a widget in your test, use the WidgetTester
+// utility in the flutter_test package. For example, you can send tap and scroll
+// gestures. You can also use WidgetTester to find child widgets in the widget
+// tree, read text, and verify that the values of widget properties are correct.
+
+import 'package:flutter/material.dart';
+import 'package:flutter_test/flutter_test.dart';
+
+import 'package:wyatt_app_template/main.dart';
+
+void main() {
+ testWidgets('Counter increments smoke test', (tester) async {
+ // Build our app and trigger a frame.
+ await tester.pumpWidget(const MyApp());
+
+ // Verify that our counter starts at 0.
+ expect(find.text('0'), findsOneWidget);
+ expect(find.text('1'), findsNothing);
+
+ // Tap the '+' icon and trigger a frame.
+ await tester.tap(find.byIcon(Icons.add));
+ await tester.pump();
+
+ // Verify that our counter has incremented.
+ expect(find.text('0'), findsNothing);
+ expect(find.text('1'), findsOneWidget);
+ });
+}
diff --git a/apps/wyatt_app_template/wyatt_app_template/trapeze.yaml b/apps/wyatt_app_template/wyatt_app_template/trapeze.yaml
new file mode 100644
index 0000000..537f09f
--- /dev/null
+++ b/apps/wyatt_app_template/wyatt_app_template/trapeze.yaml
@@ -0,0 +1,33 @@
+vars:
+ BUNDLE_ID:
+ default: io.wyattapp.new
+ PACKAGE_NAME:
+ default: io.wyattapp.new
+ APP_NAME:
+ default: Wyatt App
+
+platforms:
+ android:
+ appName: $APP_NAME
+ packageName: $PACKAGE_NAME
+ manifest:
+ - file: AndroidManifest.xml
+ target: manifest/application
+ inject:
+
+ ios:
+ targets:
+ Runner:
+ bundleId: $BUNDLE_ID
+ productName: $APP_NAME
+ displayName: $APP_NAME
+ entitlements:
+ replace: true
+ entries:
+ - aps-environment: development
+ plist:
+ - replace: true
+ entries:
+ - UISupportedInterfaceOrientations:
+ - UIInterfaceOrientationPortrait
+