diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..d38e41c
Binary files /dev/null and b/.DS_Store differ
diff --git a/.github/workflows/shorebird_ci.yaml b/.github/workflows/shorebird_ci.yaml
index 991d5c0..273c42a 100644
--- a/.github/workflows/shorebird_ci.yaml
+++ b/.github/workflows/shorebird_ci.yaml
@@ -19,6 +19,7 @@ jobs:
my_flutter_module: ${{ steps.filter.outputs.my_flutter_module }}
progressive_rollout_demo: ${{ steps.filter.outputs.progressive_rollout_demo }}
shorebird_fintech_wallet: ${{ steps.filter.outputs.shorebird_fintech_wallet }}
+ clear_skies: ${{ steps.filter.outputs.clear_skies }}
steps:
- uses: actions/checkout@v7
with:
@@ -42,6 +43,8 @@ jobs:
- progressive_rollout_demo/**
shorebird_fintech_wallet:
- shorebird_fintech_wallet/**
+ clear_skies:
+ - clear_skies/**
flavors:
needs: changes
@@ -108,6 +111,19 @@ jobs:
flutter_version: ""
has_integration_tests: false
+ clear_skies:
+ needs: changes
+ if: needs.changes.outputs.clear_skies == 'true'
+ uses: ./.github/workflows/_shorebird_ci_flutter.yaml
+ with:
+ package_name: clear_skies
+ package_path: clear_skies
+ has_bloc_lint: false
+ has_unit_tests: true
+ subpackages: ""
+ flutter_version: ""
+ has_integration_tests: false
+
required:
name: required
if: ${{ always() }}
@@ -118,6 +134,7 @@ jobs:
- my_flutter_module
- progressive_rollout_demo
- shorebird_fintech_wallet
+ - clear_skies
runs-on: ubuntu-latest
steps:
- name: Check required jobs
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..3725b1b
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,148 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "clear_skies",
+ "cwd": "clear_skies",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "clear_skies (profile mode)",
+ "cwd": "clear_skies",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "clear_skies (release mode)",
+ "cwd": "clear_skies",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ },
+ {
+ "name": "firebase_test",
+ "cwd": "firebase_test",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "firebase_test (profile mode)",
+ "cwd": "firebase_test",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "firebase_test (release mode)",
+ "cwd": "firebase_test",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ },
+ {
+ "name": "flavors",
+ "cwd": "flavors",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "flavors (profile mode)",
+ "cwd": "flavors",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "flavors (release mode)",
+ "cwd": "flavors",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ },
+ {
+ "name": "multi_dimensional_flavors",
+ "cwd": "multi_dimensional_flavors",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "multi_dimensional_flavors (profile mode)",
+ "cwd": "multi_dimensional_flavors",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "multi_dimensional_flavors (release mode)",
+ "cwd": "multi_dimensional_flavors",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ },
+ {
+ "name": "progressive_rollout_demo",
+ "cwd": "progressive_rollout_demo",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "progressive_rollout_demo (profile mode)",
+ "cwd": "progressive_rollout_demo",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "progressive_rollout_demo (release mode)",
+ "cwd": "progressive_rollout_demo",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ },
+ {
+ "name": "shorebird_fintech_wallet",
+ "cwd": "shorebird_fintech_wallet",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "shorebird_fintech_wallet (profile mode)",
+ "cwd": "shorebird_fintech_wallet",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "shorebird_fintech_wallet (release mode)",
+ "cwd": "shorebird_fintech_wallet",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ },
+ {
+ "name": "my_flutter_module",
+ "cwd": "add_to_app/my_flutter_module",
+ "request": "launch",
+ "type": "dart"
+ },
+ {
+ "name": "my_flutter_module (profile mode)",
+ "cwd": "add_to_app/my_flutter_module",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile"
+ },
+ {
+ "name": "my_flutter_module (release mode)",
+ "cwd": "add_to_app/my_flutter_module",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index dae0bcd..d820860 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,7 @@ Below is a list of the available samples. Each directory contains a specific use
| [**Add-to-App**](./add_to_app) | Shows how to seamlessly patch a Shorebird Flutter module embedded inside a native Android or iOS application. |
| [**Progressive Rollout Demo**](./progressive_rollout_demo) | Illustrates how to mitigate risk by performing percentage-based patch rollouts using Shorebird tracks. |
| [**Shorebird Fintech Wallet**](./shorebird_fintech_wallet) | An enterprise-grade example of a logic-level hotfix using a decoupled Reactive Store + BLoC architecture. |
+| [**Clear Skies**](./clear_skies) | A beautifully designed, premium weather application with dynamic glassmorphic UI. |
## 🛠 Getting Started
diff --git a/clear_skies/.gitignore b/clear_skies/.gitignore
new file mode 100644
index 0000000..3820a95
--- /dev/null
+++ b/clear_skies/.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-dependencies
+.pub-cache/
+.pub/
+/build/
+/coverage/
+
+# 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/clear_skies/.metadata b/clear_skies/.metadata
new file mode 100644
index 0000000..8abc22c
--- /dev/null
+++ b/clear_skies/.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: "9f9f19aaac8f092532e59f3447c501b4d4089efb"
+ channel: "[user-branch]"
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ base_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ - platform: android
+ create_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ base_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ - platform: ios
+ create_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ base_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ - platform: linux
+ create_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ base_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ - platform: macos
+ create_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ base_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ - platform: web
+ create_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ base_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ - platform: windows
+ create_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+ base_revision: 9f9f19aaac8f092532e59f3447c501b4d4089efb
+
+ # 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/clear_skies/FLUTTERCON_DEMO.md b/clear_skies/FLUTTERCON_DEMO.md
new file mode 100644
index 0000000..c2da710
--- /dev/null
+++ b/clear_skies/FLUTTERCON_DEMO.md
@@ -0,0 +1,86 @@
+# 🦅 Shorebird FlutterCon USA Live Demo Guide
+
+This guide provides step-by-step instructions for the team on stage to execute the **Clear Skies** live OTA update demo using Shorebird.
+
+---
+
+## 🛠️ Step 1: Pre-requisites & Setup (Before the Demo)
+
+1. **Clone the Repository**
+ Ensure you have the latest code pulled on your presentation machine:
+ ```bash
+ git clone https://github.com/shorebirdtech/samples.git
+ cd samples/clear_skies
+ flutter pub get
+ ```
+
+2. **Install the Buggy Release APK**
+ We have already pre-built the Shorebird release containing the intentional bugs and pushed it to the repository. The APK is located specifically at `samples/clear_skies/output/app-release.apk`.
+
+ You can either drag and drop this file into your emulator, or install it via terminal:
+ ```bash
+ # Make sure your device/emulator is connected
+ adb install output/app-release.apk
+ ```
+
+---
+
+## 🎤 Step 2: The Presentation (On Stage)
+
+### 1. Show the "Broken" Production App
+1. Open the **Unclear Skies** app on the projector.
+2. Point out the hilarious bugs we accidentally shipped to production:
+ - The app title says **"Unclear Skies - Discover the world's worst weather"**.
+ - The background is a glaring, toxic Neon Green and Bright Red gradient.
+ - Tap the **"Tokyo"** popular destination chip, and show how it incorrectly fetches the weather for **Antarctica**.
+3. **The Hook:** *"Normally, fixing this means a 2-day wait for App Store / Play Store review. Let's fix this right now with Shorebird."*
+
+### 2. Fix the Code Live
+Open your IDE (VS Code / Android Studio) and use **Global Search** for the keyword:
+👉 `TODO(Demo)`
+
+This will instantly take you to the three bugs. Revert them back to their correct state:
+
+- **Bug 1: `lib/core/constants/app_strings.dart`**
+ ```diff
+ - static const String appName = 'Unclear Skies';
+ + static const String appName = 'Clear Skies';
+
+ - static const String welcomeTitle = 'Welcome to Unclear Skies';
+ - static const String welcomeSubtitle = 'Discover the world\'s worst weather';
+ + static const String welcomeTitle = 'Welcome to Clear Skies';
+ + static const String welcomeSubtitle = 'Discover the world\'s weather';
+ ```
+
+- **Bug 2: `lib/core/constants/app_colors.dart`**
+ ```diff
+ - Color(0xFF39FF14), // Neon Green
+ - Color(0xFFF0FF00), // Toxic Yellow
+ - Color(0xFFFF0000), // Bright Red
+ + Color(0xFF4CA1AF), // Vibrant Sky Blue
+ + Color(0xFF90C8D1), // Mid Cyan
+ + Color(0xFFC4E0E5), // Soft Horizon Cyan
+ ```
+
+- **Bug 3: `lib/features/weather/ui/widgets/welcome_hero_widget.dart`**
+ ```diff
+ - widget.onCityTapped!('Antarctica');
+ + widget.onCityTapped!(city);
+ ```
+
+### 3. Push the Patch via Shorebird
+In your terminal, run the patch command to send the fix over the air:
+
+```bash
+shorebird patch android
+```
+*(Wait a few seconds for the patch to build and upload).*
+
+### 4. The Magic Moment 🪄
+1. Once the patch is published, go back to the demo device.
+2. Force-close the app (swipe it away from recents) and open it again.
+3. **Boom!** The toxic green is gone, the title is "Clear Skies", and Tokyo brings up Tokyo's weather. No app store update required!
+
+> [!TIP]
+> **Need to run the demo multiple times?**
+> If you need to practice or do the demo again for a different audience, you can easily downgrade the app on the device by uninstalling it and re-running the `adb install` command with the original buggy APK (Step 1.2), then reverting your local code changes back to the buggy state.
diff --git a/clear_skies/README.md b/clear_skies/README.md
new file mode 100644
index 0000000..362dbcc
--- /dev/null
+++ b/clear_skies/README.md
@@ -0,0 +1,48 @@
+# ⛅️ Clear Skies
+
+A beautifully designed, premium weather application built with Flutter.
+
+Clear Skies goes beyond standard weather apps by offering an immersive, dynamic, and glassmorphic UI. It focuses on providing a frictionless user experience with automatic location detection and gorgeous visual aesthetics.
+
+## ✨ Features
+
+- **Immersive Glassmorphic UI**: Experience a sleek, modern interface with frosted glass components (`BackdropFilter`) and refined typography (`GoogleFonts`).
+- **Dynamic Environments**: The app background is a rich, animated `LinearGradient` that automatically shifts between a vibrant daylight sky and a deep midnight blue depending on the weather's time of day.
+- **Zero-Click Onboarding**: Powered by `geolocator` and `geocoding`, the app automatically detects your location and reverse-geocodes your coordinates to instantly display your local weather upon launch.
+- **"Popular Destinations" Quick-Select**: If location is disabled, you are presented with elegant chips for popular global cities (Tokyo, London, New York, etc.) for instant 1-tap weather forecasts.
+- **Persistent Favorites**: Save your most-visited cities to a horizontal scrollable list. Your favorites are stored locally using `shared_preferences` so they're always there when you return.
+- **Responsive & Performant**: Highly optimized widget tree utilizing `BlocBuilder` and `ValueListenableBuilder` to ensure minimal rebuilds and buttery-smooth 60+ FPS performance.
+
+## 🛠 Tech Stack & Dependencies
+
+- **State Management**: [flutter_bloc](https://pub.dev/packages/flutter_bloc) for highly scalable, predictable, and robust state management.
+- **Location Services**:
+ - [geolocator](https://pub.dev/packages/geolocator) for highly accurate native GPS coordinates.
+ - [geocoding](https://pub.dev/packages/geocoding) for resolving coordinates into human-readable city names (Reverse Geocoding).
+- **Data Persistence**: [shared_preferences](https://pub.dev/packages/shared_preferences) for local key-value storage.
+- **Networking**: [http](https://pub.dev/packages/http) for fetching live data from the free, open-source [Open-Meteo API](https://open-meteo.com/).
+- **Design & Assets**:
+ - [google_fonts](https://pub.dev/packages/google_fonts) (using *Outfit* and *Inter* fonts).
+
+## 🚀 Getting Started
+
+1. Ensure you have the [Flutter SDK](https://docs.flutter.dev/get-started/install) installed.
+2. Clone this repository.
+3. Fetch the required dependencies:
+ ```bash
+ flutter pub get
+ ```
+4. **Important**: Because this app uses native plugins (`geolocator`, `geocoding`, `shared_preferences`), you must perform a full build if running for the first time:
+ - For iOS, run `cd ios && pod install` if your IDE doesn't do it automatically.
+5. Run the app:
+ ```bash
+ flutter run
+ ```
+
+## 🧪 Testing
+
+This project includes a robust suite of over 70+ automated widget and unit tests ensuring stability across the bloc layer and the UI.
+To run the tests:
+```bash
+flutter test
+```
diff --git a/clear_skies/analysis_options.yaml b/clear_skies/analysis_options.yaml
new file mode 100644
index 0000000..0d29021
--- /dev/null
+++ b/clear_skies/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/clear_skies/android/.gitignore b/clear_skies/android/.gitignore
new file mode 100644
index 0000000..be3943c
--- /dev/null
+++ b/clear_skies/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/clear_skies/android/app/build.gradle.kts b/clear_skies/android/app/build.gradle.kts
new file mode 100644
index 0000000..d6bc6bb
--- /dev/null
+++ b/clear_skies/android/app/build.gradle.kts
@@ -0,0 +1,45 @@
+plugins {
+ id("com.android.application")
+ // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
+ id("dev.flutter.flutter-gradle-plugin")
+}
+
+android {
+ namespace = "com.example.clear_skies"
+ compileSdk = flutter.compileSdkVersion
+ ndkVersion = flutter.ndkVersion
+
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
+ }
+
+ defaultConfig {
+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
+ applicationId = "com.example.clear_skies"
+ // 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")
+ }
+ }
+}
+
+kotlin {
+ compilerOptions {
+ jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
+ }
+}
+
+flutter {
+ source = "../.."
+}
diff --git a/clear_skies/android/app/src/debug/AndroidManifest.xml b/clear_skies/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..399f698
--- /dev/null
+++ b/clear_skies/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/clear_skies/android/app/src/main/AndroidManifest.xml b/clear_skies/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..52da7da
--- /dev/null
+++ b/clear_skies/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/clear_skies/android/app/src/main/kotlin/com/example/clear_skies/MainActivity.kt b/clear_skies/android/app/src/main/kotlin/com/example/clear_skies/MainActivity.kt
new file mode 100644
index 0000000..7806095
--- /dev/null
+++ b/clear_skies/android/app/src/main/kotlin/com/example/clear_skies/MainActivity.kt
@@ -0,0 +1,5 @@
+package com.example.clear_skies
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity : FlutterActivity()
diff --git a/clear_skies/android/app/src/main/res/drawable-v21/launch_background.xml b/clear_skies/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000..f74085f
--- /dev/null
+++ b/clear_skies/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/clear_skies/android/app/src/main/res/drawable/launch_background.xml b/clear_skies/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..304732f
--- /dev/null
+++ b/clear_skies/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/clear_skies/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/clear_skies/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..db77bb4
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-hdpi/launcher_icon.png b/clear_skies/android/app/src/main/res/mipmap-hdpi/launcher_icon.png
new file mode 100644
index 0000000..0943d77
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-hdpi/launcher_icon.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/clear_skies/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..17987b7
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-mdpi/launcher_icon.png b/clear_skies/android/app/src/main/res/mipmap-mdpi/launcher_icon.png
new file mode 100644
index 0000000..83d944e
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-mdpi/launcher_icon.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/clear_skies/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..09d4391
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png b/clear_skies/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png
new file mode 100644
index 0000000..fcc3841
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/clear_skies/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..d5f1c8d
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png b/clear_skies/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png
new file mode 100644
index 0000000..7459632
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/clear_skies/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..4d6372e
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/clear_skies/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png b/clear_skies/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png
new file mode 100644
index 0000000..8a48182
Binary files /dev/null and b/clear_skies/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png differ
diff --git a/clear_skies/android/app/src/main/res/values-night/styles.xml b/clear_skies/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000..06952be
--- /dev/null
+++ b/clear_skies/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/clear_skies/android/app/src/main/res/values/styles.xml b/clear_skies/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..cb1ef88
--- /dev/null
+++ b/clear_skies/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/clear_skies/android/app/src/profile/AndroidManifest.xml b/clear_skies/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..399f698
--- /dev/null
+++ b/clear_skies/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/clear_skies/android/build.gradle.kts b/clear_skies/android/build.gradle.kts
new file mode 100644
index 0000000..dbee657
--- /dev/null
+++ b/clear_skies/android/build.gradle.kts
@@ -0,0 +1,24 @@
+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/clear_skies/android/gradle.properties b/clear_skies/android/gradle.properties
new file mode 100644
index 0000000..e96108c
--- /dev/null
+++ b/clear_skies/android/gradle.properties
@@ -0,0 +1,6 @@
+org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
+android.useAndroidX=true
+# This newDsl flag was added by the Flutter template
+android.newDsl=false
+# This builtInKotlin flag was added by the Flutter template
+android.builtInKotlin=false
diff --git a/clear_skies/android/gradle/wrapper/gradle-wrapper.properties b/clear_skies/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..2d428bf
--- /dev/null
+++ b/clear_skies/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-9.1.0-all.zip
diff --git a/clear_skies/android/settings.gradle.kts b/clear_skies/android/settings.gradle.kts
new file mode 100644
index 0000000..c21f0c5
--- /dev/null
+++ b/clear_skies/android/settings.gradle.kts
@@ -0,0 +1,26 @@
+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 "9.0.1" apply false
+ id("org.jetbrains.kotlin.android") version "2.3.20" apply false
+}
+
+include(":app")
diff --git a/clear_skies/assets/icon/logo.png b/clear_skies/assets/icon/logo.png
new file mode 100644
index 0000000..563a9b7
Binary files /dev/null and b/clear_skies/assets/icon/logo.png differ
diff --git a/clear_skies/assets/images/premium_weather.png b/clear_skies/assets/images/premium_weather.png
new file mode 100644
index 0000000..7010a23
Binary files /dev/null and b/clear_skies/assets/images/premium_weather.png differ
diff --git a/clear_skies/ios/.gitignore b/clear_skies/ios/.gitignore
new file mode 100644
index 0000000..7a7f987
--- /dev/null
+++ b/clear_skies/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/clear_skies/ios/Flutter/AppFrameworkInfo.plist b/clear_skies/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 0000000..391a902
--- /dev/null
+++ b/clear_skies/ios/Flutter/AppFrameworkInfo.plist
@@ -0,0 +1,24 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ App
+ CFBundleIdentifier
+ io.flutter.flutter.app
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ App
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+
+
diff --git a/clear_skies/ios/Flutter/Debug.xcconfig b/clear_skies/ios/Flutter/Debug.xcconfig
new file mode 100644
index 0000000..592ceee
--- /dev/null
+++ b/clear_skies/ios/Flutter/Debug.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/clear_skies/ios/Flutter/Release.xcconfig b/clear_skies/ios/Flutter/Release.xcconfig
new file mode 100644
index 0000000..592ceee
--- /dev/null
+++ b/clear_skies/ios/Flutter/Release.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/clear_skies/ios/Runner.xcodeproj/project.pbxproj b/clear_skies/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..776b0a3
--- /dev/null
+++ b/clear_skies/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,644 @@
+// !$*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 */; };
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
+ 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */; };
+ 78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */ = {isa = PBXBuildFile; productRef = 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */; };
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin 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 = ""; };
+ 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 = ""; };
+ 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; };
+ 78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FlutterGeneratedPluginSwiftPackage; path = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; sourceTree = ""; };
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXGroup;
+ children = (
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
+ );
+ path = RunnerTests;
+ sourceTree = "";
+ };
+ 9740EEB11CF90186004384FC /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */,
+ 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 */,
+ );
+ 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 */,
+ 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */,
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
+ );
+ path = Runner;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 331C8080294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
+ buildPhases = (
+ 331C807D294A63A400263BE5 /* Sources */,
+ 331C807F294A63A400263BE5 /* Resources */,
+ );
+ 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 = (
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = Runner;
+ packageProductDependencies = (
+ 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */,
+ );
+ 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;
+ packageReferences = (
+ 781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */,
+ );
+ 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";
+ };
+ 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";
+ };
+/* 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 */,
+ 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift 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 = 13.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)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.clearSkies;
+ 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;
+ 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.example.clearSkies.RunnerTests;
+ 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;
+ 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.example.clearSkies.RunnerTests;
+ 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;
+ 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.example.clearSkies.RunnerTests;
+ 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 = AppIcon;
+ 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 = 13.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 = AppIcon;
+ 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 = 13.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)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.clearSkies;
+ 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)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.clearSkies;
+ 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 */
+
+/* Begin XCLocalSwiftPackageReference section */
+ 781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */ = {
+ isa = XCLocalSwiftPackageReference;
+ relativePath = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage;
+ };
+/* End XCLocalSwiftPackageReference section */
+
+/* Begin XCSwiftPackageProductDependency section */
+ 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */ = {
+ isa = XCSwiftPackageProductDependency;
+ productName = FlutterGeneratedPluginSwiftPackage;
+ };
+/* End XCSwiftPackageProductDependency section */
+ };
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
+}
diff --git a/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/clear_skies/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/clear_skies/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/clear_skies/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000..c3fedb2
--- /dev/null
+++ b/clear_skies/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,119 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/clear_skies/ios/Runner.xcworkspace/contents.xcworkspacedata b/clear_skies/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..1d526a1
--- /dev/null
+++ b/clear_skies/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/clear_skies/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/clear_skies/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/clear_skies/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/clear_skies/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/clear_skies/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/clear_skies/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/clear_skies/ios/Runner/AppDelegate.swift b/clear_skies/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000..c30b367
--- /dev/null
+++ b/clear_skies/ios/Runner/AppDelegate.swift
@@ -0,0 +1,16 @@
+import Flutter
+import UIKit
+
+@main
+@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate {
+ override func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
+ ) -> Bool {
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
+ }
+
+ func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) {
+ GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry)
+ }
+}
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..d36b1fa
--- /dev/null
+++ b/clear_skies/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/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 0000000..cb08634
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 0000000..f71333e
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 0000000..92759ce
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 0000000..06423cc
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 0000000..92b705f
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 0000000..78ac621
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 0000000..8a54ed7
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 0000000..92759ce
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 0000000..e5dffcc
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 0000000..616de73
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png
new file mode 100644
index 0000000..2a50e10
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png
new file mode 100644
index 0000000..6a1ac24
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png
new file mode 100644
index 0000000..5302693
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png
new file mode 100644
index 0000000..0e0a9c6
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 0000000..616de73
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 0000000..3614002
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png
new file mode 100644
index 0000000..0943d77
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png
new file mode 100644
index 0000000..7459632
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 0000000..9b20e4b
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 0000000..5d06a08
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 0000000..772ee62
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000..0bedcf2
--- /dev/null
+++ b/clear_skies/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/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/clear_skies/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 0000000..89c2725
--- /dev/null
+++ b/clear_skies/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/clear_skies/ios/Runner/Base.lproj/LaunchScreen.storyboard b/clear_skies/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..f2e259c
--- /dev/null
+++ b/clear_skies/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/clear_skies/ios/Runner/Base.lproj/Main.storyboard b/clear_skies/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 0000000..f3c2851
--- /dev/null
+++ b/clear_skies/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/clear_skies/ios/Runner/Info.plist b/clear_skies/ios/Runner/Info.plist
new file mode 100644
index 0000000..71cd29a
--- /dev/null
+++ b/clear_skies/ios/Runner/Info.plist
@@ -0,0 +1,72 @@
+
+
+
+
+ CADisableMinimumFrameDurationOnPhone
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ Clear Skies
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ clear_skies
+ CFBundlePackageType
+ APPL
+ NSLocationWhenInUseUsageDescription
+ This app needs access to location to automatically show your local weather.
+ CFBundleShortVersionString
+ $(FLUTTER_BUILD_NAME)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(FLUTTER_BUILD_NUMBER)
+ LSRequiresIPhoneOS
+
+ UIApplicationSceneManifest
+
+ UIApplicationSupportsMultipleScenes
+
+ UISceneConfigurations
+
+ UIWindowSceneSessionRoleApplication
+
+
+ UISceneClassName
+ UIWindowScene
+ UISceneConfigurationName
+ flutter
+ UISceneDelegateClassName
+ $(PRODUCT_MODULE_NAME).SceneDelegate
+ UISceneStoryboardFile
+ Main
+
+
+
+
+ UIApplicationSupportsIndirectInputEvents
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIMainStoryboardFile
+ Main
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+
+
diff --git a/clear_skies/ios/Runner/Runner-Bridging-Header.h b/clear_skies/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 0000000..308a2a5
--- /dev/null
+++ b/clear_skies/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/clear_skies/ios/Runner/SceneDelegate.swift b/clear_skies/ios/Runner/SceneDelegate.swift
new file mode 100644
index 0000000..b9ce8ea
--- /dev/null
+++ b/clear_skies/ios/Runner/SceneDelegate.swift
@@ -0,0 +1,6 @@
+import Flutter
+import UIKit
+
+class SceneDelegate: FlutterSceneDelegate {
+
+}
diff --git a/clear_skies/ios/RunnerTests/RunnerTests.swift b/clear_skies/ios/RunnerTests/RunnerTests.swift
new file mode 100644
index 0000000..86a7c3b
--- /dev/null
+++ b/clear_skies/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/clear_skies/lib/core/constants/app_colors.dart b/clear_skies/lib/core/constants/app_colors.dart
new file mode 100644
index 0000000..3c820a0
--- /dev/null
+++ b/clear_skies/lib/core/constants/app_colors.dart
@@ -0,0 +1,24 @@
+import 'package:flutter/material.dart';
+
+class AppColors {
+ static const Color backgroundDay = Color(0xFFE0F7FA);
+ static const Color backgroundNight = Color(0xFF102A43);
+ static const Color textDay = Color(0xFF333333);
+ static const Color textNight = Color(0xFFF0F4F8);
+ static const Color cardDay = Color(0x60FFFFFF); // More transparent
+ static const Color cardNight = Color(0x30000000);
+
+ // Immersive Gradients
+ // TODO(Demo): Revert this ugly toxic gradient back to sky blues during live patch!
+ static const List dayGradient = [
+ Color(0xFF39FF14), // Neon Green
+ Color(0xFFF0FF00), // Toxic Yellow
+ Color(0xFFFF0000), // Bright Red
+ ];
+
+ static const List nightGradient = [
+ Color(0xFF0F2027), // Deep Space Blue
+ Color(0xFF203A43), // Midnight Indigo
+ Color(0xFF2C5364), // Dark Teal
+ ];
+}
diff --git a/clear_skies/lib/core/constants/app_strings.dart b/clear_skies/lib/core/constants/app_strings.dart
new file mode 100644
index 0000000..359a21f
--- /dev/null
+++ b/clear_skies/lib/core/constants/app_strings.dart
@@ -0,0 +1,48 @@
+class AppStrings {
+ // TODO(Demo): Fix this typo during live patch!
+ static const String appName = 'Unclear Skies';
+ static const String searchHint = 'Search city...';
+
+ // TODO(Demo): Fix these strings during live patch!
+ static const String welcomeTitle = 'Welcome to Unclear Skies';
+ static const String welcomeSubtitle = 'Discover the world\'s worst weather';
+
+ static const String errorLocationFetch = 'Failed to fetch location data';
+ static const String errorCityNotFound = 'City not found';
+ static const String errorWeatherFetch = 'Failed to fetch weather data';
+ static const String errorUnknown = 'Unknown';
+
+ static const String weatherClearSky = 'Clear sky';
+ static const String weatherCloudy = 'Cloudy';
+ static const String weatherFoggy = 'Foggy';
+ static const String weatherDrizzle = 'Drizzle';
+ static const String weatherRain = 'Rain';
+ static const String weatherSnow = 'Snow';
+ static const String weatherShowers = 'Showers';
+ static const String weatherThunderstorm = 'Thunderstorm';
+
+ static const String suggestionClear =
+ 'Perfect weather! Grab your sunglasses.';
+ static const String suggestionCloudy =
+ 'A bit gloomy, but a great day for a walk.';
+ static const String suggestionRain =
+ 'Don\'t forget your umbrella! It\'s raining.';
+ static const String suggestionSnow = 'Bundle up! It\'s snowing outside.';
+ static const String suggestionThunderstorm =
+ 'Stay indoors! Thunderstorms ahead.';
+ static const String suggestionHot =
+ 'It\'s hot! Stay hydrated and wear sunscreen.';
+ static const String suggestionCold = 'It\'s freezing! Wear a heavy coat.';
+ static const String suggestionFoggy = 'Drive safely! Visibility is low.';
+ static const String suggestionDefault = 'Have a great day ahead!';
+
+ static const String smokeTestName = 'App smoke test';
+ static const String loadingMessage = 'Looking up at the sky...';
+
+ static String geoUrl(String city) =>
+ 'https://geocoding-api.open-meteo.com/v1/search?name=$city&count=1';
+ static String geoSearchUrl(String query) =>
+ 'https://geocoding-api.open-meteo.com/v1/search?name=$query&count=5';
+ static String weatherUrl(double lat, double lon) =>
+ 'https://api.open-meteo.com/v1/forecast?latitude=$lat&longitude=$lon¤t=temperature_2m,relative_humidity_2m,apparent_temperature,is_day,weather_code,wind_speed_10m&daily=weather_code,temperature_2m_max,temperature_2m_min&timezone=auto';
+}
diff --git a/clear_skies/lib/core/constants/constants.dart b/clear_skies/lib/core/constants/constants.dart
new file mode 100644
index 0000000..f27fddb
--- /dev/null
+++ b/clear_skies/lib/core/constants/constants.dart
@@ -0,0 +1,2 @@
+export 'app_colors.dart';
+export 'app_strings.dart';
diff --git a/clear_skies/lib/core/core.dart b/clear_skies/lib/core/core.dart
new file mode 100644
index 0000000..368fc98
--- /dev/null
+++ b/clear_skies/lib/core/core.dart
@@ -0,0 +1,3 @@
+export 'constants/constants.dart';
+export 'widgets/widgets.dart';
+export 'weather_helper.dart';
diff --git a/clear_skies/lib/core/weather_helper.dart b/clear_skies/lib/core/weather_helper.dart
new file mode 100644
index 0000000..6c201b4
--- /dev/null
+++ b/clear_skies/lib/core/weather_helper.dart
@@ -0,0 +1,45 @@
+import 'package:clear_skies/core/core.dart';
+
+class WeatherHelper {
+ static String getWeatherIcon(int code) {
+ if (code == 0) return '☀️'; // Clear sky
+ if (code == 1 || code == 2 || code == 3) {
+ return '🌤️'; // Mainly clear, partly cloudy, and overcast
+ }
+ if (code >= 45 && code <= 48) return '🌁'; // Fog
+ if (code >= 51 && code <= 55) return '🌧️'; // Drizzle
+ if (code >= 61 && code <= 65) return '🌧️'; // Rain
+ if (code >= 71 && code <= 77) return '❄️'; // Snow
+ if (code >= 80 && code <= 82) return '🌦️'; // Rain showers
+ if (code >= 95 && code <= 99) return '⛈️'; // Thunderstorm
+ return '🌈'; // Default
+ }
+
+ static String getWeatherDescription(int code) {
+ if (code == 0) return AppStrings.weatherClearSky;
+ if (code == 1 || code == 2 || code == 3) return AppStrings.weatherCloudy;
+ if (code >= 45 && code <= 48) return AppStrings.weatherFoggy;
+ if (code >= 51 && code <= 55) return AppStrings.weatherDrizzle;
+ if (code >= 61 && code <= 65) return AppStrings.weatherRain;
+ if (code >= 71 && code <= 77) return AppStrings.weatherSnow;
+ if (code >= 80 && code <= 82) return AppStrings.weatherShowers;
+ if (code >= 95 && code <= 99) return AppStrings.weatherThunderstorm;
+ return AppStrings.errorUnknown;
+ }
+
+ static String getWeatherSuggestion(int code, double temperature) {
+ if (temperature > 35) return AppStrings.suggestionHot;
+ if (temperature < 5) return AppStrings.suggestionCold;
+
+ if (code == 0) return AppStrings.suggestionClear;
+ if (code == 1 || code == 2 || code == 3) return AppStrings.suggestionCloudy;
+ if (code >= 45 && code <= 48) return AppStrings.suggestionFoggy;
+ if (code >= 51 && code <= 65 || code >= 80 && code <= 82) {
+ return AppStrings.suggestionRain;
+ }
+ if (code >= 71 && code <= 77) return AppStrings.suggestionSnow;
+ if (code >= 95 && code <= 99) return AppStrings.suggestionThunderstorm;
+
+ return AppStrings.suggestionDefault;
+ }
+}
diff --git a/clear_skies/lib/core/widgets/creative_loading_widget.dart b/clear_skies/lib/core/widgets/creative_loading_widget.dart
new file mode 100644
index 0000000..b607aa6
--- /dev/null
+++ b/clear_skies/lib/core/widgets/creative_loading_widget.dart
@@ -0,0 +1,65 @@
+import 'package:flutter/material.dart';
+import 'package:google_fonts/google_fonts.dart';
+import 'package:clear_skies/core/core.dart';
+
+class CreativeLoadingWidget extends StatefulWidget {
+ final Color textColor;
+ const CreativeLoadingWidget({super.key, required this.textColor});
+
+ @override
+ State createState() => _CreativeLoadingWidgetState();
+}
+
+class _CreativeLoadingWidgetState extends State
+ with SingleTickerProviderStateMixin {
+ late AnimationController _controller;
+ late Animation _animation;
+
+ @override
+ void initState() {
+ super.initState();
+ _controller = AnimationController(
+ vsync: this,
+ duration: const Duration(milliseconds: 800),
+ )..repeat(reverse: true);
+
+ _animation = Tween(
+ begin: -10,
+ end: 10,
+ ).animate(CurvedAnimation(parent: _controller, curve: Curves.easeInOut));
+ }
+
+ @override
+ void dispose() {
+ _controller.dispose();
+ super.dispose();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return Column(
+ mainAxisAlignment: MainAxisAlignment.center,
+ children: [
+ AnimatedBuilder(
+ animation: _animation,
+ builder: (context, child) {
+ return Transform.translate(
+ offset: Offset(0, _animation.value),
+ child: child,
+ );
+ },
+ child: const Text('☁️', style: TextStyle(fontSize: 60)),
+ ),
+ const SizedBox(height: 24),
+ Text(
+ AppStrings.loadingMessage,
+ style: GoogleFonts.outfit(
+ fontSize: 20,
+ color: widget.textColor,
+ fontWeight: FontWeight.w300,
+ ),
+ ),
+ ],
+ );
+ }
+}
diff --git a/clear_skies/lib/core/widgets/widgets.dart b/clear_skies/lib/core/widgets/widgets.dart
new file mode 100644
index 0000000..eff0428
--- /dev/null
+++ b/clear_skies/lib/core/widgets/widgets.dart
@@ -0,0 +1 @@
+export 'creative_loading_widget.dart';
diff --git a/clear_skies/lib/features/favorites/bloc/favorites_bloc.dart b/clear_skies/lib/features/favorites/bloc/favorites_bloc.dart
new file mode 100644
index 0000000..57df888
--- /dev/null
+++ b/clear_skies/lib/features/favorites/bloc/favorites_bloc.dart
@@ -0,0 +1,97 @@
+import 'package:flutter_bloc/flutter_bloc.dart';
+import 'package:clear_skies/features/features.dart';
+
+export 'favorites_event.dart';
+export 'favorites_state.dart';
+
+class FavoritesBloc extends Bloc {
+ final WeatherRepository weatherRepository;
+ final FavoritesRepository favoritesRepository;
+
+ FavoritesBloc({
+ required this.weatherRepository,
+ required this.favoritesRepository,
+ }) : super(const FavoritesState()) {
+ on(_onLoadFavorites);
+ on(_onAddFavorite);
+ on(_onRemoveFavorite);
+ }
+
+ Future _onLoadFavorites(
+ LoadFavorites event,
+ Emitter emit,
+ ) async {
+ emit(state.copyWith(status: FavoritesStatus.loading));
+ try {
+ final favoriteCities = await favoritesRepository.getFavorites();
+ final List loadedFavorites = [];
+ for (final city in favoriteCities) {
+ try {
+ final weather = await weatherRepository.getWeather(city);
+ loadedFavorites.add(weather);
+ } catch (_) {
+ // If one fails, skip it
+ }
+ }
+ emit(
+ state.copyWith(
+ status: FavoritesStatus.loaded,
+ favorites: loadedFavorites,
+ ),
+ );
+ } catch (e) {
+ emit(
+ state.copyWith(
+ status: FavoritesStatus.error,
+ errorMessage: e.toString(),
+ ),
+ );
+ }
+ }
+
+ Future _onAddFavorite(
+ AddFavorite event,
+ Emitter emit,
+ ) async {
+ try {
+ final favoriteCities = await favoritesRepository.getFavorites();
+ final cityName = event.weather.cityName;
+ if (!favoriteCities.contains(cityName)) {
+ favoriteCities.add(cityName);
+
+ if (state.status == FavoritesStatus.loaded) {
+ final currentFavorites = state.favorites;
+ emit(state.copyWith(favorites: [...currentFavorites, event.weather]));
+ } else {
+ add(LoadFavorites());
+ }
+
+ await favoritesRepository.saveFavorites(favoriteCities);
+ }
+ } catch (_) {}
+ }
+
+ Future _onRemoveFavorite(
+ RemoveFavorite event,
+ Emitter emit,
+ ) async {
+ try {
+ final favoriteCities = await favoritesRepository.getFavorites();
+ if (favoriteCities.contains(event.cityName)) {
+ favoriteCities.remove(event.cityName);
+
+ if (state.status == FavoritesStatus.loaded) {
+ final currentFavorites = state.favorites;
+ final updatedFavorites = currentFavorites
+ .where((w) => w.cityName != event.cityName)
+ .toList();
+ emit(state.copyWith(favorites: updatedFavorites));
+ } else {
+ add(LoadFavorites());
+ }
+
+ await favoritesRepository.saveFavorites(favoriteCities);
+ }
+ } catch (_) {}
+ }
+}
diff --git a/clear_skies/lib/features/favorites/bloc/favorites_event.dart b/clear_skies/lib/features/favorites/bloc/favorites_event.dart
new file mode 100644
index 0000000..0447d55
--- /dev/null
+++ b/clear_skies/lib/features/favorites/bloc/favorites_event.dart
@@ -0,0 +1,29 @@
+import 'package:clear_skies/features/features.dart';
+import 'package:equatable/equatable.dart';
+
+abstract class FavoritesEvent extends Equatable {
+ const FavoritesEvent();
+
+ @override
+ List