diff --git a/apps/wyatt_app_template/brickgen.yaml b/apps/wyatt_app_template/brickgen.yaml
index 2df1455..00b0e3a 100644
--- a/apps/wyatt_app_template/brickgen.yaml
+++ b/apps/wyatt_app_template/brickgen.yaml
@@ -26,6 +26,8 @@ vars:
description: The display name
default: Display Name
prompt: "What is the display name?"
+ formats:
+ - title_case
project_name:
compilable: starting_template
@@ -33,6 +35,8 @@ vars:
description: The project name
default: starting_template
prompt: "What is the project name?"
+ formats:
+ - snake_case
bundle_id:
compilable: io.wyattapp.start
@@ -40,19 +44,24 @@ vars:
description: The bundle id used in Android and iOS
default: io.wyattapp.start
prompt: "What is the bundle id?"
+ formats:
+ - dot_case
description:
- compilable: wyatt_description
+ compilable: A short project description
type: string
description: A short project description
default: An app by Wyatt Studio.
prompt: "What is the project description?"
+ formats:
+ - sentence_case
brickgen:
path_to_brickify: starting_template
hooks: true
ignore:
- .env
+ - package-lock.json
- .dart_tool/
- .idea/
- build/
diff --git a/apps/wyatt_app_template/starting_template/README.md b/apps/wyatt_app_template/starting_template/README.md
index 7193ad0..971d825 100644
--- a/apps/wyatt_app_template/starting_template/README.md
+++ b/apps/wyatt_app_template/starting_template/README.md
@@ -1,6 +1,6 @@
# Display Name
-wyatt_description
+A short project description
## Requirements
diff --git a/apps/wyatt_app_template/starting_template/pubspec.yaml b/apps/wyatt_app_template/starting_template/pubspec.yaml
index 619c4a8..eca5ba2 100644
--- a/apps/wyatt_app_template/starting_template/pubspec.yaml
+++ b/apps/wyatt_app_template/starting_template/pubspec.yaml
@@ -1,5 +1,5 @@
name: starting_template
-description: wyatt_description
+description: A short project description
publish_to: "none"
diff --git a/apps/wyatt_app_template/starting_template/web/index.html b/apps/wyatt_app_template/starting_template/web/index.html
index 1b5feef..bf34233 100644
--- a/apps/wyatt_app_template/starting_template/web/index.html
+++ b/apps/wyatt_app_template/starting_template/web/index.html
@@ -18,7 +18,7 @@
-
+
diff --git a/apps/wyatt_app_template/starting_template/web/manifest.json b/apps/wyatt_app_template/starting_template/web/manifest.json
index 85c6dde..f86027e 100644
--- a/apps/wyatt_app_template/starting_template/web/manifest.json
+++ b/apps/wyatt_app_template/starting_template/web/manifest.json
@@ -5,7 +5,7 @@
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
- "description": "wyatt_description",
+ "description": "A short project description",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [
diff --git a/bricks/wyatt_app_template/__brick__/.env.example b/bricks/wyatt_app_template/__brick__/.env.example
new file mode 100644
index 0000000..e69de29
diff --git a/bricks/wyatt_app_template/__brick__/.gitignore b/bricks/wyatt_app_template/__brick__/.gitignore
new file mode 100644
index 0000000..9e1210f
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/.gitignore
@@ -0,0 +1,54 @@
+# 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
+node_modules/
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/.metadata b/bricks/wyatt_app_template/__brick__/.metadata
new file mode 100644
index 0000000..32d8944
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/.metadata
@@ -0,0 +1,30 @@
+# 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: web
+ 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/bricks/wyatt_app_template/__brick__/.vscode/launch.json b/bricks/wyatt_app_template/__brick__/.vscode/launch.json
new file mode 100644
index 0000000..3e84edd
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/.vscode/launch.json
@@ -0,0 +1,77 @@
+{
+ // 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/debug:mocks",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/main_development.dart",
+ "args": [
+ "--dart-define=dev_mode=mock",
+ "--target",
+ "lib/main_development.dart"
+ ],
+ "flutterMode": "debug"
+ },
+ {
+ "name": "Launch development/debug:emulator",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/main_development.dart",
+ "args": [
+ "--dart-define=dev_mode=emulator",
+ "--target",
+ "lib/main_development.dart"
+ ],
+ "flutterMode": "debug"
+ },
+ {
+ "name": "Launch development/debug:real",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/main_development.dart",
+ "args": [
+ "--dart-define=dev_mode=real",
+ "--target",
+ "lib/main_development.dart"
+ ],
+ "flutterMode": "debug"
+ },
+ {
+ "name": "Launch staging/debug",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/main_staging.dart",
+ "args": [
+ "--target",
+ "lib/main_staging.dart"
+ ],
+ "flutterMode": "debug"
+ },
+ {
+ "name": "Launch production/debug",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/main_production.dart",
+ "args": [
+ "--target",
+ "lib/main_production.dart"
+ ],
+ "flutterMode": "debug"
+ },
+ {
+ "name": "Launch production/release",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/main_production.dart",
+ "args": [
+ "--target",
+ "lib/main_production.dart"
+ ],
+ "flutterMode": "release"
+ },
+ ]
+}
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/.vscode/settings.json b/bricks/wyatt_app_template/__brick__/.vscode/settings.json
new file mode 100644
index 0000000..ee6d931
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/.vscode/settings.json
@@ -0,0 +1,15 @@
+{
+ "bloc.newCubitTemplate.type": "equatable",
+ "psi-header.config": {
+ "blankLinesAfter": 0,
+ "forceToTop": true,
+ },
+ "psi-header.templates": [
+ {
+ "language": "*",
+ "template": [
+ "{{#titleCase}}{{display_name}}{{/titleCase}} Copyright (c) <>"
+ ]
+ }
+ ],
+}
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/README.md b/bricks/wyatt_app_template/__brick__/README.md
new file mode 100644
index 0000000..7bdb1d6
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/README.md
@@ -0,0 +1,59 @@
+# {{#titleCase}}{{display_name}}{{/titleCase}}
+
+{{#sentenceCase}}{{description}}{{/sentenceCase}}
+
+## Requirements
+
+* Flutter
+* Taskfile
+* Trapeze (with `npm install` thanks to `package.json`)
+
+### Configuration
+
+Create `.env` file with
+
+```sh
+cp .env.example .env
+```
+
+### Taskfile
+
+Available tasks:
+
+| Command | Description | Aliases |
+|----|-----|-----|
+| `clean` | Cleans the environment.| `cl` |
+| `format` |Formats the code.| `fmt` |
+| `help` |Help dialog.| `h, default` |
+| `lint` |Lints the code.| `l` |
+| `start-emulators` | Start needed emulators.| `emu` |
+| `build:android` | Building Android APK| `build:a` |
+| `build:ios` | Building iOS IPA| `build:i` |
+| `gen:build` | Running build runner| `gen:b` |
+| `gen:build-delete` |Running build runner with deletion of conflicting outputs| `gen:d` |
+| `gen:clean` | Cleaning build runner| `gen:c` |
+| `gen:intl` |Generating internationalization file| `gen:i` |
+| `gen:trapeze` | Running Trapeze config| `gen:t` |
+| `gen:watch` | Running build runner in watch mode| `gen:w` |
+| `pub:get` | Getting latest dependencies| `pub:g` |
+| `pub:outdated` |Checking for outdated dependencies| `pub:o` |
+| `pub:upgrade` | Upgrading dependencies| `pub:u` |
+| `pub:upgrade-major` | Upgrading dependencies| `pub:um` |
+| `pub:validate` |Running dependency validator| `pub:v` |
+| `run:dev` | Run app in development environment| `run:d` |
+| `run:emu` | Run app in development with emulated environment| `run:e` |
+| `run:logs` |Show log output for running Flutter apps| `run:l` |
+| `run:mock` |Run app in development environment with mocks| `run:m` |
+| `run:prod` |Run app in production environment| `run:p` |
+| `run:release` | Run app in production environment and in release mode| `run:r` |
+| `run:staging` | Run app in staging environment| `run:s` |
+
+### Flavors
+
+| Flavor | Details |
+|-------|--------|
+| Development | Use `--dart-define="dev_mode="` to choose between `mock` , `emulator` and `real` |
+| Staging | With a green banner. Only `real` mode available (remote data sources) |
+| Production | Only `real` mode available (remote data sources) |
+
+> In `lib/core/flavors/flavor.dart` you can customize flavors.
diff --git a/bricks/wyatt_app_template/__brick__/Taskfile.yml b/bricks/wyatt_app_template/__brick__/Taskfile.yml
new file mode 100644
index 0000000..43888b9
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/analysis_options.yaml b/bricks/wyatt_app_template/__brick__/analysis_options.yaml
new file mode 100644
index 0000000..6b75b4c
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/analysis_options.yaml
@@ -0,0 +1,27 @@
+include: package:wyatt_analysis/analysis_options.flutter.yaml
+
+analyzer:
+ plugins:
+ - dart_code_metrics
+
+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/bricks/wyatt_app_template/__brick__/android/.gitignore b/bricks/wyatt_app_template/__brick__/android/.gitignore
new file mode 100644
index 0000000..6f56801
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/android/app/build.gradle b/bricks/wyatt_app_template/__brick__/android/app/build.gradle
new file mode 100644
index 0000000..61ce318
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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 "{{#dotCase}}{{bundle_id}}{{/dotCase}}"
+ // 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/bricks/wyatt_app_template/__brick__/android/app/src/debug/AndroidManifest.xml b/bricks/wyatt_app_template/__brick__/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..7791af8
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/AndroidManifest.xml b/bricks/wyatt_app_template/__brick__/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..46a06f9
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/kotlin/io/wyattapp/start/MainActivity.kt b/bricks/wyatt_app_template/__brick__/android/app/src/main/kotlin/io/wyattapp/start/MainActivity.kt
new file mode 100644
index 0000000..e1ea0f7
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/app/src/main/kotlin/io/wyattapp/start/MainActivity.kt
@@ -0,0 +1,6 @@
+package {{#dotCase}}{{bundle_id}}{{/dotCase}}
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity: FlutterActivity() {
+}
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/drawable-v21/launch_background.xml b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000..f74085f
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/drawable/launch_background.xml b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..304732f
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..db77bb4
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..17987b7
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..09d4391
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..d5f1c8d
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..4d6372e
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/values-night/styles.xml b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000..06952be
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/main/res/values/styles.xml b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..cb1ef88
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/android/app/src/profile/AndroidManifest.xml b/bricks/wyatt_app_template/__brick__/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..7791af8
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/android/build.gradle b/bricks/wyatt_app_template/__brick__/android/build.gradle
new file mode 100644
index 0000000..83ae220
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/android/gradle.properties b/bricks/wyatt_app_template/__brick__/android/gradle.properties
new file mode 100644
index 0000000..94adc3a
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/android/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Xmx1536M
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/bricks/wyatt_app_template/__brick__/android/gradle/wrapper/gradle-wrapper.properties b/bricks/wyatt_app_template/__brick__/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..cb24abd
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/android/settings.gradle b/bricks/wyatt_app_template/__brick__/android/settings.gradle
new file mode 100644
index 0000000..44e62bc
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/assets/colors.xml b/bricks/wyatt_app_template/__brick__/assets/colors.xml
new file mode 100644
index 0000000..503e1f0
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/assets/colors.xml
@@ -0,0 +1,5 @@
+
+
+ #FFFFFF
+ #000000
+
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/assets/fonts/.gitkeep b/bricks/wyatt_app_template/__brick__/assets/fonts/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/bricks/wyatt_app_template/__brick__/assets/images/wyatt_logo.jpeg b/bricks/wyatt_app_template/__brick__/assets/images/wyatt_logo.jpeg
new file mode 100644
index 0000000..09e8249
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/assets/images/wyatt_logo.jpeg differ
diff --git a/bricks/wyatt_app_template/__brick__/assets/l10n/intl_fr.arb b/bricks/wyatt_app_template/__brick__/assets/l10n/intl_fr.arb
new file mode 100644
index 0000000..b95f76d
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/automation/build.yml b/bricks/wyatt_app_template/__brick__/automation/build.yml
new file mode 100644
index 0000000..7dbc051
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/automation/generator.yml b/bricks/wyatt_app_template/__brick__/automation/generator.yml
new file mode 100644
index 0000000..33cd1ea
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running Trapeze config...{{.COLOROFF}}"
+ - npx trapeze run trapeze.yaml --android-project android --ios-project ios
diff --git a/bricks/wyatt_app_template/__brick__/automation/pub.yml b/bricks/wyatt_app_template/__brick__/automation/pub.yml
new file mode 100644
index 0000000..fe49212
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/automation/pub.yml
@@ -0,0 +1,47 @@
+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
+
+ validate:
+ desc: Running dependency validator
+ deps: [get]
+ aliases: [v]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Validating dependencies...{{.COLOROFF}}"
+ - flutter pub run dependency_validator
diff --git a/bricks/wyatt_app_template/__brick__/automation/run.yml b/bricks/wyatt_app_template/__brick__/automation/run.yml
new file mode 100644
index 0000000..3b1eb77
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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 environment with mocks
+ aliases: [m]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (development/debug:mocks)...{{.COLOROFF}}"
+ - flutter run --target lib/main_development.dart --dart-define="dev_mode=mock"
+
+ emu:
+ desc: Run app in development with emulated environment
+ aliases: [e]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (development/debug:emulator)...{{.COLOROFF}}"
+ - flutter run --target lib/main_development.dart --dart-define="dev_mode=emulator"
+
+ dev:
+ desc: Run app in development environment
+ aliases: [d]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (development/debug:real)...{{.COLOROFF}}"
+ - flutter run --target lib/main_development.dart --dart-define="dev_mode=real"
+
+ staging:
+ desc: Run app in staging environment
+ aliases: [s]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (staging/debug)...{{.COLOROFF}}"
+ - flutter run --target lib/main_staging.dart
+
+ prod:
+ desc: Run app in production environment
+ aliases: [p]
+ cmds:
+ - echo -e "{{.GREEN}}{{.PREFIX}} Running the app (production/debug)...{{.COLOROFF}}"
+ - flutter run --target lib/main_production.dart
+
+ release:
+ desc: Run app in production environment 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/bricks/wyatt_app_template/__brick__/ios/.gitignore b/bricks/wyatt_app_template/__brick__/ios/.gitignore
new file mode 100644
index 0000000..7a7f987
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Flutter/AppFrameworkInfo.plist b/bricks/wyatt_app_template/__brick__/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 0000000..9625e10
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Flutter/Debug.xcconfig b/bricks/wyatt_app_template/__brick__/ios/Flutter/Debug.xcconfig
new file mode 100644
index 0000000..ec97fc6
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Flutter/Release.xcconfig b/bricks/wyatt_app_template/__brick__/ios/Flutter/Release.xcconfig
new file mode 100644
index 0000000..c4855bf
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Podfile b/bricks/wyatt_app_template/__brick__/ios/Podfile
new file mode 100644
index 0000000..88359b2
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Podfile.lock b/bricks/wyatt_app_template/__brick__/ios/Podfile.lock
new file mode 100644
index 0000000..cf0efe4
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Podfile.lock
@@ -0,0 +1,28 @@
+PODS:
+ - Flutter (1.0.0)
+ - flutter_native_splash (0.0.1):
+ - Flutter
+ - url_launcher_ios (0.0.1):
+ - Flutter
+
+DEPENDENCIES:
+ - Flutter (from `Flutter`)
+ - flutter_native_splash (from `.symlinks/plugins/flutter_native_splash/ios`)
+ - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
+
+EXTERNAL SOURCES:
+ Flutter:
+ :path: Flutter
+ flutter_native_splash:
+ :path: ".symlinks/plugins/flutter_native_splash/ios"
+ url_launcher_ios:
+ :path: ".symlinks/plugins/url_launcher_ios/ios"
+
+SPEC CHECKSUMS:
+ Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
+ flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef
+ url_launcher_ios: ae1517e5e344f5544fb090b079e11f399dfbe4d2
+
+PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3
+
+COCOAPODS: 1.11.3
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.pbxproj b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..059fb6b
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,556 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ 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 */; };
+ 50F1D9CF301DADBFF7F91098 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F58D6DFA5E148E9B1E5401F /* Pods_Runner.framework */; };
+ 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 */
+ 01240B090F6ECE02483CB484 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
+ 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 = ""; };
+ 18B4FB2B44E101F10AB8D41B /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
+ 1F58D6DFA5E148E9B1E5401F /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 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 = ""; };
+ EA780011634A6BC46817CBE0 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 50F1D9CF301DADBFF7F91098 /* Pods_Runner.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 10872F84FB14C7DD915284C6 /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ 18B4FB2B44E101F10AB8D41B /* Pods-Runner.debug.xcconfig */,
+ 01240B090F6ECE02483CB484 /* Pods-Runner.release.xcconfig */,
+ EA780011634A6BC46817CBE0 /* Pods-Runner.profile.xcconfig */,
+ );
+ name = Pods;
+ path = Pods;
+ sourceTree = "";
+ };
+ 4204558B17A62367423769E8 /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ 1F58D6DFA5E148E9B1E5401F /* Pods_Runner.framework */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ 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 */,
+ 10872F84FB14C7DD915284C6 /* Pods */,
+ 4204558B17A62367423769E8 /* Frameworks */,
+ );
+ 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 = (
+ B0C681F6443208846EBFB7D2 /* [CP] Check Pods Manifest.lock */,
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ CF936C6216E6F00FB5F73F4C /* [CP] Embed Pods Frameworks */,
+ );
+ 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;
+ alwaysOutOfDate = 1;
+ 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;
+ alwaysOutOfDate = 1;
+ 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";
+ };
+ B0C681F6443208846EBFB7D2 /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
+ CF936C6216E6F00FB5F73F4C /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+/* 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 = {{#dotCase}}{{bundle_id}}{{/dotCase}};
+ PRODUCT_NAME = "{{#titleCase}}{{display_name}}{{/titleCase}}";
+ 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 = {{#dotCase}}{{bundle_id}}{{/dotCase}};
+ PRODUCT_NAME = "{{#titleCase}}{{display_name}}{{/titleCase}}";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
+ };
+ 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 = {{#dotCase}}{{bundle_id}}{{/dotCase}};
+ PRODUCT_NAME = "{{#titleCase}}{{display_name}}{{/titleCase}}";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
+ };
+ 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/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/configuration/.gitkeep b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/configuration/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000..c87d15a
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/contents.xcworkspacedata b/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..21a3cc1
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/xcshareddata/swiftpm/configuration/.gitkeep b/bricks/wyatt_app_template/__brick__/ios/Runner.xcworkspace/xcshareddata/swiftpm/configuration/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/AppDelegate.swift b/bricks/wyatt_app_template/__brick__/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000..70693e4
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..d36b1fa
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 0000000..dc9ada4
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 0000000..28c6bf0
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 0000000..2ccbfd9
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 0000000..f091b6b
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 0000000..4cde121
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 0000000..d0ef06e
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 0000000..dcdc230
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 0000000..2ccbfd9
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 0000000..c8f9ed8
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 0000000..a6d6b86
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 0000000..a6d6b86
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 0000000..75b2d16
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 0000000..c4df70d
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 0000000..6a84f41
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000..0bedcf2
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/bricks/wyatt_app_template/__brick__/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 0000000..89c2725
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/ios/Runner/Base.lproj/LaunchScreen.storyboard b/bricks/wyatt_app_template/__brick__/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..f2e259c
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Base.lproj/Main.storyboard b/bricks/wyatt_app_template/__brick__/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 0000000..f3c2851
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Info.plist b/bricks/wyatt_app_template/__brick__/ios/Runner/Info.plist
new file mode 100644
index 0000000..c8fdef9
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner/Info.plist
@@ -0,0 +1,51 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ {{#titleCase}}{{display_name}}{{/titleCase}}
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ {{#titleCase}}{{display_name}}{{/titleCase}}
+ 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
+
+
+
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Runner-Bridging-Header.h b/bricks/wyatt_app_template/__brick__/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 0000000..308a2a5
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/bricks/wyatt_app_template/__brick__/ios/Runner/Runner.entitlements b/bricks/wyatt_app_template/__brick__/ios/Runner/Runner.entitlements
new file mode 100644
index 0000000..74c85d2
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/ios/Runner/Runner.entitlements
@@ -0,0 +1,8 @@
+
+
+
+
+ aps-environment
+ development
+
+
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/l10n.yaml b/bricks/wyatt_app_template/__brick__/l10n.yaml
new file mode 100644
index 0000000..1518d35
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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: "/// {{#titleCase}}{{display_name}}{{/titleCase}}, localized files. Automatically generated with `task gen:intl`."
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/lib/bootstrap.dart b/bricks/wyatt_app_template/__brick__/lib/bootstrap.dart
new file mode 100644
index 0000000..7f454b7
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/bootstrap.dart
@@ -0,0 +1,20 @@
+import 'dart:async';
+
+import 'package:flutter/material.dart';
+import 'package:flutter_bloc/flutter_bloc.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/dependency_injection/get_it.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/flavors/flavor.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/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/bricks/wyatt_app_template/__brick__/lib/core/constants/emulator.dart b/bricks/wyatt_app_template/__brick__/lib/core/constants/emulator.dart
new file mode 100644
index 0000000..00258ff
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/lib/core/dependency_injection/get_it.dart b/bricks/wyatt_app_template/__brick__/lib/core/dependency_injection/get_it.dart
new file mode 100644
index 0000000..3ed791e
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/core/dependency_injection/get_it.dart
@@ -0,0 +1,40 @@
+import 'dart:async';
+
+import 'package:get_it/get_it.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/enums/dev_mode.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/flavors/flavor.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/data/data_sources/local/counter_data_source_impl.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/data_sources/local/counter_data_source.dart';
+
+final getIt = GetIt.I;
+
+/// Service and Data Source locator
+abstract class GetItInitializer {
+ static FutureOr _initCommon() async {
+ // Initialize common sources/services
+ getIt.registerLazySingleton(
+ CounterDataSourceImpl.new,
+ );
+ }
+
+ 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/bricks/wyatt_app_template/__brick__/lib/core/enums/dev_mode.dart b/bricks/wyatt_app_template/__brick__/lib/core/enums/dev_mode.dart
new file mode 100644
index 0000000..bd4ad84
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/core/enums/dev_mode.dart
@@ -0,0 +1,20 @@
+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/bricks/wyatt_app_template/__brick__/lib/core/extensions/build_context_extension.dart b/bricks/wyatt_app_template/__brick__/lib/core/extensions/build_context_extension.dart
new file mode 100644
index 0000000..34c7346
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/core/extensions/build_context_extension.dart
@@ -0,0 +1,6 @@
+import 'package:flutter/widgets.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/gen/app_localizations.dart';
+
+extension BuildContextExtension on BuildContext {
+ AppLocalizations get l10n => AppLocalizations.of(this);
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/core/flavors/flavor.dart b/bricks/wyatt_app_template/__brick__/lib/core/flavors/flavor.dart
new file mode 100644
index 0000000..60f1f8c
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/core/flavors/flavor.dart
@@ -0,0 +1,57 @@
+import 'package:flutter/material.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/enums/dev_mode.dart';
+
+abstract class Flavor {
+ Flavor._({
+ this.banner,
+ this.bannerColor = Colors.red,
+ this.devMode,
+ }) {
+ _instance = this;
+ }
+
+ static Flavor? _instance;
+
+ final String? banner;
+ final Color bannerColor;
+ 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: 'Dev',
+ devMode: devMode,
+ );
+}
+
+class StagingFlavor extends Flavor {
+ StagingFlavor()
+ : super._(
+ banner: 'Staging',
+ bannerColor: Colors.green,
+ );
+}
+
+class ProductionFlavor extends Flavor {
+ ProductionFlavor() : super._();
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/core/routes/router.dart b/bricks/wyatt_app_template/__brick__/lib/core/routes/router.dart
new file mode 100644
index 0000000..49679ce
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/core/routes/router.dart
@@ -0,0 +1,65 @@
+import 'package:flutter/cupertino.dart';
+import 'package:go_router/go_router.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/presentation/features/counter/counter.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/presentation/features/home/home.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 = [
+ GoRoute(
+ path: '/',
+ name: Home.pageName,
+ pageBuilder: (context, state) =>
+ defaultTransition(context, state, const Home()),
+ ),
+ GoRoute(
+ path: '/counter',
+ name: Counter.pageName,
+ pageBuilder: (context, state) =>
+ defaultTransition(context, state, const Counter()),
+ ),
+ ];
+
+ /// Router
+ static GoRouter router = GoRouter(
+ initialLocation: '/',
+ routes: AppRouter.routes,
+ debugLogDiagnostics: true,
+ redirect: (context, state) => null,
+ );
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/core/utils/app_bloc_observer.dart b/bricks/wyatt_app_template/__brick__/lib/core/utils/app_bloc_observer.dart
new file mode 100644
index 0000000..92be592
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/core/utils/app_bloc_observer.dart
@@ -0,0 +1,74 @@
+import 'package:flutter/foundation.dart';
+import 'package:flutter_bloc/flutter_bloc.dart';
+
+const _messageLength = 100;
+
+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}\n'
+ '> event: ${sanitize(event)}');
+ }
+ }
+
+ @override
+ void onError(BlocBase bloc, Object error, StackTrace stackTrace) {
+ if (printError) {
+ debugPrint('onError: ${bloc.runtimeType}\n'
+ '> error: ${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}\n'
+ '> currentState: ${sanitize(change.currentState)}\n'
+ '> nextState: ${sanitize(change.nextState)}');
+ }
+ }
+
+ @override
+ void onTransition(
+ Bloc bloc,
+ Transition transition,
+ ) {
+ super.onTransition(bloc, transition);
+ if (printTransition) {
+ debugPrint('onTransition: ${bloc.runtimeType}\n'
+ '> currentState: ${sanitize(transition.currentState)}\n'
+ '> event: ${sanitize(transition.event)}\n'
+ '> nextState: ${sanitize(transition.nextState)}');
+ }
+ }
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/data/data_sources/local/counter_data_source_impl.dart b/bricks/wyatt_app_template/__brick__/lib/data/data_sources/local/counter_data_source_impl.dart
new file mode 100644
index 0000000..16c5b54
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/data/data_sources/local/counter_data_source_impl.dart
@@ -0,0 +1,59 @@
+import 'dart:convert';
+
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/data/models/integer_model.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/data_sources/local/counter_data_source.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+
+class CounterDataSourceImpl extends CounterDataSource {
+ // Simulate external data processing
+ String actual = '{"value": 0}';
+
+ @override
+ Future decrement(Integer value) async {
+ final current =
+ IntegerModel.fromJson(json.decode(actual) as Map);
+
+ final newValue = current.value - value.value;
+ if (newValue < 0) {
+ throw ClientException("Counter can't be negative!");
+ }
+
+ final newInteger = IntegerModel(value: newValue);
+ actual = jsonEncode(newInteger.toJson());
+
+ return newInteger;
+ }
+
+ @override
+ Future increment(Integer value) async {
+ final current =
+ IntegerModel.fromJson(json.decode(actual) as Map);
+
+ final newValue = current.value + value.value;
+ if (newValue < 0) {
+ throw ClientException("Counter can't be negative!");
+ }
+
+ final newInteger = IntegerModel(value: newValue);
+ actual = jsonEncode(newInteger.toJson());
+
+ return newInteger;
+ }
+
+ @override
+ Future getCurrent() async {
+ final current =
+ IntegerModel.fromJson(json.decode(actual) as Map);
+
+ return current;
+ }
+
+ @override
+ Future reset() async {
+ const newInteger = IntegerModel(value: 0);
+ actual = jsonEncode(newInteger.toJson());
+
+ return newInteger;
+ }
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/data/data_sources/remote/.gitkeep b/bricks/wyatt_app_template/__brick__/lib/data/data_sources/remote/.gitkeep
new file mode 100644
index 0000000..f94cb6f
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/data/data_sources/remote/.gitkeep
@@ -0,0 +1 @@
+# just to keep empty folder in brick generation
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.dart b/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.dart
new file mode 100644
index 0000000..292c1c9
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.dart
@@ -0,0 +1,15 @@
+import 'package:freezed_annotation/freezed_annotation.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+
+part 'integer_model.freezed.dart';
+part 'integer_model.g.dart';
+
+@freezed
+class IntegerModel extends Integer with _$IntegerModel {
+ const factory IntegerModel({
+ required int value,
+ }) = _IntegerModel;
+
+ factory IntegerModel.fromJson(Map json) =>
+ _$IntegerModelFromJson(json);
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.freezed.dart b/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.freezed.dart
new file mode 100644
index 0000000..bed9972
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.freezed.dart
@@ -0,0 +1,151 @@
+// coverage:ignore-file
+// GENERATED CODE - DO NOT MODIFY BY HAND
+// ignore_for_file: type=lint
+// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
+
+part of 'integer_model.dart';
+
+// **************************************************************************
+// FreezedGenerator
+// **************************************************************************
+
+T _$identity(T value) => value;
+
+final _privateConstructorUsedError = UnsupportedError(
+ 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
+
+IntegerModel _$IntegerModelFromJson(Map json) {
+ return _IntegerModel.fromJson(json);
+}
+
+/// @nodoc
+mixin _$IntegerModel {
+ int get value => throw _privateConstructorUsedError;
+
+ Map toJson() => throw _privateConstructorUsedError;
+ @JsonKey(ignore: true)
+ $IntegerModelCopyWith get copyWith =>
+ throw _privateConstructorUsedError;
+}
+
+/// @nodoc
+abstract class $IntegerModelCopyWith<$Res> {
+ factory $IntegerModelCopyWith(
+ IntegerModel value, $Res Function(IntegerModel) then) =
+ _$IntegerModelCopyWithImpl<$Res, IntegerModel>;
+ @useResult
+ $Res call({int value});
+}
+
+/// @nodoc
+class _$IntegerModelCopyWithImpl<$Res, $Val extends IntegerModel>
+ implements $IntegerModelCopyWith<$Res> {
+ _$IntegerModelCopyWithImpl(this._value, this._then);
+
+ // ignore: unused_field
+ final $Val _value;
+ // ignore: unused_field
+ final $Res Function($Val) _then;
+
+ @pragma('vm:prefer-inline')
+ @override
+ $Res call({
+ Object? value = null,
+ }) {
+ return _then(_value.copyWith(
+ value: null == value
+ ? _value.value
+ : value // ignore: cast_nullable_to_non_nullable
+ as int,
+ ) as $Val);
+ }
+}
+
+/// @nodoc
+abstract class _$$_IntegerModelCopyWith<$Res>
+ implements $IntegerModelCopyWith<$Res> {
+ factory _$$_IntegerModelCopyWith(
+ _$_IntegerModel value, $Res Function(_$_IntegerModel) then) =
+ __$$_IntegerModelCopyWithImpl<$Res>;
+ @override
+ @useResult
+ $Res call({int value});
+}
+
+/// @nodoc
+class __$$_IntegerModelCopyWithImpl<$Res>
+ extends _$IntegerModelCopyWithImpl<$Res, _$_IntegerModel>
+ implements _$$_IntegerModelCopyWith<$Res> {
+ __$$_IntegerModelCopyWithImpl(
+ _$_IntegerModel _value, $Res Function(_$_IntegerModel) _then)
+ : super(_value, _then);
+
+ @pragma('vm:prefer-inline')
+ @override
+ $Res call({
+ Object? value = null,
+ }) {
+ return _then(_$_IntegerModel(
+ value: null == value
+ ? _value.value
+ : value // ignore: cast_nullable_to_non_nullable
+ as int,
+ ));
+ }
+}
+
+/// @nodoc
+@JsonSerializable()
+class _$_IntegerModel implements _IntegerModel {
+ const _$_IntegerModel({required this.value});
+
+ factory _$_IntegerModel.fromJson(Map json) =>
+ _$$_IntegerModelFromJson(json);
+
+ @override
+ final int value;
+
+ @override
+ String toString() {
+ return 'IntegerModel(value: $value)';
+ }
+
+ @override
+ bool operator ==(dynamic other) {
+ return identical(this, other) ||
+ (other.runtimeType == runtimeType &&
+ other is _$_IntegerModel &&
+ (identical(other.value, value) || other.value == value));
+ }
+
+ @JsonKey(ignore: true)
+ @override
+ int get hashCode => Object.hash(runtimeType, value);
+
+ @JsonKey(ignore: true)
+ @override
+ @pragma('vm:prefer-inline')
+ _$$_IntegerModelCopyWith<_$_IntegerModel> get copyWith =>
+ __$$_IntegerModelCopyWithImpl<_$_IntegerModel>(this, _$identity);
+
+ @override
+ Map toJson() {
+ return _$$_IntegerModelToJson(
+ this,
+ );
+ }
+}
+
+abstract class _IntegerModel implements IntegerModel {
+ const factory _IntegerModel({required final int value}) = _$_IntegerModel;
+
+ factory _IntegerModel.fromJson(Map json) =
+ _$_IntegerModel.fromJson;
+
+ @override
+ int get value;
+ @override
+ @JsonKey(ignore: true)
+ _$$_IntegerModelCopyWith<_$_IntegerModel> get copyWith =>
+ throw _privateConstructorUsedError;
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.g.dart b/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.g.dart
new file mode 100644
index 0000000..291e5cf
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/data/models/integer_model.g.dart
@@ -0,0 +1,17 @@
+// GENERATED CODE - DO NOT MODIFY BY HAND
+
+part of 'integer_model.dart';
+
+// **************************************************************************
+// JsonSerializableGenerator
+// **************************************************************************
+
+_$_IntegerModel _$$_IntegerModelFromJson(Map json) =>
+ _$_IntegerModel(
+ value: json['value'] as int,
+ );
+
+Map _$$_IntegerModelToJson(_$_IntegerModel instance) =>
+ {
+ 'value': instance.value,
+ };
diff --git a/bricks/wyatt_app_template/__brick__/lib/data/repositories/counter_repository_impl.dart b/bricks/wyatt_app_template/__brick__/lib/data/repositories/counter_repository_impl.dart
new file mode 100644
index 0000000..1249785
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/data/repositories/counter_repository_impl.dart
@@ -0,0 +1,41 @@
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/data_sources/local/counter_data_source.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/repositories/counter_repository.dart';
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+import 'package:wyatt_type_utils/wyatt_type_utils.dart';
+
+class CounterRepositoryImpl extends CounterRepository {
+ CounterRepositoryImpl({
+ required CounterDataSource counterDataSource,
+ }) : _counterDataSource = counterDataSource;
+
+ final CounterDataSource _counterDataSource;
+
+ @override
+ FutureOrResult decrement({Integer by = const Integer(1)}) =>
+ Result.tryCatchAsync(
+ () async => _counterDataSource.decrement(by),
+ (error) => error,
+ );
+
+ @override
+ FutureOrResult increment({Integer by = const Integer(1)}) =>
+ Result.tryCatchAsync(
+ () async => _counterDataSource.increment(by),
+ (error) => error,
+ );
+
+ @override
+ FutureOrResult getCurrent() =>
+ Result.tryCatchAsync(
+ () async => _counterDataSource.getCurrent(),
+ (error) => error,
+ );
+
+ @override
+ FutureOrResult reset() =>
+ Result.tryCatchAsync(
+ () async => _counterDataSource.reset(),
+ (error) => error,
+ );
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/domain/data_sources/local/counter_data_source.dart b/bricks/wyatt_app_template/__brick__/lib/domain/data_sources/local/counter_data_source.dart
new file mode 100644
index 0000000..cfbaa26
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/domain/data_sources/local/counter_data_source.dart
@@ -0,0 +1,9 @@
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+
+abstract class CounterDataSource extends BaseDataSource {
+ Future decrement(Integer value);
+ Future increment(Integer value);
+ Future getCurrent();
+ Future reset();
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/domain/data_sources/remote/.gitkeep b/bricks/wyatt_app_template/__brick__/lib/domain/data_sources/remote/.gitkeep
new file mode 100644
index 0000000..f94cb6f
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/domain/data_sources/remote/.gitkeep
@@ -0,0 +1 @@
+# just to keep empty folder in brick generation
\ No newline at end of file
diff --git a/bricks/wyatt_app_template/__brick__/lib/domain/entities/integer.dart b/bricks/wyatt_app_template/__brick__/lib/domain/entities/integer.dart
new file mode 100644
index 0000000..aea24f1
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/domain/entities/integer.dart
@@ -0,0 +1,11 @@
+// ignore_for_file: public_member_api_docs, sort_constructors_first
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+
+class Integer extends Entity {
+ const Integer(this.value);
+
+ final int value;
+
+ @override
+ String toString() => 'Integer(value: $value)';
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/domain/repositories/counter_repository.dart b/bricks/wyatt_app_template/__brick__/lib/domain/repositories/counter_repository.dart
new file mode 100644
index 0000000..5a0590b
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/domain/repositories/counter_repository.dart
@@ -0,0 +1,9 @@
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+
+abstract class CounterRepository extends BaseRepository {
+ FutureOrResult decrement({Integer by = const Integer(1)});
+ FutureOrResult increment({Integer by = const Integer(1)});
+ FutureOrResult getCurrent();
+ FutureOrResult reset();
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/decrement.dart b/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/decrement.dart
new file mode 100644
index 0000000..af614aa
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/decrement.dart
@@ -0,0 +1,18 @@
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/repositories/counter_repository.dart';
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+
+class Decrement extends AsyncUseCase {
+ Decrement({
+ required CounterRepository counterRepository,
+ }) : _counterRepository = counterRepository;
+
+ final CounterRepository _counterRepository;
+
+ @override
+ FutureOrResult execute(int? params) async {
+ final step = Integer(params ?? 1);
+
+ return _counterRepository.decrement(by: step);
+ }
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/get_current.dart b/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/get_current.dart
new file mode 100644
index 0000000..95ea3f5
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/get_current.dart
@@ -0,0 +1,31 @@
+// Copyright (C) 2023 WYATT GROUP
+// Please see the AUTHORS file for details.
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/repositories/counter_repository.dart';
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+
+class GetCurrent extends AsyncUseCase {
+ GetCurrent({
+ required CounterRepository counterRepository,
+ }) : _counterRepository = counterRepository;
+
+ final CounterRepository _counterRepository;
+
+ @override
+ FutureOrResult execute(void params) async =>
+ _counterRepository.getCurrent();
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/increment.dart b/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/increment.dart
new file mode 100644
index 0000000..b18434b
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/increment.dart
@@ -0,0 +1,18 @@
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/repositories/counter_repository.dart';
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+
+class Increment extends AsyncUseCase {
+ Increment({
+ required CounterRepository counterRepository,
+ }) : _counterRepository = counterRepository;
+
+ final CounterRepository _counterRepository;
+
+ @override
+ FutureOrResult execute(int? params) async {
+ final step = Integer(params ?? 1);
+
+ return _counterRepository.increment(by: step);
+ }
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/reset.dart b/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/reset.dart
new file mode 100644
index 0000000..0839bbe
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/domain/usecases/counter/reset.dart
@@ -0,0 +1,31 @@
+// Copyright (C) 2023 WYATT GROUP
+// Please see the AUTHORS file for details.
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/entities/integer.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/repositories/counter_repository.dart';
+import 'package:wyatt_architecture/wyatt_architecture.dart';
+
+class Reset extends AsyncUseCase {
+ Reset({
+ required CounterRepository counterRepository,
+ }) : _counterRepository = counterRepository;
+
+ final CounterRepository _counterRepository;
+
+ @override
+ FutureOrResult execute(void params) async =>
+ _counterRepository.reset();
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/gen/app_localizations.dart b/bricks/wyatt_app_template/__brick__/lib/gen/app_localizations.dart
new file mode 100644
index 0000000..a3d0b47
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/gen/app_localizations.dart
@@ -0,0 +1,142 @@
+/// {{#titleCase}}{{display_name}}{{/titleCase}}, 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/bricks/wyatt_app_template/__brick__/lib/gen/app_localizations_fr.dart b/bricks/wyatt_app_template/__brick__/lib/gen/app_localizations_fr.dart
new file mode 100644
index 0000000..b1bb5cd
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/gen/app_localizations_fr.dart
@@ -0,0 +1,19 @@
+/// {{#titleCase}}{{display_name}}{{/titleCase}}, 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/bricks/wyatt_app_template/__brick__/lib/gen/assets.gen.dart b/bricks/wyatt_app_template/__brick__/lib/gen/assets.gen.dart
new file mode 100644
index 0000000..3deea52
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/gen/assets.gen.dart
@@ -0,0 +1,92 @@
+/// GENERATED CODE - DO NOT MODIFY BY HAND
+/// *****************************************************
+/// FlutterGen
+/// *****************************************************
+
+// coverage:ignore-file
+// ignore_for_file: type=lint
+// ignore_for_file: directives_ordering,unnecessary_import,implicit_dynamic_list_literal
+
+import 'package:flutter/widgets.dart';
+
+class $AssetsImagesGen {
+ const $AssetsImagesGen();
+
+ /// File path: assets/images/wyatt_logo.jpeg
+ AssetGenImage get wyattLogo =>
+ const AssetGenImage('assets/images/wyatt_logo.jpeg');
+
+ /// List of all assets
+ List get values => [wyattLogo];
+}
+
+class Assets {
+ Assets._();
+
+ static const $AssetsImagesGen images = $AssetsImagesGen();
+}
+
+class AssetGenImage {
+ const AssetGenImage(this._assetName);
+
+ final String _assetName;
+
+ Image image({
+ Key? key,
+ AssetBundle? bundle,
+ ImageFrameBuilder? frameBuilder,
+ ImageErrorWidgetBuilder? errorBuilder,
+ String? semanticLabel,
+ bool excludeFromSemantics = false,
+ double? scale,
+ double? width,
+ double? height,
+ Color? color,
+ Animation? opacity,
+ BlendMode? colorBlendMode,
+ BoxFit? fit,
+ AlignmentGeometry alignment = Alignment.center,
+ ImageRepeat repeat = ImageRepeat.noRepeat,
+ Rect? centerSlice,
+ bool matchTextDirection = false,
+ bool gaplessPlayback = false,
+ bool isAntiAlias = false,
+ String? package,
+ FilterQuality filterQuality = FilterQuality.low,
+ int? cacheWidth,
+ int? cacheHeight,
+ }) {
+ return Image.asset(
+ _assetName,
+ key: key,
+ bundle: bundle,
+ frameBuilder: frameBuilder,
+ errorBuilder: errorBuilder,
+ semanticLabel: semanticLabel,
+ excludeFromSemantics: excludeFromSemantics,
+ scale: scale,
+ width: width,
+ height: height,
+ color: color,
+ opacity: opacity,
+ colorBlendMode: colorBlendMode,
+ fit: fit,
+ alignment: alignment,
+ repeat: repeat,
+ centerSlice: centerSlice,
+ matchTextDirection: matchTextDirection,
+ gaplessPlayback: gaplessPlayback,
+ isAntiAlias: isAntiAlias,
+ package: package,
+ filterQuality: filterQuality,
+ cacheWidth: cacheWidth,
+ cacheHeight: cacheHeight,
+ );
+ }
+
+ ImageProvider provider() => AssetImage(_assetName);
+
+ String get path => _assetName;
+
+ String get keyName => _assetName;
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/gen/colors.gen.dart b/bricks/wyatt_app_template/__brick__/lib/gen/colors.gen.dart
new file mode 100644
index 0000000..7140be2
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/gen/colors.gen.dart
@@ -0,0 +1,21 @@
+/// GENERATED CODE - DO NOT MODIFY BY HAND
+/// *****************************************************
+/// FlutterGen
+/// *****************************************************
+
+// coverage:ignore-file
+// ignore_for_file: type=lint
+// ignore_for_file: directives_ordering,unnecessary_import,implicit_dynamic_list_literal
+
+import 'package:flutter/painting.dart';
+import 'package:flutter/material.dart';
+
+class ColorName {
+ ColorName._();
+
+ /// Color: #000000
+ static const Color black = Color(0xFF000000);
+
+ /// Color: #FFFFFF
+ static const Color white = Color(0xFFFFFFFF);
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/main.dart b/bricks/wyatt_app_template/__brick__/lib/main.dart
new file mode 100644
index 0000000..e016029
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/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/bricks/wyatt_app_template/__brick__/lib/main_development.dart b/bricks/wyatt_app_template/__brick__/lib/main_development.dart
new file mode 100644
index 0000000..d327e4d
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/main_development.dart
@@ -0,0 +1,11 @@
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/bootstrap.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/flavors/flavor.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/presentation/features/app/app.dart';
+
+void main(List args) {
+ // Define environment
+ DevelopmentFlavor();
+
+ // Initialize environment and variables
+ bootstrap(App.new);
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/main_production.dart b/bricks/wyatt_app_template/__brick__/lib/main_production.dart
new file mode 100644
index 0000000..f5f0bb4
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/main_production.dart
@@ -0,0 +1,11 @@
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/bootstrap.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/flavors/flavor.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/presentation/features/app/app.dart';
+
+void main(List args) {
+ // Define environment
+ ProductionFlavor();
+
+ // Initialize environment and variables
+ bootstrap(App.new);
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/main_staging.dart b/bricks/wyatt_app_template/__brick__/lib/main_staging.dart
new file mode 100644
index 0000000..d2d8017
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/main_staging.dart
@@ -0,0 +1,11 @@
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/bootstrap.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/flavors/flavor.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/presentation/features/app/app.dart';
+
+void main(List args) {
+ // Define environment
+ StagingFlavor();
+
+ // Initialize environment and variables
+ bootstrap(App.new);
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/presentation/features/app/app.dart b/bricks/wyatt_app_template/__brick__/lib/presentation/features/app/app.dart
new file mode 100644
index 0000000..510bf9c
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/presentation/features/app/app.dart
@@ -0,0 +1,63 @@
+import 'package:flutter/foundation.dart';
+import 'package:flutter/material.dart';
+import 'package:flutter_bloc/flutter_bloc.dart';
+import 'package:flutter_localizations/flutter_localizations.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/dependency_injection/get_it.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/flavors/flavor.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/core/routes/router.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/data/repositories/counter_repository_impl.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/domain/repositories/counter_repository.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/gen/app_localizations.dart';
+import 'package:{{#snakeCase}}{{project_name}}{{/snakeCase}}/presentation/features/counter/blocs/counter_bloc/counter_bloc.dart';
+import 'package:wyatt_bloc_helper/wyatt_bloc_helper.dart';
+
+class App extends StatelessWidget {
+ const App({super.key});
+
+ Widget _flavorBanner(Widget child) {
+ final flavor = Flavor.get();
+ if (flavor.banner != null && !kReleaseMode) {
+ return Directionality(
+ textDirection: TextDirection.ltr,
+ child: Banner(
+ location: BannerLocation.topEnd,
+ message: flavor.banner!,
+ color: flavor.bannerColor,
+ child: child,
+ ),
+ );
+ }
+
+ return child;
+ }
+
+ @override
+ Widget build(BuildContext context) => MultiProvider(
+ repositoryProviders: [
+ RepositoryProvider(
+ create: (_) => CounterRepositoryImpl(counterDataSource: getIt()),
+ ),
+ ],
+ blocProviders: [
+ BlocProvider(
+ create: (_) => CounterBloc(),
+ ),
+ ],
+ child: _flavorBanner(
+ MaterialApp.router(
+ title: '{{#titleCase}}{{display_name}}{{/titleCase}}',
+ debugShowCheckedModeBanner: false,
+ routerDelegate: AppRouter.router.routerDelegate,
+ routeInformationParser: AppRouter.router.routeInformationParser,
+ routeInformationProvider: AppRouter.router.routeInformationProvider,
+ localizationsDelegates: const [
+ AppLocalizations.delegate,
+ GlobalMaterialLocalizations.delegate,
+ GlobalWidgetsLocalizations.delegate,
+ GlobalCupertinoLocalizations.delegate,
+ ],
+ supportedLocales: AppLocalizations.supportedLocales,
+ ),
+ ),
+ );
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/presentation/features/counter/blocs/counter_bloc/counter_bloc.dart b/bricks/wyatt_app_template/__brick__/lib/presentation/features/counter/blocs/counter_bloc/counter_bloc.dart
new file mode 100644
index 0000000..cd0683d
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/presentation/features/counter/blocs/counter_bloc/counter_bloc.dart
@@ -0,0 +1,27 @@
+import 'dart:async';
+
+import 'package:equatable/equatable.dart';
+import 'package:flutter_bloc/flutter_bloc.dart';
+
+part 'counter_event.dart';
+part 'counter_state.dart';
+
+/// {@template counter_bloc}
+/// CounterBloc description
+/// {@endtemplate}
+class CounterBloc extends Bloc {
+ /// {@macro counter_bloc}
+ CounterBloc() : super(const CounterInitial()) {
+ on(_onCustomCounterEvent);
+ }
+
+ FutureOr _onCustomCounterEvent(
+ CustomCounterEvent event,
+ Emitter emit,
+ ) async {
+ // TODO(wyatt): Add custom UI logic
+ const _ = 1 + 1;
+
+ return;
+ }
+}
diff --git a/bricks/wyatt_app_template/__brick__/lib/presentation/features/counter/blocs/counter_bloc/counter_event.dart b/bricks/wyatt_app_template/__brick__/lib/presentation/features/counter/blocs/counter_bloc/counter_event.dart
new file mode 100644
index 0000000..49c34d2
--- /dev/null
+++ b/bricks/wyatt_app_template/__brick__/lib/presentation/features/counter/blocs/counter_bloc/counter_event.dart
@@ -0,0 +1,20 @@
+part of 'counter_bloc.dart';
+
+/// {@template counter_event}
+/// CounterEvent description
+/// {@endtemplate}
+abstract class CounterEvent extends Equatable {
+ /// {@macro counter_event}
+ const CounterEvent();
+}
+
+/// {@template custom_counter_event}
+/// Event added when some custom logic happens
+/// {@endtemplate}
+class CustomCounterEvent extends CounterEvent {
+ /// {@macro custom_counter_event}
+ const CustomCounterEvent();
+
+ @override
+ List