diff --git a/examples/ani_watch/.gitignore b/examples/ani_watch/.gitignore
new file mode 100644
index 00000000..79c113f9
--- /dev/null
+++ b/examples/ani_watch/.gitignore
@@ -0,0 +1,45 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.build/
+.buildlog/
+.history
+.svn/
+.swiftpm/
+migrate_working_dir/
+
+# IntelliJ related
+*.iml
+*.ipr
+*.iws
+.idea/
+
+# The .vscode folder contains launch configuration and tasks you configure in
+# VS Code which you may wish to be included in version control, so this line
+# is commented out by default.
+#.vscode/
+
+# Flutter/Dart/Pub related
+**/doc/api/
+**/ios/Flutter/.last_build_id
+.dart_tool/
+.flutter-plugins
+.flutter-plugins-dependencies
+.pub-cache/
+.pub/
+/build/
+
+# Symbolication related
+app.*.symbols
+
+# Obfuscation related
+app.*.map.json
+
+# Android Studio will place build artifacts here
+/android/app/debug
+/android/app/profile
+/android/app/release
diff --git a/examples/ani_watch/.metadata b/examples/ani_watch/.metadata
new file mode 100644
index 00000000..d3362461
--- /dev/null
+++ b/examples/ani_watch/.metadata
@@ -0,0 +1,45 @@
+# 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 and should not be manually edited.
+
+version:
+ revision: "3bd718ee44049e25d33327ee9886ec30c97ffa33"
+ channel: "beta"
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ base_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ - platform: android
+ create_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ base_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ - platform: ios
+ create_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ base_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ - platform: linux
+ create_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ base_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ - platform: macos
+ create_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ base_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ - platform: web
+ create_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ base_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ - platform: windows
+ create_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+ base_revision: 3bd718ee44049e25d33327ee9886ec30c97ffa33
+
+ # 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/examples/ani_watch/README.md b/examples/ani_watch/README.md
new file mode 100644
index 00000000..f02cd837
--- /dev/null
+++ b/examples/ani_watch/README.md
@@ -0,0 +1,17 @@
+# AniWatch 📺
+
+AniWatch is a sample Flutter application built to demonstrate the capabilities of the **Stac** Server-Driven UI (SDUI) framework. The app allows users to browse through a catalog of Anime shows, view their airing schedules, and access detailed information about each series.
+
+## Features
+
+* Browse a list/grid of Anime shows.
+* View detailed information for each Anime, including synopsis, genres, ratings, etc. (content driven by Stac).
+* Check airing schedules for ongoing and upcoming Anime.
+* Dynamic UI rendering powered by the Stac SDUI framework.
+
+## Purpose
+
+This project primarily serves as an example of how to:
+
+* Integrate the Stac SDUI framework into a Flutter application.
+* Manage navigation and data flow in an SDUI architecture.
\ No newline at end of file
diff --git a/examples/ani_watch/analysis_options.yaml b/examples/ani_watch/analysis_options.yaml
new file mode 100644
index 00000000..0d290213
--- /dev/null
+++ b/examples/ani_watch/analysis_options.yaml
@@ -0,0 +1,28 @@
+# This file configures the analyzer, which statically analyzes Dart code to
+# check for errors, warnings, and lints.
+#
+# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
+# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
+# invoked from the command line by running `flutter analyze`.
+
+# The following line activates a set of recommended lints for Flutter apps,
+# packages, and plugins designed to encourage good coding practices.
+include: package:flutter_lints/flutter.yaml
+
+linter:
+ # The lint rules applied to this project can be customized in the
+ # section below to disable rules from the `package:flutter_lints/flutter.yaml`
+ # included above or to enable additional rules. A list of all available lints
+ # and their documentation is published at https://dart.dev/lints.
+ #
+ # Instead of disabling a lint rule for the entire project in the
+ # section below, it can also be suppressed for a single line of code
+ # or a specific dart file by using the `// ignore: name_of_lint` and
+ # `// ignore_for_file: name_of_lint` syntax on the line or in the file
+ # producing the lint.
+ rules:
+ # avoid_print: false # Uncomment to disable the `avoid_print` rule
+ # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
+
+# Additional information about this file can be found at
+# https://dart.dev/guides/language/analysis-options
diff --git a/examples/ani_watch/android/.gitignore b/examples/ani_watch/android/.gitignore
new file mode 100644
index 00000000..be3943c9
--- /dev/null
+++ b/examples/ani_watch/android/.gitignore
@@ -0,0 +1,14 @@
+gradle-wrapper.jar
+/.gradle
+/captures/
+/gradlew
+/gradlew.bat
+/local.properties
+GeneratedPluginRegistrant.java
+.cxx/
+
+# Remember to never publicly share your keystore.
+# See https://flutter.dev/to/reference-keystore
+key.properties
+**/*.keystore
+**/*.jks
diff --git a/examples/ani_watch/android/app/build.gradle.kts b/examples/ani_watch/android/app/build.gradle.kts
new file mode 100644
index 00000000..9dc7d61f
--- /dev/null
+++ b/examples/ani_watch/android/app/build.gradle.kts
@@ -0,0 +1,44 @@
+plugins {
+ id("com.android.application")
+ id("kotlin-android")
+ // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
+ id("dev.flutter.flutter-gradle-plugin")
+}
+
+android {
+ namespace = "com.stac.aniwatch"
+ compileSdk = flutter.compileSdkVersion
+ ndkVersion = flutter.ndkVersion
+
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_11
+ targetCompatibility = JavaVersion.VERSION_11
+ }
+
+ kotlinOptions {
+ jvmTarget = JavaVersion.VERSION_11.toString()
+ }
+
+ defaultConfig {
+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
+ applicationId = "com.stac.aniwatch"
+ // You can update the following values to match your application needs.
+ // For more information, see: https://flutter.dev/to/review-gradle-config.
+ minSdk = flutter.minSdkVersion
+ targetSdk = flutter.targetSdkVersion
+ versionCode = flutter.versionCode
+ versionName = flutter.versionName
+ }
+
+ 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.getByName("debug")
+ }
+ }
+}
+
+flutter {
+ source = "../.."
+}
diff --git a/examples/ani_watch/android/app/src/debug/AndroidManifest.xml b/examples/ani_watch/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 00000000..399f6981
--- /dev/null
+++ b/examples/ani_watch/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/examples/ani_watch/android/app/src/main/AndroidManifest.xml b/examples/ani_watch/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 00000000..d5b473cb
--- /dev/null
+++ b/examples/ani_watch/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/android/app/src/main/kotlin/com/stac/aniwatch/MainActivity.kt b/examples/ani_watch/android/app/src/main/kotlin/com/stac/aniwatch/MainActivity.kt
new file mode 100644
index 00000000..1abd1556
--- /dev/null
+++ b/examples/ani_watch/android/app/src/main/kotlin/com/stac/aniwatch/MainActivity.kt
@@ -0,0 +1,5 @@
+package com.stac.aniwatch
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity : FlutterActivity()
diff --git a/examples/ani_watch/android/app/src/main/res/drawable-v21/launch_background.xml b/examples/ani_watch/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 00000000..f74085f3
--- /dev/null
+++ b/examples/ani_watch/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/android/app/src/main/res/drawable/launch_background.xml b/examples/ani_watch/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 00000000..304732f8
--- /dev/null
+++ b/examples/ani_watch/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/examples/ani_watch/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 00000000..db77bb4b
Binary files /dev/null and b/examples/ani_watch/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/examples/ani_watch/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/examples/ani_watch/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 00000000..17987b79
Binary files /dev/null and b/examples/ani_watch/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/examples/ani_watch/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/examples/ani_watch/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 00000000..09d43914
Binary files /dev/null and b/examples/ani_watch/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/examples/ani_watch/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/examples/ani_watch/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 00000000..d5f1c8d3
Binary files /dev/null and b/examples/ani_watch/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/examples/ani_watch/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/examples/ani_watch/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 00000000..4d6372ee
Binary files /dev/null and b/examples/ani_watch/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/examples/ani_watch/android/app/src/main/res/values-night/styles.xml b/examples/ani_watch/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 00000000..06952be7
--- /dev/null
+++ b/examples/ani_watch/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/android/app/src/main/res/values/styles.xml b/examples/ani_watch/android/app/src/main/res/values/styles.xml
new file mode 100644
index 00000000..cb1ef880
--- /dev/null
+++ b/examples/ani_watch/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/android/app/src/profile/AndroidManifest.xml b/examples/ani_watch/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 00000000..399f6981
--- /dev/null
+++ b/examples/ani_watch/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/examples/ani_watch/android/build.gradle.kts b/examples/ani_watch/android/build.gradle.kts
new file mode 100644
index 00000000..89176ef4
--- /dev/null
+++ b/examples/ani_watch/android/build.gradle.kts
@@ -0,0 +1,21 @@
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
+rootProject.layout.buildDirectory.value(newBuildDir)
+
+subprojects {
+ val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
+ project.layout.buildDirectory.value(newSubprojectBuildDir)
+}
+subprojects {
+ project.evaluationDependsOn(":app")
+}
+
+tasks.register("clean") {
+ delete(rootProject.layout.buildDirectory)
+}
diff --git a/examples/ani_watch/android/gradle.properties b/examples/ani_watch/android/gradle.properties
new file mode 100644
index 00000000..f018a618
--- /dev/null
+++ b/examples/ani_watch/android/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/examples/ani_watch/android/gradle/wrapper/gradle-wrapper.properties b/examples/ani_watch/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 00000000..ac3b4792
--- /dev/null
+++ b/examples/ani_watch/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-8.12-all.zip
diff --git a/examples/ani_watch/android/settings.gradle.kts b/examples/ani_watch/android/settings.gradle.kts
new file mode 100644
index 00000000..ab39a10a
--- /dev/null
+++ b/examples/ani_watch/android/settings.gradle.kts
@@ -0,0 +1,25 @@
+pluginManagement {
+ val flutterSdkPath = run {
+ val properties = java.util.Properties()
+ file("local.properties").inputStream().use { properties.load(it) }
+ val flutterSdkPath = properties.getProperty("flutter.sdk")
+ require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
+ flutterSdkPath
+ }
+
+ includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
+
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+
+plugins {
+ id("dev.flutter.flutter-plugin-loader") version "1.0.0"
+ id("com.android.application") version "8.7.3" apply false
+ id("org.jetbrains.kotlin.android") version "2.1.0" apply false
+}
+
+include(":app")
diff --git a/examples/ani_watch/assets/images/bell-simple.svg b/examples/ani_watch/assets/images/bell-simple.svg
new file mode 100644
index 00000000..24fab4f0
--- /dev/null
+++ b/examples/ani_watch/assets/images/bell-simple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/calendar-dots.svg b/examples/ani_watch/assets/images/calendar-dots.svg
new file mode 100644
index 00000000..e7ade49d
--- /dev/null
+++ b/examples/ani_watch/assets/images/calendar-dots.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/caret-left.svg b/examples/ani_watch/assets/images/caret-left.svg
new file mode 100644
index 00000000..a3a1e39a
--- /dev/null
+++ b/examples/ani_watch/assets/images/caret-left.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/flower-tulip-bold.svg b/examples/ani_watch/assets/images/flower-tulip-bold.svg
new file mode 100644
index 00000000..95890d28
--- /dev/null
+++ b/examples/ani_watch/assets/images/flower-tulip-bold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/house-simple.svg b/examples/ani_watch/assets/images/house-simple.svg
new file mode 100644
index 00000000..aae40326
--- /dev/null
+++ b/examples/ani_watch/assets/images/house-simple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/kny.png b/examples/ani_watch/assets/images/kny.png
new file mode 100644
index 00000000..9396bc86
Binary files /dev/null and b/examples/ani_watch/assets/images/kny.png differ
diff --git a/examples/ani_watch/assets/images/leaf-bold.svg b/examples/ani_watch/assets/images/leaf-bold.svg
new file mode 100644
index 00000000..2ecd4cf7
--- /dev/null
+++ b/examples/ani_watch/assets/images/leaf-bold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/list-heart.svg b/examples/ani_watch/assets/images/list-heart.svg
new file mode 100644
index 00000000..784bffb4
--- /dev/null
+++ b/examples/ani_watch/assets/images/list-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/play-circle-fill.svg b/examples/ani_watch/assets/images/play-circle-fill.svg
new file mode 100644
index 00000000..894dbc58
--- /dev/null
+++ b/examples/ani_watch/assets/images/play-circle-fill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/play-pause-fill.svg b/examples/ani_watch/assets/images/play-pause-fill.svg
new file mode 100644
index 00000000..598832a3
--- /dev/null
+++ b/examples/ani_watch/assets/images/play-pause-fill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/snowflake-bold.svg b/examples/ani_watch/assets/images/snowflake-bold.svg
new file mode 100644
index 00000000..7a879d4e
--- /dev/null
+++ b/examples/ani_watch/assets/images/snowflake-bold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/star.svg b/examples/ani_watch/assets/images/star.svg
new file mode 100644
index 00000000..b2b1a0b1
--- /dev/null
+++ b/examples/ani_watch/assets/images/star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/sun-bold.svg b/examples/ani_watch/assets/images/sun-bold.svg
new file mode 100644
index 00000000..4f84f975
--- /dev/null
+++ b/examples/ani_watch/assets/images/sun-bold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/images/user.svg b/examples/ani_watch/assets/images/user.svg
new file mode 100644
index 00000000..885073b1
--- /dev/null
+++ b/examples/ani_watch/assets/images/user.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/ani_watch/assets/jsons/screens/onboarding_screen.json b/examples/ani_watch/assets/jsons/screens/onboarding_screen.json
new file mode 100644
index 00000000..587a792c
--- /dev/null
+++ b/examples/ani_watch/assets/jsons/screens/onboarding_screen.json
@@ -0,0 +1,96 @@
+{
+ "type": "scaffold",
+ "body": {
+ "type": "stack",
+ "children": [
+ {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/kny.png",
+ "width": "maxFinite",
+ "height": "maxFinite",
+ "fit": "cover"
+ },
+ {
+ "type": "positioned",
+ "left": 0,
+ "right": 0,
+ "bottom": 0,
+ "child": {
+ "type": "container",
+ "width": 1000,
+ "color": "surfaceBright",
+ "child": {
+ "type": "padding",
+ "padding": {
+ "left": 20,
+ "right": 20,
+ "top": 40,
+ "bottom": 52
+ },
+ "child": {
+ "type": "column",
+ "mainAxisAlignment": "end",
+ "crossAxisAlignment": "start",
+ "children": [
+ {
+ "type": "text",
+ "data": "Ani",
+ "style": {"fontSize": 34, "fontWeight": "w700", "height": 1.1, "letterSpacing": -0.4},
+ "children": [
+ {
+ "data": "Watch",
+ "style": {
+ "color": "primary"
+ }
+ }
+ ]
+ },
+ {
+ "type": "sizedBox",
+ "height": 10
+ },
+ {
+ "type": "text",
+ "data": "Watch, enjoy and track all of your anime series, movies and OVA’s",
+ "style": "bodyLarge",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"}
+ },
+ {
+ "type": "sizedBox",
+ "height": 56
+ },
+ {
+ "type": "sizedBox",
+ "height": 52,
+ "width": 1000,
+ "child": {
+ "type": "filledButton",
+ "child": {
+ "type": "text",
+ "data": "",
+ "style": "BodyLarge",
+ "children": [
+ {
+ "data": "Get Started",
+ "style": {
+ "color": "onPrimary"
+ }
+ }
+ ]
+ },
+ "onPressed": {
+ "actionType": "navigate",
+ "routeName": "mainNav",
+ "navigationStyle": "pushNamed"
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/examples/ani_watch/fonts/Figtree-VariableFont_wght.ttf b/examples/ani_watch/fonts/Figtree-VariableFont_wght.ttf
new file mode 100644
index 00000000..f93a4b6c
Binary files /dev/null and b/examples/ani_watch/fonts/Figtree-VariableFont_wght.ttf differ
diff --git a/examples/ani_watch/fonts/Figtree/Figtree-Black.ttf b/examples/ani_watch/fonts/Figtree/Figtree-Black.ttf
new file mode 100644
index 00000000..526fe1dd
Binary files /dev/null and b/examples/ani_watch/fonts/Figtree/Figtree-Black.ttf differ
diff --git a/examples/ani_watch/fonts/Figtree/Figtree-Bold.ttf b/examples/ani_watch/fonts/Figtree/Figtree-Bold.ttf
new file mode 100644
index 00000000..6f8ad640
Binary files /dev/null and b/examples/ani_watch/fonts/Figtree/Figtree-Bold.ttf differ
diff --git a/examples/ani_watch/fonts/Figtree/Figtree-ExtraBold.ttf b/examples/ani_watch/fonts/Figtree/Figtree-ExtraBold.ttf
new file mode 100644
index 00000000..8589c044
Binary files /dev/null and b/examples/ani_watch/fonts/Figtree/Figtree-ExtraBold.ttf differ
diff --git a/examples/ani_watch/fonts/Figtree/Figtree-Light.ttf b/examples/ani_watch/fonts/Figtree/Figtree-Light.ttf
new file mode 100644
index 00000000..e2388783
Binary files /dev/null and b/examples/ani_watch/fonts/Figtree/Figtree-Light.ttf differ
diff --git a/examples/ani_watch/fonts/Figtree/Figtree-Medium.ttf b/examples/ani_watch/fonts/Figtree/Figtree-Medium.ttf
new file mode 100644
index 00000000..5b89c890
Binary files /dev/null and b/examples/ani_watch/fonts/Figtree/Figtree-Medium.ttf differ
diff --git a/examples/ani_watch/fonts/Figtree/Figtree-Regular.ttf b/examples/ani_watch/fonts/Figtree/Figtree-Regular.ttf
new file mode 100644
index 00000000..4b42cdb3
Binary files /dev/null and b/examples/ani_watch/fonts/Figtree/Figtree-Regular.ttf differ
diff --git a/examples/ani_watch/fonts/Figtree/Figtree-SemiBold.ttf b/examples/ani_watch/fonts/Figtree/Figtree-SemiBold.ttf
new file mode 100644
index 00000000..aa2b78c2
Binary files /dev/null and b/examples/ani_watch/fonts/Figtree/Figtree-SemiBold.ttf differ
diff --git a/examples/ani_watch/ios/.gitignore b/examples/ani_watch/ios/.gitignore
new file mode 100644
index 00000000..7a7f9873
--- /dev/null
+++ b/examples/ani_watch/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/examples/ani_watch/ios/Flutter/AppFrameworkInfo.plist b/examples/ani_watch/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 00000000..7c569640
--- /dev/null
+++ b/examples/ani_watch/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
+ 12.0
+
+
diff --git a/examples/ani_watch/ios/Flutter/Debug.xcconfig b/examples/ani_watch/ios/Flutter/Debug.xcconfig
new file mode 100644
index 00000000..ec97fc6f
--- /dev/null
+++ b/examples/ani_watch/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/examples/ani_watch/ios/Flutter/Release.xcconfig b/examples/ani_watch/ios/Flutter/Release.xcconfig
new file mode 100644
index 00000000..c4855bfe
--- /dev/null
+++ b/examples/ani_watch/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/examples/ani_watch/ios/Podfile b/examples/ani_watch/ios/Podfile
new file mode 100644
index 00000000..e549ee22
--- /dev/null
+++ b/examples/ani_watch/ios/Podfile
@@ -0,0 +1,43 @@
+# Uncomment this line to define a global platform for your project
+# platform :ios, '12.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!
+
+ flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
+ target 'RunnerTests' do
+ inherit! :search_paths
+ end
+end
+
+post_install do |installer|
+ installer.pods_project.targets.each do |target|
+ flutter_additional_ios_build_settings(target)
+ end
+end
diff --git a/examples/ani_watch/ios/Podfile.lock b/examples/ani_watch/ios/Podfile.lock
new file mode 100644
index 00000000..e36ad4c4
--- /dev/null
+++ b/examples/ani_watch/ios/Podfile.lock
@@ -0,0 +1,30 @@
+PODS:
+ - Flutter (1.0.0)
+ - path_provider_foundation (0.0.1):
+ - Flutter
+ - FlutterMacOS
+ - sqflite_darwin (0.0.4):
+ - Flutter
+ - FlutterMacOS
+
+DEPENDENCIES:
+ - Flutter (from `Flutter`)
+ - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
+ - sqflite_darwin (from `.symlinks/plugins/sqflite_darwin/darwin`)
+
+EXTERNAL SOURCES:
+ Flutter:
+ :path: Flutter
+ path_provider_foundation:
+ :path: ".symlinks/plugins/path_provider_foundation/darwin"
+ sqflite_darwin:
+ :path: ".symlinks/plugins/sqflite_darwin/darwin"
+
+SPEC CHECKSUMS:
+ Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
+ path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
+ sqflite_darwin: 20b2a3a3b70e43edae938624ce550a3cbf66a3d0
+
+PODFILE CHECKSUM: 4305caec6b40dde0ae97be1573c53de1882a07e5
+
+COCOAPODS: 1.16.2
diff --git a/examples/ani_watch/ios/Runner.xcodeproj/project.pbxproj b/examples/ani_watch/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 00000000..ff7267e8
--- /dev/null
+++ b/examples/ani_watch/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,731 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
+ 71DB6342EA3CC33466A1A767 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C5C37AE1E8860E5DA28E0F69 /* 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 */; };
+ DBE03108DFCE64ACE8A1A718 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F0E3A809DBCF20F98BB61066 /* Pods_RunnerTests.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 97C146E61CF9000F007C117D /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 97C146ED1CF9000F007C117D;
+ remoteInfo = Runner;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Embed Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
+ 1694DA9B213BB7574E3E269C /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
+ 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; 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 = ""; };
+ 9D9D52CE4A41AF8A4E2B1D53 /* 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 = ""; };
+ AEC0ECEA55899A64B485983D /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
+ B49797C63C88580F833C0066 /* 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 = ""; };
+ BE9C2D54FC790C235F353DA8 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ C5C37AE1E8860E5DA28E0F69 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E7E11D9A16548A73916484F2 /* 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 = ""; };
+ F0E3A809DBCF20F98BB61066 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 71DB6342EA3CC33466A1A767 /* Pods_Runner.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ E1855C25A6073995E064311E /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ DBE03108DFCE64ACE8A1A718 /* Pods_RunnerTests.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXGroup;
+ children = (
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
+ );
+ path = RunnerTests;
+ sourceTree = "";
+ };
+ 40A20DF63B168755054D3085 /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ E7E11D9A16548A73916484F2 /* Pods-Runner.debug.xcconfig */,
+ 9D9D52CE4A41AF8A4E2B1D53 /* Pods-Runner.release.xcconfig */,
+ B49797C63C88580F833C0066 /* Pods-Runner.profile.xcconfig */,
+ AEC0ECEA55899A64B485983D /* Pods-RunnerTests.debug.xcconfig */,
+ 1694DA9B213BB7574E3E269C /* Pods-RunnerTests.release.xcconfig */,
+ BE9C2D54FC790C235F353DA8 /* Pods-RunnerTests.profile.xcconfig */,
+ );
+ name = Pods;
+ path = Pods;
+ 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 */,
+ 331C8082294A63A400263BE5 /* RunnerTests */,
+ 40A20DF63B168755054D3085 /* Pods */,
+ D9D686992A050C14B066C057 /* Frameworks */,
+ );
+ sourceTree = "";
+ };
+ 97C146EF1CF9000F007C117D /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146EE1CF9000F007C117D /* Runner.app */,
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
+ );
+ 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 = "";
+ };
+ D9D686992A050C14B066C057 /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ C5C37AE1E8860E5DA28E0F69 /* Pods_Runner.framework */,
+ F0E3A809DBCF20F98BB61066 /* Pods_RunnerTests.framework */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 331C8080294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
+ buildPhases = (
+ C8B380EC27102F8E84974015 /* [CP] Check Pods Manifest.lock */,
+ 331C807D294A63A400263BE5 /* Sources */,
+ 331C807F294A63A400263BE5 /* Resources */,
+ E1855C25A6073995E064311E /* Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */,
+ );
+ name = RunnerTests;
+ productName = RunnerTests;
+ productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+ 97C146ED1CF9000F007C117D /* Runner */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
+ buildPhases = (
+ 762D547BF4F79909FA8EC25A /* [CP] Check Pods Manifest.lock */,
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ 4345C4B27295EFE60E2ED410 /* [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 = {
+ BuildIndependentTargetsInParallel = YES;
+ LastUpgradeCheck = 1510;
+ ORGANIZATIONNAME = "";
+ TargetAttributes = {
+ 331C8080294A63A400263BE5 = {
+ CreatedOnToolsVersion = 14.0;
+ TestTargetID = 97C146ED1CF9000F007C117D;
+ };
+ 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 */,
+ 331C8080294A63A400263BE5 /* RunnerTests */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 331C807F294A63A400263BE5 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 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 = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ );
+ name = "Thin Binary";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ };
+ 4345C4B27295EFE60E2ED410 /* [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;
+ };
+ 762D547BF4F79909FA8EC25A /* [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;
+ };
+ 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";
+ };
+ C8B380EC27102F8E84974015 /* [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-RunnerTests-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;
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 331C807D294A63A400263BE5 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EA1CF9000F007C117D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 97C146ED1CF9000F007C117D /* Runner */;
+ targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency 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;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ 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;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ 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 = 12.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 = W2B7PMH9SQ;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.stac.aniwatch;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Profile;
+ };
+ 331C8088294A63A400263BE5 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = AEC0ECEA55899A64B485983D /* Pods-RunnerTests.debug.xcconfig */;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.stac.aniwatch;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Debug;
+ };
+ 331C8089294A63A400263BE5 /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 1694DA9B213BB7574E3E269C /* Pods-RunnerTests.release.xcconfig */;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.stac.aniwatch;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Release;
+ };
+ 331C808A294A63A400263BE5 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = BE9C2D54FC790C235F353DA8 /* Pods-RunnerTests.profile.xcconfig */;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.stac.aniwatch;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Profile;
+ };
+ 97C147031CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ 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;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ 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 = 12.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;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ 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;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ 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 = 12.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 = W2B7PMH9SQ;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.stac.aniwatch;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 97C147071CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = W2B7PMH9SQ;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.stac.aniwatch;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 331C8088294A63A400263BE5 /* Debug */,
+ 331C8089294A63A400263BE5 /* Release */,
+ 331C808A294A63A400263BE5 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 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/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 00000000..919434a6
--- /dev/null
+++ b/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 00000000..18d98100
--- /dev/null
+++ b/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 00000000..f9b0d7c5
--- /dev/null
+++ b/examples/ani_watch/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/examples/ani_watch/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/examples/ani_watch/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 00000000..e3773d42
--- /dev/null
+++ b/examples/ani_watch/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/ios/Runner.xcworkspace/contents.xcworkspacedata b/examples/ani_watch/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 00000000..21a3cc14
--- /dev/null
+++ b/examples/ani_watch/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/ani_watch/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 00000000..18d98100
--- /dev/null
+++ b/examples/ani_watch/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/examples/ani_watch/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/examples/ani_watch/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 00000000..f9b0d7c5
--- /dev/null
+++ b/examples/ani_watch/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/examples/ani_watch/ios/Runner/AppDelegate.swift b/examples/ani_watch/ios/Runner/AppDelegate.swift
new file mode 100644
index 00000000..62666446
--- /dev/null
+++ b/examples/ani_watch/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+import Flutter
+import UIKit
+
+@main
+@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/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 00000000..d36b1fab
--- /dev/null
+++ b/examples/ani_watch/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/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 00000000..dc9ada47
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 00000000..7353c41e
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 00000000..797d452e
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 00000000..6ed2d933
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 00000000..4cd7b009
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 00000000..fe730945
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 00000000..321773cd
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 00000000..797d452e
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 00000000..502f463a
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 00000000..0ec30343
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 00000000..0ec30343
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 00000000..e9f5fea2
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 00000000..84ac32ae
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 00000000..8953cba0
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 00000000..0467bf12
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 00000000..0bedcf2f
--- /dev/null
+++ b/examples/ani_watch/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/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 00000000..9da19eac
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 00000000..9da19eac
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 00000000..9da19eac
Binary files /dev/null and b/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/examples/ani_watch/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 00000000..89c2725b
--- /dev/null
+++ b/examples/ani_watch/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/examples/ani_watch/ios/Runner/Base.lproj/LaunchScreen.storyboard b/examples/ani_watch/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 00000000..f2e259c7
--- /dev/null
+++ b/examples/ani_watch/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/ios/Runner/Base.lproj/Main.storyboard b/examples/ani_watch/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 00000000..f3c28516
--- /dev/null
+++ b/examples/ani_watch/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/ani_watch/ios/Runner/Info.plist b/examples/ani_watch/ios/Runner/Info.plist
new file mode 100644
index 00000000..17237e00
--- /dev/null
+++ b/examples/ani_watch/ios/Runner/Info.plist
@@ -0,0 +1,49 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ AniWatch
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ AniWatch
+ 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
+
+ CADisableMinimumFrameDurationOnPhone
+
+ UIApplicationSupportsIndirectInputEvents
+
+
+
diff --git a/examples/ani_watch/ios/Runner/Runner-Bridging-Header.h b/examples/ani_watch/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 00000000..308a2a56
--- /dev/null
+++ b/examples/ani_watch/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/examples/ani_watch/ios/RunnerTests/RunnerTests.swift b/examples/ani_watch/ios/RunnerTests/RunnerTests.swift
new file mode 100644
index 00000000..86a7c3b1
--- /dev/null
+++ b/examples/ani_watch/ios/RunnerTests/RunnerTests.swift
@@ -0,0 +1,12 @@
+import Flutter
+import UIKit
+import XCTest
+
+class RunnerTests: XCTestCase {
+
+ func testExample() {
+ // If you add code to the Runner application, consider adding tests here.
+ // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
+ }
+
+}
diff --git a/examples/ani_watch/lib/ani_list_api_utils.dart b/examples/ani_watch/lib/ani_list_api_utils.dart
new file mode 100644
index 00000000..17ed4fd5
--- /dev/null
+++ b/examples/ani_watch/lib/ani_list_api_utils.dart
@@ -0,0 +1,293 @@
+class AniListAPIUtils {
+ // --- Sort Types ---
+
+ // General & Popularity Based
+ static const String sortId = "ID";
+ static const String sortIdDesc = "ID_DESC";
+ static const String sortPopularity = "POPULARITY";
+ static const String sortPopularityDesc = "POPULARITY_DESC";
+ static const String sortTrending = "TRENDING";
+ static const String sortTrendingDesc = "TRENDING_DESC";
+ static const String sortFavourites = "FAVOURITES";
+ static const String sortFavouritesDesc = "FAVOURITES_DESC";
+
+ // Score & Rating Based
+ static const String sortScore = "SCORE";
+ static const String sortScoreDesc = "SCORE_DESC";
+ static const String sortMeanScore = "MEAN_SCORE";
+ static const String sortMeanScoreDesc = "MEAN_SCORE_DESC";
+
+ // Date & Time Based
+ static const String sortStartDate = "START_DATE";
+ static const String sortStartDateDesc = "START_DATE_DESC";
+ static const String sortEndDate = "END_DATE";
+ static const String sortEndDateDesc = "END_DATE_DESC";
+
+ // Alphabetical
+ static const String sortTitleRomaji = "TITLE_ROMAJI";
+ static const String sortTitleRomajiDesc = "TITLE_ROMAJI_DESC";
+ static const String sortTitleEnglish = "TITLE_ENGLISH";
+ static const String sortTitleEnglishDesc = "TITLE_ENGLISH_DESC";
+ static const String sortTitleNative = "TITLE_NATIVE";
+ static const String sortTitleNativeDesc = "TITLE_NATIVE_DESC";
+
+ // Content Specific (Anime)
+ static const String sortEpisodes = "EPISODES";
+ static const String sortEpisodesDesc = "EPISODES_DESC";
+
+ // --- API Query Generation ---
+
+ static Map getAniListAPIRequest(String query) {
+ return {
+ "url": "https://graphql.anilist.co",
+ "method": "post",
+ "headers": {
+ "Content-Type": "application/json",
+ "Accept": "application/json",
+ },
+ "body": {"query": query},
+ };
+ }
+
+ static String getAniListAPIQueryForAnimeList({
+ required int count,
+ required String sortType,
+ String? genre,
+ String? season,
+ int? seasonYear,
+ }) {
+ String mediaArgs = "type: ANIME, sort: $sortType";
+
+ if (genre != null && genre.isNotEmpty) {
+ mediaArgs += ", genre: \"$genre\"";
+ }
+
+ if (season != null && season.isNotEmpty) {
+ mediaArgs += ", season: $season";
+ }
+
+ if (seasonYear != null) {
+ mediaArgs += ", seasonYear: $seasonYear";
+ }
+
+ return """
+ query GetAnimeListPage {
+ Page(page: 1, perPage: $count) {
+ media($mediaArgs) {
+ id
+ title {
+ romaji
+ english
+ native
+ }
+ coverImage {
+ extraLarge
+ }
+ bannerImage
+ startDate {
+ year
+ month
+ day
+ }
+ endDate {
+ year
+ month
+ day
+ }
+ description(asHtml: false)
+ averageScore
+ episodes
+ duration
+ studios(isMain: true, sort: [ID]) {
+ nodes {
+ name
+ }
+ }
+ source(version: 3)
+ format
+ season
+ seasonYear
+ genres
+ status(version: 2)
+ nextAiringEpisode {
+ airingAt
+ timeUntilAiring
+ episode
+ }
+ }
+ }
+ }
+ """;
+ }
+
+ static String getAniListAPIQueryForAnimeAiringSchedule({
+ required int count,
+ bool? notYetAired,
+ int? airingAtStart,
+ int? airingAtEnd,
+ }) {
+ return "query Page {"
+ " Page(page: 1, perPage: $count) {"
+ " airingSchedules(sort: TIME${notYetAired != null ? ", notYetAired: $notYetAired" : ""}${airingAtStart != null ? ", airingAt_greater: $airingAtStart" : ""}${airingAtEnd != null ? ", airingAt_lesser: $airingAtEnd" : ""}) {"
+ " airingAt"
+ " episode"
+ " timeUntilAiring"
+ " media {"
+ " id"
+ " title {"
+ " romaji"
+ " english"
+ " native"
+ " }"
+ " coverImage {"
+ " extraLarge"
+ " large"
+ " }"
+ " bannerImage"
+ " duration"
+ " }"
+ " }"
+ " }"
+ "}";
+ }
+
+ static String getQueryForAnimeById(int animeId) {
+ return """
+ query GetAnimeDetails {
+ Media(id: $animeId, type: ANIME) {
+ id
+ title {
+ romaji
+ english
+ native
+ }
+ coverImage {
+ extraLarge
+ }
+ startDate {
+ year
+ month
+ day
+ }
+ endDate {
+ year
+ month
+ day
+ }
+ description(asHtml: false)
+ studios(isMain: true) {
+ edges {
+ isMain
+ node {
+ id
+ name
+ }
+ }
+ }
+ averageScore
+ episodes
+ duration
+ source(version: 3)
+ format
+ season
+ seasonYear
+ }
+ }
+ """;
+ }
+
+ static String getQueryForAnimeByIdRelationsOnly(int animeId) {
+ return """
+ query GetAnimeDetails {
+ Media(id: $animeId, type: ANIME) {
+ relations {
+ edges {
+ id
+ relationType(version: 2)
+ node {
+ id
+ title {
+ romaji
+ }
+ format
+ type
+ status(version: 2)
+ bannerImage
+ coverImage {
+ large
+ }
+ }
+ }
+ }
+ }
+ }
+ """;
+ }
+
+ static String getQueryForAnimeByIdEpisodesOnly(int animeId) {
+ return """
+ query GetAnimeDetails {
+ Media(id: $animeId, type: ANIME) {
+ streamingEpisodes {
+ site
+ episodeTitle: title
+ thumbnail
+ url
+ }
+ }
+ }
+ """;
+ }
+
+ static String getAnimeSeasonForMonth(int month) {
+ if (month < 1 || month > 12) {
+ throw ArgumentError("Month must be between 1 and 12. Received: $month");
+ }
+
+ if (month >= 1 && month <= 3) {
+ return "WINTER";
+ } else if (month >= 4 && month <= 6) {
+ return "SPRING";
+ } else if (month >= 7 && month <= 9) {
+ return "SUMMER";
+ } else {
+ return "FALL";
+ }
+ }
+
+ static String getAnimeSeason() {
+ final now = DateTime.now();
+ final currentMonth = now.month;
+ return getAnimeSeasonForMonth(currentMonth);
+ }
+
+ static String getNextAnimeSeason() {
+ final now = DateTime.now();
+ int currentMonth = now.month;
+
+ int currentSeasonIndex = (currentMonth - 1) ~/ 3;
+ int nextSeasonIndex = (currentSeasonIndex + 1) % 4;
+ int firstMonthOfNextSeason = (nextSeasonIndex * 3) + 1;
+
+ return getAnimeSeasonForMonth(firstMonthOfNextSeason);
+ }
+
+ static int getAnimeSeasonYear() {
+ final now = DateTime.now();
+ return now.year;
+ }
+
+ static int getNextAnimeSeasonYear() {
+ final now = DateTime.now();
+ int currentYear = now.year;
+ int currentMonth = now.month;
+
+ int currentSeasonIndex = (currentMonth - 1) ~/ 3;
+
+ if (currentSeasonIndex == 3) {
+ return currentYear + 1;
+ } else {
+ return currentYear;
+ }
+ }
+}
diff --git a/examples/ani_watch/lib/main.dart b/examples/ani_watch/lib/main.dart
new file mode 100644
index 00000000..dd8d9791
--- /dev/null
+++ b/examples/ani_watch/lib/main.dart
@@ -0,0 +1,245 @@
+import 'package:dio/dio.dart';
+import 'package:flutter/material.dart';
+import 'package:ani_watch/screens/details_screen.dart';
+import 'package:ani_watch/screens/navigation_view.dart';
+import 'package:ani_watch/widgets/ani_list_description_text/ani_list_description_text_parser.dart';
+import 'package:ani_watch/widgets/animeScheduleItem/anime_schedule_item_parser.dart';
+import 'package:ani_watch/widgets/anime_upcoming/anime_upcoming_parser.dart';
+import 'package:ani_watch/widgets/movie_carousel/anime_home_carousel_parser.dart';
+import 'package:stac/stac.dart';
+
+void main() async {
+ final dio = Dio();
+ dio.interceptors.add(
+ InterceptorsWrapper(
+ onRequest: (options, handler) {
+ return handler.next(options);
+ },
+ ),
+ );
+
+ await Stac.initialize(
+ dio: dio,
+ parsers: [
+ AnimeHomeCarouselParser(),
+ AnimeUpcomingParser(),
+ AniListDescriptionTextParser(),
+ AnimeScheduleItemParser(),
+ ],
+ );
+
+ runApp(const MyApp());
+}
+
+class MyApp extends StatelessWidget {
+ const MyApp({super.key});
+
+ @override
+ Widget build(BuildContext context) {
+ var brightness = MediaQuery.of(context).platformBrightness;
+ bool isDarkMode = brightness == Brightness.dark;
+
+ return StacApp(
+ title: 'Anime Db',
+ theme: StacTheme.fromJson(isDarkMode ? darkThemeJson : lightThemeJson),
+ routes: {
+ "details":
+ (context) =>
+ Stac.fromJson(getAnimeDetailsScreen(), context) ??
+ Text("details"),
+ "mainNav":
+ (context) =>
+ Stac.fromJson(navigationView, context) ?? Text("mainNav"),
+ },
+ homeBuilder:
+ (context) =>
+ Stac.fromAssets("assets/jsons/screens/onboarding_screen.json"),
+ );
+ }
+}
+
+final Map lightThemeJson = {
+ "brightness": "light",
+ "colorScheme": {
+ "brightness": "light",
+ "primary": "#E76946",
+ "onPrimary": "#FFFFFF",
+ "secondary": "#E76946",
+ "onSecondary": "#FFFFFF",
+ "background": "#FFFFFF",
+ "onBackground": "#010810",
+ "surface": "#FFFFFF",
+ "onSurface": "#010810",
+ "surfaceBright": "#F6F7F8",
+ "onSurfaceVariant": "#A6010810",
+ "error": "#FD1717",
+ "onError": "#FFFFFF",
+ "outline": "#14010810",
+ "onOutline": "#12010810",
+ },
+ "textTheme": textTheme,
+ "filledButtonTheme": filledButtonTheme,
+ "outlinedButtonTheme": outlinedButtonTheme,
+ "dividerTheme": dividerTheme,
+};
+
+final Map darkThemeJson = {
+ "brightness": "dark",
+ "colorScheme": {
+ "brightness": "dark",
+ "primary": "#E76946",
+ "onPrimary": "#050608",
+ "secondary": "#E76946",
+ "onSecondary": "#FFFFFF",
+ "background": "#050608",
+ "onBackground": "#FFFFFF",
+ "surface": "#050608",
+ "onSurface": "#FFFFFF",
+ "surfaceBright": "#101214",
+ "onSurfaceVariant": "#FFFFFF",
+ "error": "#FF6565",
+ "onError": "#050608",
+ "outline": "#FFFFFF",
+ "onOutline": "#FFFFFF",
+ },
+ "textTheme": textTheme,
+ "filledButtonTheme": filledButtonTheme,
+ "outlinedButtonTheme": outlinedButtonTheme,
+ "dividerTheme": dividerTheme,
+};
+
+final Map textTheme = {
+ "displayLarge": {
+ "fontFamily": "Figtree",
+ "fontSize": 56,
+ "fontWeight": "w700",
+ "height": 1.1,
+ "letterSpacing": -0.1,
+ },
+ "displayMedium": {
+ "fontFamily": "Figtree",
+ "fontSize": 48,
+ "fontWeight": "w700",
+ "height": 1.1,
+ "letterSpacing": -0.1,
+ },
+ "displaySmall": {
+ "fontFamily": "Figtree",
+ "fontSize": 40,
+ "fontWeight": "w700",
+ "height": 1.1,
+ "letterSpacing": -0.1,
+ },
+ "headlineLarge": {
+ "fontFamily": "Figtree",
+ "fontSize": 34,
+ "fontWeight": "w700",
+ "height": 1.3,
+ "letterSpacing": -0.1,
+ },
+ "headlineMedium": {
+ "fontFamily": "Figtree",
+ "fontSize": 30,
+ "fontWeight": "w700",
+ "height": 1.3,
+ "letterSpacing": -0.1,
+ },
+ "headlineSmall": {
+ "fontFamily": "Figtree",
+ "fontSize": 27,
+ "fontWeight": "w700",
+ "height": 1.3,
+ "letterSpacing": -0.1,
+ },
+ "titleLarge": {
+ "fontFamily": "Figtree",
+ "fontSize": 24,
+ "fontWeight": "w500",
+ "height": 1.3,
+ "letterSpacing": 0,
+ },
+ "titleMedium": {
+ "fontFamily": "Figtree",
+ "fontSize": 21,
+ "fontWeight": "w500",
+ "height": 1.3,
+ "letterSpacing": 0,
+ },
+ "titleSmall": {
+ "fontFamily": "Figtree",
+ "fontSize": 19,
+ "fontWeight": "w500",
+ "height": 1.3,
+ "letterSpacing": 0,
+ },
+ "labelLarge": {
+ "fontFamily": "Figtree",
+ "fontSize": 14,
+ "fontWeight": "w700",
+ "height": 1.3,
+ "letterSpacing": 0.8,
+ },
+ "labelMedium": {
+ "fontFamily": "Figtree",
+ "fontSize": 12,
+ "fontWeight": "w600",
+ "height": 1.3,
+ "letterSpacing": 0.8,
+ },
+ "labelSmall": {
+ "fontFamily": "Figtree",
+ "fontSize": 10,
+ "fontWeight": "w500",
+ "height": 1.3,
+ "letterSpacing": 0.8,
+ },
+ "bodyLarge": {
+ "fontFamily": "Figtree",
+ "fontSize": 17,
+ "fontWeight": "w400",
+ "height": 1.5,
+ "letterSpacing": 0,
+ },
+ "bodyMedium": {
+ "fontFamily": "Figtree",
+ "fontSize": 15,
+ "fontWeight": "w400",
+ "height": 1.5,
+ "letterSpacing": 0,
+ },
+ "bodySmall": {
+ "fontFamily": "Figtree",
+ "fontSize": 13.5,
+ "fontWeight": "w400",
+ "height": 1.5,
+ "letterSpacing": 0,
+ },
+};
+
+final Map filledButtonTheme = {
+ "minimumSize": {"width": 120, "height": 52},
+ "textStyle": {
+ "fontSize": 16,
+ "fontWeight": "w600",
+ "height": 1.5,
+ "letterSpacing": -0.1,
+ },
+ "padding": {"left": 20, "right": 20, "top": 13, "bottom": 13},
+ "shape": {"borderRadius": 6},
+};
+final Map outlinedButtonTheme = {
+ "minimumSize": {"width": 120, "height": 52},
+ "textStyle": {
+ "fontSize": 16,
+ "fontWeight": "w600",
+ "height": 1.5,
+ "letterSpacing": -0.1,
+ },
+ "padding": {"left": 20, "right": 20, "top": 13, "bottom": 13},
+ "side": {"color": "primary", "width": 1.0},
+ "shape": {"borderRadius": 6},
+};
+final Map dividerTheme = {
+ "color": "#24FFFFFF",
+ "thickness": 1,
+};
diff --git a/examples/ani_watch/lib/screens/details_screen.dart b/examples/ani_watch/lib/screens/details_screen.dart
new file mode 100644
index 00000000..e866ae93
--- /dev/null
+++ b/examples/ani_watch/lib/screens/details_screen.dart
@@ -0,0 +1,792 @@
+import 'package:ani_watch/ani_list_api_utils.dart';
+import 'package:stac/stac.dart';
+
+Map getAnimeDetailsScreen() {
+ return {
+ "type": "scaffold",
+ "body": {
+ "type": "safeArea",
+ "top": false,
+ "bottom": false,
+ "child": {
+ "type": "dynamicView",
+ "request": AniListAPIUtils.getAniListAPIRequest(
+ AniListAPIUtils.getQueryForAnimeById(
+ int.parse(StacRegistry.instance.getValue("anime_id")),
+ ),
+ ),
+ "targetPath": "data.Media",
+ "template": {
+ "type": "singleChildScrollView",
+ "child": {
+ "type": "column",
+ "children": [topPanel, descriptionSection, getDetailsTabs()],
+ },
+ },
+ },
+ },
+ };
+}
+
+final Map topPanel = {
+ "type": "stack",
+ "children": [
+ {
+ "type": "image",
+ "src": "{{coverImage.extraLarge}}",
+ "width": 10000,
+ "height": 500,
+ "fit": "cover",
+ },
+ {
+ "type": "positioned",
+ "left": 0,
+ "right": 0,
+ "bottom": 0,
+ "child": {
+ "type": "container",
+ "height": 100,
+ "decoration": {
+ "gradient": {
+ "colors": ["surface@0", "surface@80", "surface"],
+ "begin": "topCenter",
+ "end": "bottomCenter",
+ "stops": [0.0, 0.5, 1.0],
+ },
+ },
+ },
+ },
+ {
+ "type": "positioned",
+ "left": 16,
+ "right": 16,
+ "bottom": 0,
+ "child": {
+ "type": "text",
+ "data": "{{title.romaji}}",
+ "style": "titleMedium",
+ "copyWithStyle": {"fontWeight": "w600", "letterSpacing": -0.1},
+ "textAlign": "start",
+ "maxLines": 3,
+ },
+ },
+ {
+ "type": "safeArea",
+ "child": {
+ "type": "padding",
+ "padding": {"left": 16, "top": 8},
+ "child": {
+ "type": "gestureDetector",
+ "onTap": {"actionType": "navigate", "navigationStyle": "pop"},
+ "child": {
+ "type": "container",
+ "height": 36,
+ "width": 36,
+ "decoration": {"borderRadius": 18, "color": "surface@50"},
+ "child": {
+ "type": "center",
+ "child": {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/caret-left.svg",
+ "color": "onSurface",
+ "height": 20,
+ "width": 20,
+ },
+ },
+ },
+ },
+ },
+ },
+ ],
+};
+
+final Map descriptionSection = {
+ "type": "padding",
+ "padding": {"left": 16, "right": 16},
+ "child": {
+ "type": "column",
+ "crossAxisAlignment": "stretch",
+ "mainAxisSize": "min",
+ "children": [
+ {
+ "type": "conditional",
+ "condition": "{{format}} == MOVIE",
+ "ifTrue": {
+ "type": "text",
+ "textAlign": "start",
+ "data": "{{format}}",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ "ifFalse": {
+ "type": "conditional",
+ "condition": "{{episodes}} == null",
+ "ifTrue": {
+ "type": "text",
+ "textAlign": "start",
+ "data": "{{format}}",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ "ifFalse": {
+ "type": "text",
+ "textAlign": "start",
+ "data": "{{format}} · {{episodes}} Episodes",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ },
+ },
+ {"type": "sizedBox", "height": 8},
+ {
+ "type": "row",
+ "children": [
+ {
+ "type": "conditional",
+ "condition": "{{averageScore}} == null",
+ "ifTrue": getPill("assets/images/star.svg", "pending"),
+ "ifFalse": getPill("assets/images/star.svg", "{{averageScore}}%"),
+ },
+ {"type": "sizedBox", "width": 6},
+ {
+ "type": "conditional",
+ "condition": "{{season}} == FALL",
+ "ifTrue": getPill(
+ getSeasonAssetPath("FALL"),
+ "Fall {{seasonYear}}",
+ ),
+ "ifFalse": {
+ "type": "conditional",
+ "condition": "{{season}} == WINTER",
+ "ifTrue": getPill(
+ getSeasonAssetPath("WINTER"),
+ "Winter {{seasonYear}}",
+ ),
+ "ifFalse": {
+ "type": "conditional",
+ "condition": "{{season}} == SUMMER",
+ "ifTrue": getPill(
+ getSeasonAssetPath("SUMMER"),
+ "Summer {{seasonYear}}",
+ ),
+ "ifFalse": {
+ "type": "conditional",
+ "condition": "{{season}} == SPRING",
+ "ifTrue": getPill(
+ getSeasonAssetPath("SPRING"),
+ "Spring {{seasonYear}}",
+ ),
+ "ifFalse": getPill(
+ "assets/images/calendar-dots.svg",
+ "{{seasonYear}}",
+ ),
+ },
+ },
+ },
+ },
+ ],
+ },
+ {"type": "sizedBox", "height": 20},
+ {
+ "type": "container",
+ "height": 1,
+ "decoration": {"color": "outline@8"},
+ },
+ {"type": "sizedBox", "height": 16},
+ {
+ "type": "row",
+ "children": [
+ {
+ "type": "filledButton",
+ "style": {
+ "minimumSize": {"width": 120, "height": 40},
+ "textStyle": {
+ "color": "onPrimary",
+ "fontSize": 15,
+ "fontWeight": "w600",
+ "height": 1.5,
+ "letterSpacing": -0.1,
+ },
+ "padding": {"left": 20, "right": 20},
+ "shape": {"borderRadius": 6},
+ "backgroundColor": "primary",
+ },
+ "child": {
+ "type": "row",
+ "mainAxisAlignment": "center",
+ "children": [
+ {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/play-circle-fill.svg",
+ "color": "onPrimary",
+ "height": 20,
+ "width": 20,
+ },
+ {"type": "sizedBox", "width": 8},
+ {
+ "type": "padding",
+ "padding": {"bottom": 3},
+ "child": {"type": "text", "data": "Watch Now"},
+ },
+ ],
+ },
+ "onPressed": {
+ "actionType": "none",
+ "routeName": "details",
+ "navigationStyle": "pushNamed",
+ },
+ },
+ {"type": "sizedBox", "width": 12},
+ {
+ "type": "expanded",
+ "child": {
+ "type": "outlinedButton",
+ "style": {
+ "minimumSize": {"width": 120, "height": 40},
+ "textStyle": {
+ "color": "primary",
+ "fontSize": 15,
+ "fontWeight": "w600",
+ "height": 1.5,
+ "letterSpacing": -0.1,
+ },
+ "padding": {"left": 20, "right": 20},
+ "shape": {"borderRadius": 6},
+ "side": {"color": "primary", "width": 1.0},
+ },
+ "child": {
+ "type": "row",
+ "mainAxisAlignment": "center",
+ "children": [
+ {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/list-heart.svg",
+ "color": "primary",
+ "height": 20,
+ "width": 20,
+ },
+ {"type": "sizedBox", "width": 6},
+ {
+ "type": "padding",
+ "padding": {"bottom": 3},
+ "child": {"type": "text", "data": "Add to Watchlist"},
+ },
+ ],
+ },
+ "onPressed": {
+ "actionType": "none",
+ "routeName": "details",
+ "navigationStyle": "pushNamed",
+ },
+ },
+ },
+ ],
+ },
+ {"type": "sizedBox", "height": 16},
+ {
+ "type": "container",
+ "height": 1,
+ "decoration": {"color": "outline@8"},
+ },
+ {"type": "sizedBox", "height": 20},
+ {"type": "aniListDescriptionText", "data": "{{description}}"},
+ {"type": "sizedBox", "height": 16},
+ ],
+ },
+};
+
+Map getDetailsTabs() {
+ return {
+ "type": "defaultTabController",
+ "length": 2,
+ "child": {
+ "type": "column",
+ "children": [
+ {
+ "type": "container",
+ "height": 48,
+ "child": {
+ "type": "tabBar",
+ "labelColor": "onSurface",
+ "unselectedLabelColor": "onSurfaceVariant@65",
+ "labelStyle": {
+ "fontFamily": "Figtree",
+ "fontSize": 15,
+ "fontWeight": "w600",
+ "height": 1.5,
+ "letterSpacing": -0.1,
+ },
+ "unselectedLabelStyle": "bodyMedium",
+ "dividerColor": "outline@8",
+ "labelPadding": {"left": 16, "right": 16},
+ "isScrollable": true,
+ "tabAlignment": "start",
+ "tabs": [
+ {"type": "tab", "text": "About"},
+ {"type": "tab", "text": "Episodes"},
+ ],
+ },
+ },
+ {
+ "type": "container",
+ "height": 600,
+ "child": {
+ "type": "tabBarView",
+ "children": [
+ {
+ "type": "container",
+
+ "padding": {"top": 20, "bottom": 20},
+ "color": "surfaceBright",
+ "child": {
+ "type": "column",
+ "children": [
+ animeInfoView,
+ {"type": "sizedBox", "height": 24},
+ getAnimeRelationsView(),
+ ],
+ },
+ },
+ {
+ "type": "container",
+ "padding": {"top": 20, "bottom": 20},
+ "color": "surfaceBright",
+ "child": getAnimeEpisodesView(),
+ },
+ ],
+ },
+ },
+ ],
+ },
+ };
+}
+
+Map getAnimeRelationsView() {
+ return {
+ "type": "padding",
+ "padding": {"left": 16, "right": 16},
+ "child": {
+ "type": "column",
+ "mainAxisSize": "min",
+ "crossAxisAlignment": "stretch",
+ "children": [
+ {
+ "type": "text",
+ "data": "Relations",
+ "style": "bodyMedium",
+ "copyWithStyle": {"fontWeight": "w600", "letterSpacing": -0.1},
+ },
+ {"type": "sizedBox", "height": 8},
+ {"type": "container", "height": 1, "color": "outline@8"},
+ {"type": "sizedBox", "height": 8},
+ {
+ "type": "container",
+ "height": 270,
+ "child": {
+ "type": "dynamicView",
+ "request": AniListAPIUtils.getAniListAPIRequest(
+ AniListAPIUtils.getQueryForAnimeByIdRelationsOnly(
+ int.parse(StacRegistry.instance.getValue("anime_id")),
+ ),
+ ),
+ "targetPath": "data.Media.relations.edges",
+ "template": {
+ "type": "listView",
+ "padding": 0,
+ "isPrimary": false,
+ "scrollDirection": "vertical",
+ "shrinkWrap": true,
+ "separator": {"type": "sizedBox", "height": 8},
+ "itemTemplate": {
+ "type": "container",
+ "height": 74,
+ "decoration": {
+ "borderRadius": 6,
+ "color": "surface",
+ "border": {"color": "outline@8", "width": 1},
+ },
+ "child": {
+ "type": "row",
+ "children": [
+ {
+ "type": "clipRRect",
+ "borderRadius": {"topLeft": 6, "bottomLeft": 6},
+ "child": {
+ "type": "image",
+ "imageType": "network",
+ "src": "{{node.coverImage.large}}",
+ "width": 56,
+ "fit": "cover",
+ },
+ },
+ {
+ "type": "expanded",
+ "child": {
+ "type": "padding",
+ "padding": {"left": 12, "right": 16},
+ "child": {
+ "type": "column",
+ "crossAxisAlignment": "stretch",
+ "mainAxisSize": "min",
+ "children": [
+ {
+ "type": "text",
+ "data": "{{relationType}}",
+ "style": "labelSmall",
+ "copyWithStyle": {"color": "primary"},
+ },
+ {
+ "type": "text",
+ "data": "{{node.title.romaji}}",
+ "maxlines": 1,
+ "overflow": "ellipsis",
+ "style": "bodyMedium",
+ "copyWithStyle": {
+ "fontWeight": "w600",
+ "letterSpacing": -0.1,
+ },
+ },
+ {
+ "type": "text",
+ "data": "{{node.format}} · {{node.status}}",
+ "style": "bodySmall",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ ],
+ },
+ },
+ },
+ ],
+ },
+ },
+ },
+ },
+ },
+ ],
+ },
+ };
+}
+
+Map getAnimeEpisodesView() {
+ return {
+ "type": "dynamicView",
+ "request": AniListAPIUtils.getAniListAPIRequest(
+ AniListAPIUtils.getQueryForAnimeByIdEpisodesOnly(
+ int.parse(StacRegistry.instance.getValue("anime_id")),
+ ),
+ ),
+ "targetPath": "data.Media.streamingEpisodes",
+ "template": {
+ "type": "listView",
+ "padding": {"left": 16, "right": 16, "top": 0, "bottom": 0},
+ "isPrimary": false,
+ "scrollDirection": "vertical",
+ "shrinkWrap": true,
+ "separator": {"type": "sizedBox", "height": 10},
+ "itemTemplate": {
+ "type": "container",
+ "height": 64,
+ "decoration": {
+ "borderRadius": 6,
+ "color": "surface",
+ "border": {"color": "outline@8", "width": 1},
+ },
+ "child": {
+ "type": "row",
+ "children": [
+ {
+ "type": "clipRRect",
+ "borderRadius": {"topLeft": 6, "bottomLeft": 6},
+ "child": {
+ "type": "image",
+ "imageType": "network",
+ "src": "{{thumbnail}}",
+ "width": 114,
+ "fit": "cover",
+ },
+ },
+ {
+ "type": "expanded",
+ "child": {
+ "type": "padding",
+ "padding": {"left": 12, "right": 16},
+ "child": {
+ "type": "column",
+ "crossAxisAlignment": "stretch",
+ "mainAxisSize": "min",
+ "children": [
+ {
+ "type": "text",
+ "data": "{{episodeTitle}}",
+ "maxlines": 2,
+ "overflow": "ellipsis",
+ "style": "bodyMedium",
+ "copyWithStyle": {
+ "fontWeight": "w600",
+ "letterSpacing": -0.1,
+ },
+ },
+ ],
+ },
+ },
+ },
+ ],
+ },
+ },
+ },
+ };
+}
+
+final Map animeInfoView = {
+ "type": "padding",
+ "padding": {"left": 16, "right": 16},
+ "child": {
+ "type": "column",
+ "crossAxisAlignment": "stretch",
+ "mainAxisSize": "min",
+ "children": [
+ {
+ "type": "text",
+ "data": "Anime Info",
+ "style": "bodyMedium",
+ "copyWithStyle": {"fontWeight": "w600", "letterSpacing": -0.1},
+ },
+ {"type": "sizedBox", "height": 8},
+ {"type": "container", "height": 1, "color": "outline@8"},
+ {"type": "sizedBox", "height": 8},
+ {
+ "type": "column",
+ "spacing": 8,
+ "children": [
+ {
+ "type": "row",
+ "children": [
+ {
+ "type": "sizedBox",
+ "width": 140,
+ "child": {
+ "type": "text",
+ "data": "Start Date",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ },
+ {"type": "sizedBox", "width": 10},
+ {
+ "type": "expanded",
+ "child": {
+ "type": "text",
+ "data":
+ "{{startDate.day}}/{{startDate.month}}/{{startDate.year}}",
+ "style": "bodyMedium",
+ },
+ },
+ ],
+ },
+ {
+ "type": "row",
+ "children": [
+ {
+ "type": "sizedBox",
+ "width": 140,
+ "child": {
+ "type": "text",
+ "data": "End Date",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ },
+ {"type": "sizedBox", "width": 10},
+ {
+ "type": "expanded",
+ "child": {
+ "type": "conditional",
+ "condition": "{{endDate.day}} == null",
+ "ifTrue": {
+ "type": "text",
+ "data": "-",
+ "style": "bodyMedium",
+ },
+ "ifFalse": {
+ "type": "text",
+ "data":
+ "{{endDate.day}}/{{endDate.month}}/{{endDate.year}}",
+ "style": "bodyMedium",
+ },
+ },
+ },
+ ],
+ },
+ {
+ "type": "row",
+ "children": [
+ {
+ "type": "sizedBox",
+ "width": 140,
+ "child": {
+ "type": "text",
+ "data": "Format",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ },
+ {"type": "sizedBox", "width": 10},
+ {
+ "type": "expanded",
+ "child": {
+ "type": "text",
+ "data": "{{format}}",
+ "style": "bodyMedium",
+ },
+ },
+ ],
+ },
+ {
+ "type": "row",
+ "children": [
+ {
+ "type": "sizedBox",
+ "width": 140,
+ "child": {
+ "type": "text",
+ "data": "Episode Duration",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ },
+ {"type": "sizedBox", "width": 10},
+ {
+ "type": "expanded",
+ "child": {
+ "type": "conditional",
+ "condition": "{{duration}} == null",
+ "ifTrue": {
+ "type": "text",
+ "data": "-",
+ "style": "bodyMedium",
+ },
+ "ifFalse": {
+ "type": "text",
+ "data": "{{duration}} mins",
+ "style": "bodyMedium",
+ },
+ },
+ },
+ ],
+ },
+ {
+ "type": "row",
+ "children": [
+ {
+ "type": "sizedBox",
+ "width": 140,
+ "child": {
+ "type": "text",
+ "data": "Studio",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ },
+ {"type": "sizedBox", "width": 10},
+ {
+ "type": "expanded",
+ "child": {
+ "type": "text",
+ "data": "{{studios.edges[0].node.name}}",
+ "style": "bodyMedium",
+ },
+ },
+ ],
+ },
+ {
+ "type": "row",
+ "children": [
+ {
+ "type": "sizedBox",
+ "width": 140,
+ "child": {
+ "type": "text",
+ "data": "Source",
+ "style": "bodyMedium",
+ "copyWithStyle": {"color": "onSurfaceVariant@65"},
+ },
+ },
+ {"type": "sizedBox", "width": 10},
+ {
+ "type": "expanded",
+ "child": {
+ "type": "text",
+ "data": "{{source}}",
+ "style": "bodyMedium",
+ },
+ },
+ ],
+ },
+ ],
+ },
+ {"type": "sizedBox", "height": 8},
+ ],
+ },
+};
+
+Map getPill(String imgPath, String data) {
+ return {
+ "type": "container",
+ "height": 21,
+ "decoration": {"borderRadius": 4, "color": "primary"},
+ "child": {
+ "type": "row",
+ "mainAxisSize": "min",
+ "children": [
+ {"type": "sizedBox", "width": 4},
+ {
+ "type": "image",
+ "imageType": "asset",
+ "src": imgPath,
+ "color": "onPrimary",
+ "height": 12,
+ "width": 12,
+ },
+ {"type": "sizedBox", "width": 4},
+ {
+ "type": "text",
+ "data": data,
+ "style": "bodySmall",
+ "copyWithStyle": {
+ "color": "onPrimary",
+ "fontWeight": "w600",
+ "letterSpacing": -0.1,
+ },
+ },
+ {"type": "sizedBox", "width": 4},
+ ],
+ },
+ };
+}
+
+String getSeasonAssetPath(String? season) {
+ const String basePath = "assets/images/";
+ const String defaultSeasonAsset = "${basePath}snowflake-bold.svg";
+
+ if (season == null || season.isEmpty) {
+ return defaultSeasonAsset;
+ }
+
+ String normalizedSeason = season.toUpperCase();
+
+ switch (normalizedSeason) {
+ case "WINTER":
+ return "${basePath}snowflake-bold.svg";
+ case "SPRING":
+ return "${basePath}flower-tulip-bold.svg";
+ case "SUMMER":
+ return "${basePath}sun-bold.svg";
+ case "FALL":
+ return "${basePath}leaf-bold.svg";
+ default:
+ return defaultSeasonAsset;
+ }
+}
diff --git a/examples/ani_watch/lib/screens/home.dart b/examples/ani_watch/lib/screens/home.dart
new file mode 100644
index 00000000..a6cfc823
--- /dev/null
+++ b/examples/ani_watch/lib/screens/home.dart
@@ -0,0 +1,295 @@
+import 'package:ani_watch/ani_list_api_utils.dart';
+
+final Map homeScreenJson = {
+ "type": "scaffold",
+ "body": {"type": "safeArea", "bottom": false, "child": homeBodyJson},
+};
+
+final double defaultCategoryViewSpacing = 24.0;
+final Map homeBodyJson = {
+ "type": "singleChildScrollView",
+ "child": {
+ "type": "column",
+ "children": [
+ getAppBar(isMainAppBar: true),
+ {
+ "type": "AnimeHomeCarousel",
+ "request": AniListAPIUtils.getAniListAPIRequest(
+ AniListAPIUtils.getAniListAPIQueryForAnimeList(
+ count: 5,
+ sortType: AniListAPIUtils.sortTrendingDesc,
+ ),
+ ),
+ },
+ {"type": "sizedBox", "height": 20},
+ {
+ "type": "row",
+ "children": [
+ {"type": "sizedBox", "width": 16},
+ {
+ "type": "text",
+ "data": "",
+ "textAlign": "start",
+ "style": "bodyMedium",
+ "copyWithStyle": {"fontWeight": "w600", "letterSpacing": -0.1},
+ "overflow": "ellipsis",
+ "children": [
+ {
+ "data": "Upcoming",
+ "style": {"color": "onSurfaceVariant@65"},
+ },
+ ],
+ },
+ ],
+ },
+ {"type": "sizedBox", "height": 8},
+ {
+ "type": "animeUpcoming",
+ "request": AniListAPIUtils.getAniListAPIRequest(
+ AniListAPIUtils.getAniListAPIQueryForAnimeAiringSchedule(
+ count: 10,
+ notYetAired: true,
+ ),
+ ),
+ },
+ {"type": "sizedBox", "height": defaultCategoryViewSpacing},
+ getAnimeCategoryView(
+ categoryTitle: "Popular This Season",
+ season: AniListAPIUtils.getAnimeSeason(),
+ seasonYear: AniListAPIUtils.getAnimeSeasonYear(),
+ sortType: AniListAPIUtils.sortPopularityDesc,
+ ),
+ {"type": "sizedBox", "height": defaultCategoryViewSpacing},
+ getAnimeCategoryView(
+ categoryTitle: "Upcoming Next Season",
+ season: AniListAPIUtils.getNextAnimeSeason(),
+ seasonYear: AniListAPIUtils.getNextAnimeSeasonYear(),
+ sortType: AniListAPIUtils.sortPopularityDesc,
+ ),
+ {"type": "sizedBox", "height": defaultCategoryViewSpacing},
+ getAnimeCategoryView(
+ categoryTitle: "All-Time Popular",
+ sortType: AniListAPIUtils.sortPopularityDesc,
+ ),
+ {"type": "sizedBox", "height": defaultCategoryViewSpacing},
+ getAnimeCategoryView(
+ categoryTitle: "Action",
+ genre: "Action",
+ sortType: AniListAPIUtils.sortTrendingDesc,
+ ),
+ {"type": "sizedBox", "height": 80},
+ ],
+ },
+};
+
+Map getAnimeCategoryView({
+ required String categoryTitle,
+ String? genre,
+ String? season,
+ int? seasonYear,
+ String sortType = AniListAPIUtils.sortTrendingDesc,
+}) {
+ return {
+ "type": "column",
+ "mainAxisSize": "min",
+ "crossAxisAlignment": "stretch",
+ "children": [
+ {
+ "type": "row",
+ "children": [
+ {"type": "sizedBox", "width": 16},
+ {
+ "type": "text",
+ "data": "",
+ "textAlign": "start",
+ "style": "bodyMedium",
+ "copyWithStyle": {"fontWeight": "w600", "letterSpacing": -0.1},
+ "overflow": "ellipsis",
+ "children": [
+ {
+ "data": categoryTitle,
+ "style": {"color": "onSurfaceVariant@65"},
+ },
+ ],
+ },
+ ],
+ },
+ {"type": "sizedBox", "height": 10},
+ {
+ "type": "sizedBox",
+ "height": 245,
+ "child": {
+ "type": "dynamicView",
+ "request": AniListAPIUtils.getAniListAPIRequest(
+ AniListAPIUtils.getAniListAPIQueryForAnimeList(
+ count: 10,
+ sortType: sortType,
+ genre: genre,
+ season: season,
+ seasonYear: seasonYear,
+ ),
+ ),
+ "targetPath": "data.Page.media",
+ "template": {
+ "type": "listView",
+ "scrollDirection": "horizontal",
+ "shrinkWrap": true,
+ "separator": {"type": "sizedBox", "width": 12},
+ "padding": {"left": 16, "right": 16},
+ "itemTemplate": {
+ "type": "gestureDetector",
+ "onTap": {
+ "actionType": "setValue",
+ "values": [
+ {"key": "anime_id", "value": "{{id}}"},
+ ],
+ "action": {
+ "actionType": "navigate",
+ "routeName": "details",
+ "navigationStyle": "pushNamed",
+ },
+ },
+ "child": {
+ "type": "sizedBox",
+ "width": 140,
+ "child": {
+ "type": "column",
+ "mainAxisSize": "min",
+ "crossAxisAlignment": "stretch",
+ "children": [
+ {
+ "type": "clipRRect",
+ "borderRadius": 6,
+ "child": {
+ "type": "image",
+ "imageType": "network",
+ "src": "{{coverImage.extraLarge}}",
+ "width": 132,
+ "height": 196,
+ "fit": "cover",
+ },
+ },
+ {"type": "sizedBox", "height": 6},
+ {
+ "type": "text",
+ "data": "{{title.romaji}}",
+ "style": "bodyMedium",
+ "copyWithStyle": {
+ "fontWeight": "w600",
+ "letterSpacing": -0.1,
+ },
+ "overflow": "ellipsis",
+ },
+ {
+ "type": "conditional",
+ "condition": "{{format}} == MOVIE",
+ "ifTrue": getYearEpsText("{{seasonYear}} · Movie"),
+ "ifFalse": {
+ "type": "conditional",
+ "condition": "{{episodes}} == null",
+ "ifTrue": getYearEpsText("{{seasonYear}}"),
+ "ifFalse": getYearEpsText(
+ "{{seasonYear}} · {{episodes}} Eps",
+ ),
+ },
+ },
+ ],
+ },
+ },
+ },
+ },
+ },
+ },
+ ],
+ };
+}
+
+Map getYearEpsText(String data) {
+ return {
+ "type": "text",
+ "data": "",
+ "style": "bodySmall",
+ "overflow": "ellipsis",
+ "children": [
+ {
+ "data": data,
+ "style": {"color": "onSurfaceVariant@65"},
+ },
+ ],
+ };
+}
+
+Map getAppBar({
+ String? title1,
+ String? title2,
+ bool isMainAppBar = false,
+}) {
+ Map titleWidget;
+
+ if (isMainAppBar) {
+ titleWidget = {
+ "type": "text",
+ "data": "Ani",
+ "style": {
+ "fontSize": 24,
+ "fontWeight": "w700",
+ "height": 1.3,
+ "letterSpacing": -0.4,
+ },
+ "children": [
+ {
+ "data": "Watch",
+ "style": {"color": "primary"},
+ },
+ ],
+ };
+ } else {
+ titleWidget = {
+ "type": "text",
+ "data": title1 ?? "Title",
+ "style": "titleSmall",
+ "copyWithStyle": {"fontWeight": "w600", "letterSpacing": -0.1},
+ "children": [
+ if (title2 != null && title2.isNotEmpty)
+ {
+ "data": title2,
+ "style": {"color": "primary"},
+ },
+ ],
+ };
+ }
+
+ return {
+ "type": "container",
+ "height": 56,
+ "width": 1000,
+ "child": {
+ "type": "padding",
+ "padding": {"left": 16, "right": 16},
+ "child": {
+ "type": "row",
+ "children": [
+ titleWidget,
+ {"type": "expanded"},
+ {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/bell-simple.svg",
+ "color": "onSurfaceVariant@65",
+ "height": 22,
+ "width": 22,
+ },
+ {"type": "sizedBox", "width": 14},
+ {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/user.svg",
+ "color": "onSurfaceVariant@65",
+ "height": 22,
+ "width": 22,
+ },
+ ],
+ },
+ },
+ };
+}
diff --git a/examples/ani_watch/lib/screens/navigation_view.dart b/examples/ani_watch/lib/screens/navigation_view.dart
new file mode 100644
index 00000000..850a9783
--- /dev/null
+++ b/examples/ani_watch/lib/screens/navigation_view.dart
@@ -0,0 +1,113 @@
+import 'package:ani_watch/screens/home.dart';
+import 'package:ani_watch/screens/schedule.dart';
+import 'package:flutter/foundation.dart';
+
+final Map navigationView = {
+ "type": "defaultBottomNavigationController",
+ "length": 2,
+ "child": {
+ "type": "scaffold",
+ "extendBody": true,
+ "body": {
+ "type": "bottomNavigationView",
+ "children": [homeScreenJson, scheduleScreenJson],
+ },
+ "bottomNavigationBar": {
+ "type": "container",
+ "height": getMobilePlatformSpecificValue(),
+ "padding": 0,
+ "child": {
+ "type": "clipRRect",
+ "child": {
+ "type": "stack",
+ "fit": "expand",
+ "children": [
+ {
+ "type": "backdropFilter",
+ "filter": {"type": "blur", "sigmaX": 20.0, "sigmaY": 20.0},
+ },
+ {
+ "type": "bottomNavigationBar",
+ "backgroundColor": "surface@80",
+ "selectedItemColor": "onSurface",
+ "selectedLabelStyle": {
+ "color": "onSurface",
+ "fontFamily": "Figtree",
+ "fontSize": 12,
+ "fontWeight": "w400",
+ "height": 1.5,
+ "letterSpacing": 0,
+ },
+ "unselectedLabelStyle": {
+ "color": "onSurfaceVariant@65",
+ "fontFamily": "Figtree",
+ "fontSize": 12,
+ "fontWeight": "w400",
+ "height": 1.5,
+ "letterSpacing": 0,
+ },
+ "iconSize": 22,
+ "items": [
+ {
+ "type": "navigationBarItem",
+ "label": "Home",
+ "activeIcon": {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/house-simple.svg",
+ "color": "onSurface",
+ "height": 22,
+ "width": 22,
+ },
+ "icon": {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/house-simple.svg",
+ "color": "onSurfaceVariant@65",
+ "height": 22,
+ "width": 22,
+ },
+ },
+ {
+ "type": "navigationBarItem",
+ "label": "Schedule",
+ "activeIcon": {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/calendar-dots.svg",
+ "color": "onSurface",
+ "height": 22,
+ "width": 22,
+ },
+ "icon": {
+ "type": "image",
+ "imageType": "asset",
+ "src": "assets/images/calendar-dots.svg",
+ "color": "onSurfaceVariant@65",
+ "height": 22,
+ "width": 22,
+ },
+ },
+ ],
+ },
+ {
+ "type": "positioned",
+ "top": 0,
+ "left": 0,
+ "right": 0,
+ "child": {"type": "container", "height": 1, "color": "outline@8"},
+ },
+ ],
+ },
+ },
+ },
+ },
+};
+
+int getMobilePlatformSpecificValue() {
+ if (defaultTargetPlatform == TargetPlatform.iOS) {
+ return 86;
+ } else {
+ return 60;
+ }
+}
diff --git a/examples/ani_watch/lib/screens/schedule.dart b/examples/ani_watch/lib/screens/schedule.dart
new file mode 100644
index 00000000..e659984e
--- /dev/null
+++ b/examples/ani_watch/lib/screens/schedule.dart
@@ -0,0 +1,148 @@
+import 'package:intl/intl.dart';
+import 'package:ani_watch/ani_list_api_utils.dart';
+import 'package:ani_watch/screens/home.dart';
+
+final Map scheduleScreenJson = {
+ "type": "scaffold",
+ "body": {"type": "safeArea", "bottom": false, "child": scheduleBodyJson},
+};
+
+final Map scheduleBodyJson = {
+ "type": "column",
+ "crossAxisAlignment": "stretch",
+ "children": [
+ getAppBar(title1: "Release ", title2: "Schedule"),
+ {"type": "container", "height": 1, "color": "outline@08"},
+ {
+ "type": "expanded",
+ "child": {
+ "type": "singleChildScrollView",
+ "scrollDirection": "vertical",
+ "child": {
+ "type": "column",
+ "crossAxisAlignment": "stretch",
+ "children": getScheduleViewList(),
+ },
+ },
+ },
+ ],
+};
+
+List