[
  {
    "path": ".github/workflows/main.yml",
    "content": "name: Flutter CI\n\n# This workflow is triggered on pushes to the repository.\n\non:\n  push:\n    branches:\n    - master\n    \n# on: push    # Default will running for every branch.\n    \njobs:\n  build:\n    # This job will run on ubuntu virtual machine\n    runs-on: ubuntu-latest\n    steps:\n    \n    # Setup Java environment in order to build the Android app.\n    - uses: actions/checkout@v1\n    - uses: actions/setup-java@v1\n      with:\n        java-version: '12.x'\n    \n    # Setup the flutter environment.\n    - uses: subosito/flutter-action@v1\n      with:\n        channel: 'stable'\n        # flutter-version: '1.12.x' # you can also specify exact version of flutter\n    \n    # Get flutter dependencies.\n    - run: flutter pub get\n    \n    # Statically analyze the Dart code for any errors.\n    - run: flutter analyze .\n    \n    # Build apk.\n    - run: flutter build apk\n    \n    # Upload generated apk to the artifacts.\n    - uses: actions/upload-artifact@v1\n      with:\n        name: release-apk\n        path: build/app/outputs/apk/release/app-release.apk\n"
  },
  {
    "path": ".gitignore",
    "content": "# Miscellaneous\n*.class\n*.log\n*.pyc\n*.swp\n.DS_Store\n.atom/\n.buildlog/\n.history\n.svn/\n\n# IntelliJ related\n*.iml\n*.ipr\n*.iws\n.idea/\n\n# The .vscode folder contains launch configuration and tasks you configure in\n# VS Code which you may wish to be included in version control, so this line\n# is commented out by default.\n#.vscode/\n\n# Flutter/Dart/Pub related\n**/doc/api/\n.dart_tool/\n.flutter-plugins\n.flutter-plugins-dependencies\n.packages\n.pub-cache/\n.pub/\n/build/\n\n# Web related\nlib/generated_plugin_registrant.dart\n\n# Symbolication related\napp.*.symbols\n\n# Obfuscation related\napp.*.map.json\n\n# Exceptions to above rules.\n!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages\n"
  },
  {
    "path": ".metadata",
    "content": "# This file tracks properties of this Flutter project.\n# Used by Flutter tool to assess capabilities and perform upgrades etc.\n#\n# This file should be version controlled and should not be manually edited.\n\nversion:\n  revision: 1ad9baa8b99a2897c20f9e6e54d3b9b359ade314\n  channel: stable\n\nproject_type: app\n"
  },
  {
    "path": "README.md",
    "content": "# Weatherflut\n\nEs un proyecto creado en el live streaming que se hizo en el canal de Leonidas Esteban, luego fue terminado en el canal de The Dart Side.\n\nContributors:\n\n- Diego Velásquez - @diegoveloper\n- Argel Bejarano - @ArkangelB\n- Leonidas Esteban - @LeonidasEsteban\n- Mauricio Lopez (UX) - https://www.behance.net/designylove\n\n## Instalador\n\nPueden descargar el instalador aquí: https://drive.google.com/file/d/1h5r6S7lg6kmy4wwwepnAyTryvmos2KHJ/view?usp=sharing"
  },
  {
    "path": "android/.gitignore",
    "content": "gradle-wrapper.jar\n/.gradle\n/captures/\n/gradlew\n/gradlew.bat\n/local.properties\nGeneratedPluginRegistrant.java\n"
  },
  {
    "path": "android/app/build.gradle",
    "content": "def localProperties = new Properties()\ndef localPropertiesFile = rootProject.file('local.properties')\nif (localPropertiesFile.exists()) {\n    localPropertiesFile.withReader('UTF-8') { reader ->\n        localProperties.load(reader)\n    }\n}\n\ndef flutterRoot = localProperties.getProperty('flutter.sdk')\nif (flutterRoot == null) {\n    throw new GradleException(\"Flutter SDK not found. Define location with flutter.sdk in the local.properties file.\")\n}\n\ndef flutterVersionCode = localProperties.getProperty('flutter.versionCode')\nif (flutterVersionCode == null) {\n    flutterVersionCode = '1'\n}\n\ndef flutterVersionName = localProperties.getProperty('flutter.versionName')\nif (flutterVersionName == null) {\n    flutterVersionName = '1.0'\n}\n\napply plugin: 'com.android.application'\napply plugin: 'kotlin-android'\napply from: \"$flutterRoot/packages/flutter_tools/gradle/flutter.gradle\"\n\nandroid {\n    compileSdkVersion 28\n\n    sourceSets {\n        main.java.srcDirs += 'src/main/kotlin'\n    }\n\n    lintOptions {\n        disable 'InvalidPackage'\n    }\n\n    defaultConfig {\n        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).\n        applicationId \"com.diegoveloper.weatherflut\"\n        minSdkVersion 16\n        targetSdkVersion 28\n        versionCode flutterVersionCode.toInteger()\n        versionName flutterVersionName\n    }\n\n    buildTypes {\n        release {\n            // TODO: Add your own signing config for the release build.\n            // Signing with the debug keys for now, so `flutter run --release` works.\n            signingConfig signingConfigs.debug\n        }\n    }\n}\n\nflutter {\n    source '../..'\n}\n\ndependencies {\n    implementation \"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version\"\n}\n"
  },
  {
    "path": "android/app/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.diegoveloper.weatherflut\">\n \n <uses-permission android:name=\"android.permission.INTERNET\"/>\n\n    <application\n        android:name=\"io.flutter.app.FlutterApplication\"\n        android:label=\"weatherflut\"\n        android:icon=\"@mipmap/launcher_icon\">\n        <activity\n            android:name=\".MainActivity\"\n            android:launchMode=\"singleTop\"\n            android:theme=\"@style/LaunchTheme\"\n            android:configChanges=\"orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode\"\n            android:hardwareAccelerated=\"true\"\n            android:windowSoftInputMode=\"adjustResize\">\n            <!-- Specifies an Android theme to apply to this Activity as soon as\n                 the Android process has started. This theme is visible to the user\n                 while the Flutter UI initializes. After that, this theme continues\n                 to determine the Window background behind the Flutter UI. -->\n            <meta-data\n              android:name=\"io.flutter.embedding.android.NormalTheme\"\n              android:resource=\"@style/NormalTheme\"\n              />\n            <!-- Displays an Android View that continues showing the launch screen\n                 Drawable until Flutter paints its first frame, then this splash\n                 screen fades out. A splash screen is useful to avoid any visual\n                 gap between the end of Android's launch screen and the painting of\n                 Flutter's first frame. -->\n            <meta-data\n              android:name=\"io.flutter.embedding.android.SplashScreenDrawable\"\n              android:resource=\"@drawable/launch_background\"\n              />\n            <intent-filter>\n                <action android:name=\"android.intent.action.MAIN\"/>\n                <category android:name=\"android.intent.category.LAUNCHER\"/>\n            </intent-filter>\n        </activity>\n        <!-- Don't delete the meta-data below.\n             This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->\n        <meta-data\n            android:name=\"flutterEmbedding\"\n            android:value=\"2\" />\n    </application>\n</manifest>"
  },
  {
    "path": "android/app/src/main/kotlin/com/diegoveloper/weatherflut/MainActivity.kt",
    "content": "package com.diegoveloper.weatherflut\n\nimport io.flutter.embedding.android.FlutterActivity\n\nclass MainActivity: FlutterActivity() {\n}\n"
  },
  {
    "path": "android/app/src/main/res/drawable/launch_background.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Modify this file to customize your launch splash screen -->\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"@android:color/white\" />\n\n    <!-- You can insert your own image assets here -->\n    <!-- <item>\n        <bitmap\n            android:gravity=\"center\"\n            android:src=\"@mipmap/launch_image\" />\n    </item> -->\n</layer-list>\n"
  },
  {
    "path": "android/app/src/main/res/values/styles.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- Theme applied to the Android Window while the process is starting -->\n    <style name=\"LaunchTheme\" parent=\"@android:style/Theme.Black.NoTitleBar\">\n        <!-- Show a splash screen on the activity. Automatically removed when\n             Flutter draws its first frame -->\n        <item name=\"android:windowBackground\">@drawable/launch_background</item>\n    </style>\n    <!-- Theme applied to the Android Window as soon as the process has started.\n         This theme determines the color of the Android Window while your\n         Flutter UI initializes, as well as behind your Flutter UI while its\n         running.\n         \n         This Theme is only used starting with V2 of Flutter's Android embedding. -->\n    <style name=\"NormalTheme\" parent=\"@android:style/Theme.Black.NoTitleBar\">\n        <item name=\"android:windowBackground\">@android:color/white</item>\n    </style>\n</resources>\n"
  },
  {
    "path": "android/build.gradle",
    "content": "buildscript {\n    ext.kotlin_version = '1.3.50'\n    repositories {\n        google()\n        jcenter()\n    }\n\n    dependencies {\n        classpath 'com.android.tools.build:gradle:3.5.0'\n        classpath \"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version\"\n    }\n}\n\nallprojects {\n    repositories {\n        google()\n        jcenter()\n    }\n}\n\nrootProject.buildDir = '../build'\nsubprojects {\n    project.buildDir = \"${rootProject.buildDir}/${project.name}\"\n}\nsubprojects {\n    project.evaluationDependsOn(':app')\n}\n\ntask clean(type: Delete) {\n    delete rootProject.buildDir\n}\n"
  },
  {
    "path": "android/gradle/wrapper/gradle-wrapper.properties",
    "content": "#Fri Jun 23 08:50:38 CEST 2017\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-5.6.2-all.zip\n"
  },
  {
    "path": "android/gradle.properties",
    "content": "org.gradle.jvmargs=-Xmx1536M\nandroid.enableR8=true\nandroid.useAndroidX=true\nandroid.enableJetifier=true\n"
  },
  {
    "path": "android/settings.gradle",
    "content": "// Copyright 2014 The Flutter Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\ninclude ':app'\n\ndef localPropertiesFile = new File(rootProject.projectDir, \"local.properties\")\ndef properties = new Properties()\n\nassert localPropertiesFile.exists()\nlocalPropertiesFile.withReader(\"UTF-8\") { reader -> properties.load(reader) }\n\ndef flutterSdkPath = properties.getProperty(\"flutter.sdk\")\nassert flutterSdkPath != null, \"flutter.sdk not set in local.properties\"\napply from: \"$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle\"\n"
  },
  {
    "path": "ios/.gitignore",
    "content": "*.mode1v3\n*.mode2v3\n*.moved-aside\n*.pbxuser\n*.perspectivev3\n**/*sync/\n.sconsign.dblite\n.tags*\n**/.vagrant/\n**/DerivedData/\nIcon?\n**/Pods/\n**/.symlinks/\nprofile\nxcuserdata\n**/.generated/\nFlutter/App.framework\nFlutter/Flutter.framework\nFlutter/Flutter.podspec\nFlutter/Generated.xcconfig\nFlutter/app.flx\nFlutter/app.zip\nFlutter/flutter_assets/\nFlutter/flutter_export_environment.sh\nServiceDefinitions.json\nRunner/GeneratedPluginRegistrant.*\n\n# Exceptions to above rules.\n!default.mode1v3\n!default.mode2v3\n!default.pbxuser\n!default.perspectivev3\n"
  },
  {
    "path": "ios/Flutter/AppFrameworkInfo.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>$(DEVELOPMENT_LANGUAGE)</string>\n  <key>CFBundleExecutable</key>\n  <string>App</string>\n  <key>CFBundleIdentifier</key>\n  <string>io.flutter.flutter.app</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>App</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>1.0</string>\n  <key>MinimumOSVersion</key>\n  <string>8.0</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "ios/Flutter/Debug.xcconfig",
    "content": "#include \"Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig\"\n#include \"Generated.xcconfig\"\n"
  },
  {
    "path": "ios/Flutter/Release.xcconfig",
    "content": "#include \"Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig\"\n#include \"Generated.xcconfig\"\n"
  },
  {
    "path": "ios/Podfile",
    "content": "# Uncomment this line to define a global platform for your project\n# platform :ios, '9.0'\n\n# CocoaPods analytics sends network stats synchronously affecting flutter build latency.\nENV['COCOAPODS_DISABLE_STATS'] = 'true'\n\nproject 'Runner', {\n  'Debug' => :debug,\n  'Profile' => :release,\n  'Release' => :release,\n}\n\ndef parse_KV_file(file, separator='=')\n  file_abs_path = File.expand_path(file)\n  if !File.exists? file_abs_path\n    return [];\n  end\n  generated_key_values = {}\n  skip_line_start_symbols = [\"#\", \"/\"]\n  File.foreach(file_abs_path) do |line|\n    next if skip_line_start_symbols.any? { |symbol| line =~ /^\\s*#{symbol}/ }\n    plugin = line.split(pattern=separator)\n    if plugin.length == 2\n      podname = plugin[0].strip()\n      path = plugin[1].strip()\n      podpath = File.expand_path(\"#{path}\", file_abs_path)\n      generated_key_values[podname] = podpath\n    else\n      puts \"Invalid plugin specification: #{line}\"\n    end\n  end\n  generated_key_values\nend\n\ntarget 'Runner' do\n  use_frameworks!\n  use_modular_headers!\n\n  # Flutter Pod\n\n  copied_flutter_dir = File.join(__dir__, 'Flutter')\n  copied_framework_path = File.join(copied_flutter_dir, 'Flutter.framework')\n  copied_podspec_path = File.join(copied_flutter_dir, 'Flutter.podspec')\n  unless File.exist?(copied_framework_path) && File.exist?(copied_podspec_path)\n    # Copy Flutter.framework and Flutter.podspec to Flutter/ to have something to link against if the xcode backend script has not run yet.\n    # That script will copy the correct debug/profile/release version of the framework based on the currently selected Xcode configuration.\n    # CocoaPods will not embed the framework on pod install (before any build phases can generate) if the dylib does not exist.\n\n    generated_xcode_build_settings_path = File.join(copied_flutter_dir, 'Generated.xcconfig')\n    unless File.exist?(generated_xcode_build_settings_path)\n      raise \"Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first\"\n    end\n    generated_xcode_build_settings = parse_KV_file(generated_xcode_build_settings_path)\n    cached_framework_dir = generated_xcode_build_settings['FLUTTER_FRAMEWORK_DIR'];\n\n    unless File.exist?(copied_framework_path)\n      FileUtils.cp_r(File.join(cached_framework_dir, 'Flutter.framework'), copied_flutter_dir)\n    end\n    unless File.exist?(copied_podspec_path)\n      FileUtils.cp(File.join(cached_framework_dir, 'Flutter.podspec'), copied_flutter_dir)\n    end\n  end\n\n  # Keep pod path relative so it can be checked into Podfile.lock.\n  pod 'Flutter', :path => 'Flutter'\n\n  # Plugin Pods\n\n  # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock\n  # referring to absolute paths on developers' machines.\n  system('rm -rf .symlinks')\n  system('mkdir -p .symlinks/plugins')\n  plugin_pods = parse_KV_file('../.flutter-plugins')\n  plugin_pods.each do |name, path|\n    symlink = File.join('.symlinks', 'plugins', name)\n    File.symlink(path, symlink)\n    pod name, :path => File.join(symlink, 'ios')\n  end\nend\n\npost_install do |installer|\n  installer.pods_project.targets.each do |target|\n    target.build_configurations.each do |config|\n      config.build_settings['ENABLE_BITCODE'] = 'NO'\n    end\n  end\nend\n"
  },
  {
    "path": "ios/Runner/AppDelegate.swift",
    "content": "import UIKit\nimport Flutter\n\n@UIApplicationMain\n@objc class AppDelegate: FlutterAppDelegate {\n  override func application(\n    _ application: UIApplication,\n    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?\n  ) -> Bool {\n    GeneratedPluginRegistrant.register(with: self)\n    return super.application(application, didFinishLaunchingWithOptions: launchOptions)\n  }\n}\n"
  },
  {
    "path": "ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-20x20@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-20x20@3x.png\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-29x29@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-29x29@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-29x29@3x.png\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"size\" : \"40x40\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-40x40@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"40x40\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-40x40@3x.png\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"size\" : \"60x60\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-60x60@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"60x60\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-60x60@3x.png\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-20x20@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-20x20@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-29x29@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"29x29\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-29x29@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"40x40\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-40x40@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"40x40\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-40x40@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"76x76\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-76x76@1x.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"size\" : \"76x76\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-76x76@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"83.5x83.5\",\n      \"idiom\" : \"ipad\",\n      \"filename\" : \"Icon-App-83.5x83.5@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"size\" : \"1024x1024\",\n      \"idiom\" : \"ios-marketing\",\n      \"filename\" : \"Icon-App-1024x1024@1x.png\",\n      \"scale\" : \"1x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"LaunchImage.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"LaunchImage@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"LaunchImage@3x.png\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md",
    "content": "# Launch Screen Assets\n\nYou can customize the launch screen with your own desired assets by replacing the image files in this directory.\n\nYou 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."
  },
  {
    "path": "ios/Runner/Base.lproj/LaunchScreen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"12121\" systemVersion=\"16G29\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"12089\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"EHf-IW-A2E\">\n            <objects>\n                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"Ydg-fD-yQy\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"xbc-2k-c8Z\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <imageView opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" image=\"LaunchImage\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YRO-k0-Ey4\">\n                            </imageView>\n                        </subviews>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <constraints>\n                            <constraint firstItem=\"YRO-k0-Ey4\" firstAttribute=\"centerX\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"centerX\" id=\"1a2-6s-vTC\"/>\n                            <constraint firstItem=\"YRO-k0-Ey4\" firstAttribute=\"centerY\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"centerY\" id=\"4X2-HB-R7a\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"53\" y=\"375\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"LaunchImage\" width=\"168\" height=\"185\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "ios/Runner/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"10117\" systemVersion=\"15F34\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" initialViewController=\"BYZ-38-t0r\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"10085\"/>\n    </dependencies>\n    <scenes>\n        <!--Flutter View Controller-->\n        <scene sceneID=\"tne-QT-ifu\">\n            <objects>\n                <viewController id=\"BYZ-38-t0r\" customClass=\"FlutterViewController\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"y3c-jy-aDJ\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"wfy-db-euE\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"8bC-Xf-vdC\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"600\" height=\"600\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"dkx-z0-nzr\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "ios/Runner/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>$(DEVELOPMENT_LANGUAGE)</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>weatherflut</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>$(FLUTTER_BUILD_NAME)</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>$(FLUTTER_BUILD_NUMBER)</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations~ipad</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationPortraitUpsideDown</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n\t<key>UIViewControllerBasedStatusBarAppearance</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "ios/Runner/Runner-Bridging-Header.h",
    "content": "#import \"GeneratedPluginRegistrant.h\"\n"
  },
  {
    "path": "ios/Runner.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };\n\t\t3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };\n\t\t43E5923BA10607E6D4FFCA76 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA1CDDBB073BAFE5C5A01993 /* Pods_Runner.framework */; };\n\t\t74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };\n\t\t97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };\n\t\t97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };\n\t\t97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXCopyFilesBuildPhase section */\n\t\t9705A1C41CF9048500538489 /* Embed Frameworks */ = {\n\t\t\tisa = PBXCopyFilesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tdstPath = \"\";\n\t\t\tdstSubfolderSpec = 10;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tname = \"Embed Frameworks\";\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXCopyFilesBuildPhase section */\n\n/* Begin PBXFileReference section */\n\t\t1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = \"<group>\"; };\n\t\t1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = \"<group>\"; };\n\t\t17276DA01BC6E874D3901981 /* 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 = \"<group>\"; };\n\t\t31EBE276798C6A168C0982AD /* 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 = \"<group>\"; };\n\t\t3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = \"<group>\"; };\n\t\t68469A604C9FFF0B3F46609D /* 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 = \"<group>\"; };\n\t\t74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"Runner-Bridging-Header.h\"; sourceTree = \"<group>\"; };\n\t\t74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = \"<group>\"; };\n\t\t9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = \"<group>\"; };\n\t\t9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = \"<group>\"; };\n\t\t97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\t97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = \"<group>\"; };\n\t\t97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tCA1CDDBB073BAFE5C5A01993 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t97C146EB1CF9000F007C117D /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t43E5923BA10607E6D4FFCA76 /* Pods_Runner.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t1D7D341D7F00D0CB01B1087C /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCA1CDDBB073BAFE5C5A01993 /* Pods_Runner.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t874BF1BFF8721B8E08D6A53F /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t68469A604C9FFF0B3F46609D /* Pods-Runner.debug.xcconfig */,\n\t\t\t\t17276DA01BC6E874D3901981 /* Pods-Runner.release.xcconfig */,\n\t\t\t\t31EBE276798C6A168C0982AD /* Pods-Runner.profile.xcconfig */,\n\t\t\t);\n\t\t\tname = Pods;\n\t\t\tpath = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9740EEB11CF90186004384FC /* Flutter */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,\n\t\t\t\t9740EEB21CF90195004384FC /* Debug.xcconfig */,\n\t\t\t\t7AFA3C8E1D35360C0083082E /* Release.xcconfig */,\n\t\t\t\t9740EEB31CF90195004384FC /* Generated.xcconfig */,\n\t\t\t);\n\t\t\tname = Flutter;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146E51CF9000F007C117D = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9740EEB11CF90186004384FC /* Flutter */,\n\t\t\t\t97C146F01CF9000F007C117D /* Runner */,\n\t\t\t\t97C146EF1CF9000F007C117D /* Products */,\n\t\t\t\t874BF1BFF8721B8E08D6A53F /* Pods */,\n\t\t\t\t1D7D341D7F00D0CB01B1087C /* Frameworks */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146EF1CF9000F007C117D /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t97C146EE1CF9000F007C117D /* Runner.app */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146F01CF9000F007C117D /* Runner */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t97C146FA1CF9000F007C117D /* Main.storyboard */,\n\t\t\t\t97C146FD1CF9000F007C117D /* Assets.xcassets */,\n\t\t\t\t97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,\n\t\t\t\t97C147021CF9000F007C117D /* Info.plist */,\n\t\t\t\t97C146F11CF9000F007C117D /* Supporting Files */,\n\t\t\t\t1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,\n\t\t\t\t1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,\n\t\t\t\t74858FAE1ED2DC5600515810 /* AppDelegate.swift */,\n\t\t\t\t74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,\n\t\t\t);\n\t\t\tpath = Runner;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146F11CF9000F007C117D /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t97C146ED1CF9000F007C117D /* Runner */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget \"Runner\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tB12BBDEAA8C70FC5255EF803 /* [CP] Check Pods Manifest.lock */,\n\t\t\t\t9740EEB61CF901F6004384FC /* Run Script */,\n\t\t\t\t97C146EA1CF9000F007C117D /* Sources */,\n\t\t\t\t97C146EB1CF9000F007C117D /* Frameworks */,\n\t\t\t\t97C146EC1CF9000F007C117D /* Resources */,\n\t\t\t\t9705A1C41CF9048500538489 /* Embed Frameworks */,\n\t\t\t\t3B06AD1E1E4923F5004D2608 /* Thin Binary */,\n\t\t\t\t490145E608268371E0005396 /* [CP] Embed Pods Frameworks */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = Runner;\n\t\t\tproductName = Runner;\n\t\t\tproductReference = 97C146EE1CF9000F007C117D /* Runner.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t97C146E61CF9000F007C117D /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 1020;\n\t\t\t\tORGANIZATIONNAME = \"\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t97C146ED1CF9000F007C117D = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 7.3.1;\n\t\t\t\t\t\tLastSwiftMigration = 1100;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject \"Runner\" */;\n\t\t\tcompatibilityVersion = \"Xcode 9.3\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 97C146E51CF9000F007C117D;\n\t\t\tproductRefGroup = 97C146EF1CF9000F007C117D /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t97C146ED1CF9000F007C117D /* Runner */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t97C146EC1CF9000F007C117D /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,\n\t\t\t\t3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,\n\t\t\t\t97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,\n\t\t\t\t97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"Thin Binary\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"/bin/sh \\\"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\\\" embed_and_thin\";\n\t\t};\n\t\t490145E608268371E0005396 /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\",\n\t\t\t\t\"${PODS_ROOT}/../Flutter/Flutter.framework\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/shared_preferences/shared_preferences.framework\",\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputPaths = (\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework\",\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/shared_preferences.framework\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\t9740EEB61CF901F6004384FC /* Run Script */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"Run Script\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"/bin/sh \\\"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\\\" build\";\n\t\t};\n\t\tB12BBDEAA8C70FC5255EF803 /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${PODS_PODFILE_DIR_PATH}/Podfile.lock\",\n\t\t\t\t\"${PODS_ROOT}/Manifest.lock\",\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t\t\"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"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\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n/* End PBXShellScriptBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t97C146EA1CF9000F007C117D /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,\n\t\t\t\t1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXVariantGroup section */\n\t\t97C146FA1CF9000F007C117D /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t97C146FB1CF9000F007C117D /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t97C147001CF9000F007C117D /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t249021D3217E4FDB00AE95B9 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSUPPORTED_PLATFORMS = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t249021D4217E4FDB00AE95B9 /* Profile */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = \"$(FLUTTER_BUILD_NUMBER)\";\n\t\t\t\tENABLE_BITCODE = NO;\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(PROJECT_DIR)/Flutter\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tLIBRARY_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(PROJECT_DIR)/Flutter\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.diegoveloper.weatherflut;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"Runner/Runner-Bridging-Header.h\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t};\n\t\t\tname = Profile;\n\t\t};\n\t\t97C147031CF9000F007C117D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t97C147041CF9000F007C117D /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSUPPORTED_PLATFORMS = iphoneos;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Owholemodule\";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t97C147061CF9000F007C117D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = \"$(FLUTTER_BUILD_NUMBER)\";\n\t\t\t\tENABLE_BITCODE = NO;\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(PROJECT_DIR)/Flutter\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tLIBRARY_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(PROJECT_DIR)/Flutter\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.diegoveloper.weatherflut;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"Runner/Runner-Bridging-Header.h\";\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t97C147071CF9000F007C117D /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = \"$(FLUTTER_BUILD_NUMBER)\";\n\t\t\t\tENABLE_BITCODE = NO;\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(PROJECT_DIR)/Flutter\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tLIBRARY_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(PROJECT_DIR)/Flutter\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.diegoveloper.weatherflut;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"Runner/Runner-Bridging-Header.h\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t97C146E91CF9000F007C117D /* Build configuration list for PBXProject \"Runner\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t97C147031CF9000F007C117D /* Debug */,\n\t\t\t\t97C147041CF9000F007C117D /* Release */,\n\t\t\t\t249021D3217E4FDB00AE95B9 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget \"Runner\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t97C147061CF9000F007C117D /* Debug */,\n\t\t\t\t97C147071CF9000F007C117D /* Release */,\n\t\t\t\t249021D4217E4FDB00AE95B9 /* Profile */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 97C146E61CF9000F007C117D /* Project object */;\n}\n"
  },
  {
    "path": "ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:Runner.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreviewsEnabled</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1020\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n               BuildableName = \"Runner.app\"\n               BlueprintName = \"Runner\"\n               ReferencedContainer = \"container:Runner.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n            BuildableName = \"Runner.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n            BuildableName = \"Runner.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Profile\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"97C146ED1CF9000F007C117D\"\n            BuildableName = \"Runner.app\"\n            BlueprintName = \"Runner\"\n            ReferencedContainer = \"container:Runner.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "ios/Runner.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:Runner.xcodeproj\">\n   </FileRef>\n   <FileRef\n      location = \"group:Pods/Pods.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreviewsEnabled</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "lib/data/data_constants.dart",
    "content": "const api = '$server/api/location/';\nconst server = 'https://www.metaweather.com/';\n"
  },
  {
    "path": "lib/data/repository/api_impl.dart",
    "content": "import 'dart:convert';\n\nimport 'package:weatherflut/data/data_constants.dart';\nimport 'package:weatherflut/data/repository/api_repository.dart';\nimport 'package:weatherflut/model/city.dart';\nimport 'package:http/http.dart' as http;\nimport 'package:weatherflut/model/weather.dart';\n\nclass ApiImpl extends ApiRepository {\n  @override\n  Future<List<City>> getCities(String text) async {\n    final url = '${api}search/?query=$text';\n    final response = await http.get(url);\n    final body = Utf8Decoder().convert(response.bodyBytes);\n    final data = jsonDecode(body) as List;\n    final cities = data.map((e) => City.fromJson(e)).toList();\n    return cities;\n  }\n\n  @override\n  Future<City> getWeathers(City city) async {\n    final url = '$api${city.id}';\n    final response = await http.get(url);\n    final body = Utf8Decoder().convert(response.bodyBytes);\n    final data = jsonDecode(body);\n    final weatherData = data['consolidated_weather'] as List;\n    final weathers = weatherData.map((e) => Weather.fromJson(e)).toList();\n    final newCity = city.fromWeathers(weathers);\n    return newCity;\n  }\n}\n"
  },
  {
    "path": "lib/data/repository/api_repository.dart",
    "content": "import 'package:weatherflut/model/city.dart';\n\nabstract class ApiRepository {\n  Future<List<City>> getCities(String text);\n  Future<City> getWeathers(City city);\n}\n"
  },
  {
    "path": "lib/data/repository/store_impl.dart",
    "content": "import 'dart:convert';\n\nimport 'package:weatherflut/data/repository/store_repository.dart';\nimport 'package:weatherflut/model/city.dart';\nimport 'package:shared_preferences/shared_preferences.dart';\n\nconst keyCities = 'cities';\nconst keyLastUpdate = 'last_update';\n\nclass StoreImpl extends StoreRepository {\n  @override\n  Future<List<City>> getCities() async {\n    SharedPreferences prefs = await SharedPreferences.getInstance();\n    final list = prefs.getStringList(keyCities);\n    if (list != null && list.isNotEmpty) {\n      final cities = list\n          .map(\n            (e) => City.fromJson(\n              jsonDecode(e),\n            ),\n          )\n          .toList();\n      return cities;\n    }\n    return <City>[];\n  }\n\n  @override\n  Future<void> saveCity(City city) async {\n    final list = (await getCities());\n    for (City item in list) {\n      if (item.id == city.id) {\n        throw Exception('La ciudad ya existe');\n      }\n    }\n    list.add(city);\n    SharedPreferences prefs = await SharedPreferences.getInstance();\n    prefs.setStringList(\n      keyCities,\n      list.map((e) => jsonEncode(e.toJson())).toList(),\n    );\n  }\n\n  @override\n  Future<void> saveCities(List<City> cities) async {\n    SharedPreferences prefs = await SharedPreferences.getInstance();\n    prefs.setStringList(\n      keyCities,\n      cities.map((e) => jsonEncode(e.toJson())).toList(),\n    );\n  }\n\n  @override\n  Future<DateTime> getLastUpdate() async {\n    SharedPreferences prefs = await SharedPreferences.getInstance();\n    final data = prefs.getInt(keyLastUpdate);\n    if (data != null && data > 0) {\n      return DateTime.fromMillisecondsSinceEpoch(data);\n    }\n    return null;\n  }\n\n  @override\n  Future<void> saveLastUpdate() async {\n    SharedPreferences prefs = await SharedPreferences.getInstance();\n    prefs.setInt(keyLastUpdate, DateTime.now().millisecondsSinceEpoch);\n  }\n\n  @override\n  Future<void> deleteCity(City city) async {\n    final cities = await getCities();\n    cities.removeWhere((element) => element.id == city.id);\n    saveCities(cities);\n  }\n}\n"
  },
  {
    "path": "lib/data/repository/store_repository.dart",
    "content": "import 'package:weatherflut/model/city.dart';\n\nabstract class StoreRepository {\n  Future<void> saveCity(City city);\n  Future<void> saveCities(List<City> cities);\n  Future<List<City>> getCities();\n  Future<DateTime> getLastUpdate();\n  Future<void> saveLastUpdate();\n  Future<void> deleteCity(City city);\n}\n"
  },
  {
    "path": "lib/main.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:provider/provider.dart';\nimport 'package:weatherflut/data/repository/api_impl.dart';\nimport 'package:weatherflut/data/repository/api_repository.dart';\nimport 'package:weatherflut/data/repository/store_impl.dart';\nimport 'package:weatherflut/data/repository/store_repository.dart';\nimport 'package:weatherflut/ui/home_page.dart';\n\nvoid main() {\n  runApp(MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n  // This widget is the root of your application.\n  @override\n  Widget build(BuildContext context) {\n    return MultiProvider(\n      providers: [\n        Provider<ApiRepository>(\n          create: (_) => ApiImpl(),\n        ),\n        Provider<StoreRepository>(\n          create: (_) => StoreImpl(),\n        ),\n      ],\n      child: MaterialApp(\n        title: 'WeatherFlut',\n        debugShowCheckedModeBanner: false,\n        theme: ThemeData.light(),\n        home: HomePage(),\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/model/city.dart",
    "content": "import 'package:weatherflut/model/weather.dart';\n\nclass City {\n  final String title;\n  final int id;\n  final List<Weather> weathers;\n\n  City({\n    this.title,\n    this.id,\n    this.weathers,\n  });\n\n  Map<String, dynamic> toJson() => {\n        \"title\": title,\n        \"woeid\": id,\n        \"weathers\": weathers.map((e) => e.toJson()).toList(),\n      };\n\n  factory City.fromJson(Map<String, dynamic> map) {\n    final myWeathers = map['weathers'];\n    return City(\n      id: map['woeid'],\n      title: map['title'],\n      weathers: myWeathers != null\n          ? (myWeathers as List).map((e) => Weather.fromJson(e)).toList()\n          : null,\n    );\n  }\n\n  City fromWeathers(List<Weather> weathers) {\n    return City(\n      id: id,\n      title: title,\n      weathers: weathers,\n    );\n  }\n}\n"
  },
  {
    "path": "lib/model/weather.dart",
    "content": "import 'dart:convert';\n\nWeather weatherFromJson(String str) => Weather.fromJson(\n      json.decode(str),\n    );\n\nString weatherToJson(Weather data) => json.encode(\n      data.toJson(),\n    );\n\nclass Weather {\n  Weather({\n    this.id,\n    this.weatherStateName,\n    this.weatherStateAbbr,\n    this.windDirectionCompass,\n    this.created,\n    this.applicableDate,\n    this.minTemp,\n    this.maxTemp,\n    this.theTemp,\n    this.windSpeed,\n    this.windDirection,\n    this.airPressure,\n    this.humidity,\n    this.visibility,\n    this.predictability,\n  });\n\n  int id;\n  String weatherStateName;\n  String weatherStateAbbr;\n  String windDirectionCompass;\n  DateTime created;\n  DateTime applicableDate;\n  double minTemp;\n  double maxTemp;\n  double theTemp;\n  double windSpeed;\n  double windDirection;\n  double airPressure;\n  num humidity;\n  double visibility;\n  int predictability;\n\n  factory Weather.fromJson(Map<String, dynamic> json) => Weather(\n        id: json[\"id\"],\n        weatherStateName: json[\"weather_state_name\"],\n        weatherStateAbbr: json[\"weather_state_abbr\"],\n        windDirectionCompass: json[\"wind_direction_compass\"],\n        created: DateTime.parse(json[\"created\"]),\n        applicableDate: DateTime.parse(json[\"applicable_date\"]),\n        minTemp: json[\"min_temp\"].toDouble(),\n        maxTemp: json[\"max_temp\"].toDouble(),\n        theTemp: json[\"the_temp\"].toDouble(),\n        windSpeed: json[\"wind_speed\"].toDouble(),\n        windDirection: json[\"wind_direction\"].toDouble(),\n        airPressure: json[\"air_pressure\"],\n        humidity: json[\"humidity\"],\n        visibility: json[\"visibility\"].toDouble(),\n        predictability: json[\"predictability\"],\n      );\n\n  Map<String, dynamic> toJson() => {\n        \"id\": id,\n        \"weather_state_name\": weatherStateName,\n        \"weather_state_abbr\": weatherStateAbbr,\n        \"wind_direction_compass\": windDirectionCompass,\n        \"created\": created.toIso8601String(),\n        \"applicable_date\":\n            \"${applicableDate.year.toString().padLeft(4, '0')}-${applicableDate.month.toString().padLeft(2, '0')}-${applicableDate.day.toString().padLeft(2, '0')}\",\n        \"min_temp\": minTemp,\n        \"max_temp\": maxTemp,\n        \"the_temp\": theTemp,\n        \"wind_speed\": windSpeed,\n        \"wind_direction\": windDirection,\n        \"air_pressure\": airPressure,\n        \"humidity\": humidity,\n        \"visibility\": visibility,\n        \"predictability\": predictability,\n      };\n}\n"
  },
  {
    "path": "lib/ui/cities/add/add_city_bloc.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:weatherflut/data/repository/api_repository.dart';\nimport 'package:weatherflut/data/repository/store_repository.dart';\nimport 'package:weatherflut/model/city.dart';\nimport 'package:weatherflut/ui/common/debouncer.dart';\n\nclass AddCityBloc extends ChangeNotifier {\n  final debouncer = Debouncer();\n  final StoreRepository storage;\n  final ApiRepository apiService;\n  List<City> cities = [];\n  bool loading = false;\n  String errorMessage;\n\n  AddCityBloc({\n    @required this.storage,\n    @required this.apiService,\n  });\n\n  void onChangedText(String text) {\n    debouncer.run(\n      () {\n        if (text.isNotEmpty) requestSearch(text);\n      },\n    );\n  }\n\n  void requestSearch(String text) async {\n    loading = true;\n    notifyListeners();\n\n    cities = await apiService.getCities(text);\n\n    loading = false;\n    notifyListeners();\n  }\n\n  Future<bool> addCity(City city) async {\n    loading = true;\n    notifyListeners();\n    final newCity = await apiService.getWeathers(city);\n    try {\n      await storage.saveCity(newCity);\n      errorMessage = null;\n      return true;\n    } on Exception catch (ex) {\n      print(ex.toString());\n      errorMessage = ex.toString();\n      loading = false;\n      notifyListeners();\n      return false;\n    }\n  }\n}\n"
  },
  {
    "path": "lib/ui/cities/add/add_city_page.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:provider/provider.dart';\nimport 'package:weatherflut/data/repository/api_repository.dart';\nimport 'package:weatherflut/data/repository/store_repository.dart';\nimport 'package:weatherflut/model/city.dart';\nimport 'package:weatherflut/ui/cities/add/add_city_bloc.dart';\nimport 'package:weatherflut/ui/common/header_widget.dart';\nimport 'package:weatherflut/ui/common/loader_widget.dart';\nimport 'package:weatherflut/ui/ui_constants.dart';\n\nclass AddCityPage extends StatefulWidget {\n  @override\n  _AddCityPageState createState() => _AddCityPageState();\n}\n\nclass _AddCityPageState extends State<AddCityPage> {\n  AddCityBloc bloc;\n\n  void handleAddTap(City city) async {\n    final result = await bloc.addCity(city);\n    if (result) {\n      Navigator.of(context).pop();\n    }\n  }\n\n  @override\n  void initState() {\n    bloc = AddCityBloc(\n      storage: context.read<StoreRepository>(),\n      apiService: context.read<ApiRepository>(),\n    );\n    super.initState();\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    return AnimatedBuilder(\n      animation: bloc,\n      builder: (context, child) {\n        return Scaffold(\n          appBar: AppBar(\n            elevation: 0,\n            backgroundColor: Colors.white,\n            iconTheme: IconThemeData(\n              color: Colors.black,\n            ),\n          ),\n          body: Padding(\n            padding: const EdgeInsets.all(25),\n            child: Column(\n              crossAxisAlignment: CrossAxisAlignment.stretch,\n              children: <Widget>[\n                HeaderWidget(\n                  title: 'Agregar ciudad',\n                ),\n                const SizedBox(\n                  height: 15,\n                ),\n                ClipRRect(\n                  borderRadius: BorderRadius.circular(15.0),\n                  child: TextField(\n                    onChanged: bloc.onChangedText,\n                    decoration: InputDecoration(\n                      focusedBorder: InputBorder.none,\n                      border: InputBorder.none,\n                      filled: true,\n                      hintText: 'Buscar ciudad',\n                      fillColor: Colors.grey[200],\n                      prefixIcon: Icon(\n                        Icons.search,\n                        color: Colors.grey,\n                      ),\n                    ),\n                  ),\n                ),\n                if (bloc.errorMessage != null)\n                  Text(\n                    bloc.errorMessage,\n                    style: TextStyle(color: Colors.red),\n                  ),\n                const SizedBox(\n                  height: 25,\n                ),\n                Expanded(\n                  child: ListView.builder(\n                    itemCount: bloc.cities.length,\n                    itemBuilder: (context, index) {\n                      final city = bloc.cities[index];\n                      return ListTile(\n                        title: Text(\n                          city.title,\n                          style: TextStyle(\n                            fontWeight: FontWeight.w700,\n                          ),\n                        ),\n                        trailing: IconButton(\n                          icon: Icon(\n                            Icons.add,\n                            color: primaryColor,\n                          ),\n                          onPressed: () {\n                            handleAddTap(city);\n                          },\n                        ),\n                      );\n                    },\n                  ),\n                ),\n                if (bloc.loading)\n                  Center(\n                    child: LoaderWidget(),\n                  ),\n              ],\n            ),\n          ),\n        );\n      },\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/cities/cities_bloc.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:weatherflut/data/repository/store_repository.dart';\nimport 'package:weatherflut/model/city.dart';\n\nclass CitiesBloc extends ChangeNotifier {\n  List<City> cities = [];\n  final StoreRepository storage;\n\n  CitiesBloc({@required this.storage});\n\n  void loadCities() async {\n    cities = await storage.getCities();\n    notifyListeners();\n  }\n\n  void deleteCity(City city) async {\n    await storage.deleteCity(city);\n    loadCities();\n  }\n}\n"
  },
  {
    "path": "lib/ui/cities/cities_page.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:provider/provider.dart';\nimport 'package:weatherflut/data/repository/store_repository.dart';\nimport 'package:weatherflut/model/city.dart';\nimport 'package:weatherflut/ui/cities/add/add_city_page.dart';\nimport 'package:weatherflut/ui/cities/cities_bloc.dart';\nimport 'package:weatherflut/ui/common/header_widget.dart';\nimport 'package:weatherflut/ui/ui_constants.dart';\n\nclass CitiesPage extends StatefulWidget {\n  @override\n  _CitiesPageState createState() => _CitiesPageState();\n}\n\nclass _CitiesPageState extends State<CitiesPage> {\n  CitiesBloc bloc;\n\n  void handleDeleteTap(City city) async {\n    final result = await showDialog(\n      context: context,\n      barrierDismissible: false,\n      builder: (context) => Center(\n        child: AlertDialog(\n          title: Text('Confirmación'),\n          content: Text('Seguro que desea eliminar la ciudad ${city.title}?'),\n          actions: <Widget>[\n            OutlineButton(\n              child: Text('NO'),\n              onPressed: () => Navigator.of(context).pop(false),\n            ),\n            OutlineButton(\n              child: Text('SI'),\n              onPressed: () => Navigator.of(context).pop(true),\n            )\n          ],\n        ),\n      ),\n    );\n    if (result) {\n      bloc.deleteCity(city);\n    }\n  }\n\n  @override\n  void initState() {\n    bloc = CitiesBloc(\n      storage: context.read<StoreRepository>(),\n    );\n    bloc.loadCities();\n    super.initState();\n  }\n\n  void handleNavigatePress(BuildContext context) async {\n    await Navigator.of(context).push(\n      PageRouteBuilder(\n        transitionDuration: const Duration(\n          milliseconds: 400,\n        ),\n        pageBuilder: (_, animation1, animation2) {\n          return SlideTransition(\n            position: Tween<Offset>(\n              begin: Offset(0.0, 1.0),\n              end: Offset(0.0, 0.0),\n            ).animate(animation1),\n            child: AddCityPage(),\n          );\n        },\n      ),\n    );\n    bloc.loadCities();\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    return AnimatedBuilder(\n      animation: bloc,\n      builder: (context, child) {\n        return Scaffold(\n          appBar: AppBar(\n            elevation: 0,\n            backgroundColor: Colors.white,\n            iconTheme: IconThemeData(\n              color: Colors.black,\n            ),\n          ),\n          floatingActionButton: Padding(\n            padding: const EdgeInsets.only(bottom: 20.0),\n            child: FloatingActionButton(\n              child: Icon(Icons.add),\n              backgroundColor: primaryColor,\n              onPressed: () => handleNavigatePress(context),\n            ),\n          ),\n          body: Center(\n            child: Padding(\n              padding: const EdgeInsets.all(25),\n              child: Column(\n                crossAxisAlignment: CrossAxisAlignment.stretch,\n                children: <Widget>[\n                  HeaderWidget(\n                    title: 'Mis ciudades',\n                  ),\n                  Expanded(\n                    child: bloc.cities.isEmpty\n                        ? Center(\n                            child: Text('No tienes ciudades :('),\n                          )\n                        : ListView.builder(\n                            padding: const EdgeInsets.only(\n                              bottom: 20,\n                            ),\n                            itemCount: bloc.cities.length,\n                            itemBuilder: (context, index) {\n                              final city = bloc.cities[index];\n                              return CityItem(\n                                city: city,\n                                onTap: () => handleDeleteTap(city),\n                              );\n                            },\n                          ),\n                  ),\n                ],\n              ),\n            ),\n          ),\n        );\n      },\n    );\n  }\n}\n\nclass CityItem extends StatelessWidget {\n  final City city;\n  final VoidCallback onTap;\n\n  const CityItem({\n    Key key,\n    this.city,\n    this.onTap,\n  }) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return Padding(\n      padding: const EdgeInsets.symmetric(vertical: 8.0),\n      child: Container(\n        color: Colors.grey[200],\n        padding: const EdgeInsets.all(20.0),\n        child: Row(\n          mainAxisAlignment: MainAxisAlignment.spaceBetween,\n          children: <Widget>[\n            Text(\n              city.title,\n              style: TextStyle(\n                fontWeight: FontWeight.w700,\n                fontSize: 20,\n              ),\n            ),\n            InkWell(\n              onTap: onTap,\n              child: Icon(\n                Icons.close,\n              ),\n            ),\n          ],\n        ),\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/common/debouncer.dart",
    "content": "import 'dart:async';\nimport 'package:flutter/material.dart';\n\nclass Debouncer {\n  Timer _timer;\n\n  void run(VoidCallback callback) {\n    _timer?.cancel();\n    _timer = Timer(\n      const Duration(seconds: 1),\n      callback,\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/common/fade_indexed_stack.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:flutter/scheduler.dart';\n\nclass FadeIndexedStack extends StatefulWidget {\n  final int currentIndex;\n  final List<Widget> children;\n\n  const FadeIndexedStack({\n    Key key,\n    this.currentIndex,\n    this.children,\n  }) : super(key: key);\n\n  @override\n  _FadeIndexedStackState createState() => _FadeIndexedStackState();\n}\n\nclass _FadeIndexedStackState extends State<FadeIndexedStack>\n    with SingleTickerProviderStateMixin {\n  AnimationController _controller;\n\n  @override\n  void didUpdateWidget(FadeIndexedStack oldWidget) {\n    if (widget.currentIndex != oldWidget.currentIndex) {\n      _controller.forward(from: 0.0);\n    }\n    super.didUpdateWidget(oldWidget);\n  }\n\n  @override\n  void initState() {\n    super.initState();\n    _controller = AnimationController(\n      vsync: this,\n      duration: const Duration(\n        milliseconds: 10,\n      ),\n    );\n    _controller.forward();\n  }\n\n  @override\n  void dispose() {\n    _controller.dispose();\n    super.dispose();\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    timeDilation = 1.0;\n    return FadeTransition(\n      opacity: _controller,\n      child: IndexedStack(\n        index: widget.currentIndex,\n        children: widget.children,\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/common/header_widget.dart",
    "content": "import 'package:flutter/material.dart';\n\nclass HeaderWidget extends StatelessWidget {\n  final String title;\n\n  const HeaderWidget({Key key, this.title}) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return Column(\n      crossAxisAlignment: CrossAxisAlignment.start,\n      children: <Widget>[\n        Padding(\n          padding: const EdgeInsets.only(left: 15.0),\n          child: Text(\n            title,\n            style: TextStyle(\n              fontSize: 23,\n              fontWeight: FontWeight.w700,\n            ),\n          ),\n        ),\n        const SizedBox(\n          height: 20,\n        ),\n        Divider(),\n      ],\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/common/loader_widget.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:vector_math/vector_math.dart' as vector;\n\nclass LoaderWidget extends StatefulWidget {\n  @override\n  _LoaderWidgetState createState() => _LoaderWidgetState();\n}\n\nclass _LoaderWidgetState extends State<LoaderWidget>\n    with SingleTickerProviderStateMixin {\n  AnimationController _controller;\n\n  @override\n  void initState() {\n    super.initState();\n    _controller = AnimationController(\n      vsync: this,\n      duration: const Duration(seconds: 1),\n    );\n    _controller.repeat();\n  }\n\n  @override\n  void dispose() {\n    _controller.dispose();\n    super.dispose();\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    return AnimatedBuilder(\n      animation: _controller,\n      builder: (context, child) {\n        return Transform.rotate(\n          angle: vector.radians(\n            180 * _controller.value,\n          ),\n          child: child,\n        );\n      },\n      child: Image.asset(\n        'assets/loader.png',\n        height: 40,\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/home/empty_widget.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:weatherflut/ui/ui_constants.dart';\n\nclass EmptyWidget extends StatelessWidget {\n  final VoidCallback onTap;\n\n  const EmptyWidget({Key key, this.onTap}) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return Stack(\n      fit: StackFit.expand,\n      children: [\n        Positioned.fill(\n          child: Image.asset(\n            'assets/welcome.jpg',\n            fit: BoxFit.cover,\n          ),\n        ),\n        SafeArea(\n          child: Center(\n            child: Container(\n              constraints: BoxConstraints(\n                maxWidth: maxPageWidth,\n              ),\n              child: Column(\n                crossAxisAlignment: CrossAxisAlignment.stretch,\n                children: [\n                  const SizedBox(\n                    height: 30,\n                  ),\n                  Image.asset(\n                    'assets/logo.png',\n                    height: 55,\n                  ),\n                  const SizedBox(\n                    height: 80,\n                  ),\n                  Text(\n                    'Hola,\\nBienvenido',\n                    textAlign: TextAlign.start,\n                    style: TextStyle(\n                      fontSize: 34,\n                      fontWeight: FontWeight.bold,\n                    ),\n                  ),\n                  const SizedBox(\n                    height: 20,\n                  ),\n                  Text(\n                    'Qué te parece si agregamos\\nuna nueva ciudad?',\n                    textAlign: TextAlign.start,\n                  ),\n                  const SizedBox(\n                    height: 50,\n                  ),\n                  RaisedButton(\n                    color: Colors.white,\n                    elevation: 0,\n                    shape: RoundedRectangleBorder(\n                      borderRadius: BorderRadius.circular(\n                        15.0,\n                      ),\n                    ),\n                    child: Text('Agregar ciudad'),\n                    onPressed: onTap,\n                  ),\n                ],\n              ),\n            ),\n          ),\n        ),\n      ],\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/home/weather_details_widget.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:intl/intl.dart';\nimport 'package:weatherflut/data/data_constants.dart';\nimport 'package:weatherflut/model/city.dart';\n\nfinal dayFormat = DateFormat('EEEE');\n\nclass WeatherDetailsWidget extends StatelessWidget {\n  final City city;\n\n  const WeatherDetailsWidget({Key key, this.city}) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return SizedBox(\n      height: MediaQuery.of(context).size.height * 0.7,\n      child: Align(\n        alignment: Alignment.bottomCenter,\n        child: Column(\n          children: [\n            const SizedBox(\n              height: 30,\n            ),\n            Text(\n              'Pronóstico de ${city.weathers.length} Días',\n              style: TextStyle(\n                fontWeight: FontWeight.w700,\n                fontSize: 25,\n              ),\n            ),\n            const SizedBox(\n              height: 30,\n            ),\n            Expanded(\n              child: ListView.builder(\n                shrinkWrap: true,\n                itemCount: city.weathers.length,\n                itemBuilder: (context, index) {\n                  final weather = city.weathers[index];\n                  return Padding(\n                    padding: const EdgeInsets.all(20.0),\n                    child: Card(\n                      child: Column(\n                        children: [\n                          Padding(\n                            padding: const EdgeInsets.all(20.0),\n                            child: Row(\n                              children: [\n                                Text(\n                                  dayFormat.format(\n                                    weather.applicableDate,\n                                  ),\n                                  style: TextStyle(\n                                    fontSize: 18,\n                                    fontWeight: FontWeight.w700,\n                                  ),\n                                ),\n                                Padding(\n                                  padding: const EdgeInsets.symmetric(\n                                      horizontal: 10.0),\n                                  child: Image.network(\n                                    '${server}static/img/weather/png/64/${weather.weatherStateAbbr}.png',\n                                    height: 25,\n                                  ),\n                                ),\n                                Spacer(),\n                                Text(\n                                  '${weather.theTemp.toInt().toString()}°C',\n                                  style: TextStyle(\n                                    fontWeight: FontWeight.w700,\n                                    fontSize: 17,\n                                  ),\n                                ),\n                              ],\n                            ),\n                          ),\n                          Row(\n                            mainAxisAlignment: MainAxisAlignment.spaceBetween,\n                            children: [\n                              Expanded(\n                                child: Text(\n                                  'Viento',\n                                  textAlign: TextAlign.center,\n                                ),\n                              ),\n                              Expanded(\n                                child: Text(\n                                  'Presión de aire',\n                                  textAlign: TextAlign.center,\n                                ),\n                              ),\n                              Expanded(\n                                child: Text(\n                                  'Humedad',\n                                  textAlign: TextAlign.center,\n                                ),\n                              ),\n                            ],\n                          ),\n                          const SizedBox(\n                            height: 15,\n                          ),\n                          Row(\n                            mainAxisAlignment: MainAxisAlignment.spaceBetween,\n                            children: [\n                              Expanded(\n                                child: Text(\n                                  '${weather.windSpeed.toStringAsFixed(2)} mph',\n                                  textAlign: TextAlign.center,\n                                ),\n                              ),\n                              Expanded(\n                                child: Text(\n                                  '${weather.airPressure} mbar',\n                                  textAlign: TextAlign.center,\n                                ),\n                              ),\n                              Expanded(\n                                child: Text(\n                                  '${weather.humidity}%',\n                                  textAlign: TextAlign.center,\n                                ),\n                              ),\n                            ],\n                          ),\n                          const SizedBox(\n                            height: 15,\n                          ),\n                        ],\n                      ),\n                    ),\n                  );\n                },\n              ),\n            ),\n          ],\n        ),\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/home/weathers_widget.dart",
    "content": "import 'dart:ui';\nimport 'package:flutter/material.dart';\nimport 'package:intl/intl.dart';\nimport 'package:weatherflut/model/city.dart';\nimport 'package:weatherflut/ui/home/weather_details_widget.dart';\nimport 'package:weatherflut/ui/ui_constants.dart';\n\nDateFormat format = DateFormat('E, dd MMM yyyy');\n\nclass WeathersWidget extends StatefulWidget {\n  final List<City> cities;\n  final VoidCallback onTap;\n\n  const WeathersWidget({\n    Key key,\n    this.cities,\n    this.onTap,\n  }) : super(key: key);\n\n  @override\n  _WeathersWidgetState createState() => _WeathersWidgetState();\n}\n\nclass _WeathersWidgetState extends State<WeathersWidget> {\n  int _currentIndex = 0;\n\n  void handleArrowPressed(City city) {\n    showBottomSheet(\n      context: context,\n      shape: RoundedRectangleBorder(\n        borderRadius: BorderRadius.vertical(\n          top: Radius.circular(\n            40.0,\n          ),\n        ),\n      ),\n      builder: (_) {\n        return WeatherDetailsWidget(city: city);\n      },\n    );\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    final weather = widget.cities[_currentIndex].weathers.first;\n    return Stack(\n      fit: StackFit.expand,\n      children: [\n        Positioned.fill(\n          child: AnimatedSwitcher(\n            layoutBuilder: (currentChild, previousChildren) {\n              return Stack(\n                fit: StackFit.expand,\n                children: <Widget>[\n                  ...previousChildren,\n                  if (currentChild != null) currentChild,\n                ],\n                alignment: Alignment.center,\n              );\n            },\n            duration: Duration(\n              milliseconds: 600,\n            ),\n            child: Image.asset(\n              'assets/background_states/${weather.weatherStateAbbr}.jpg',\n              fit: BoxFit.cover,\n              key: Key(weather.weatherStateAbbr),\n            ),\n          ),\n        ),\n        PageView.builder(\n          onPageChanged: (val) {\n            setState(() {\n              _currentIndex = val;\n            });\n          },\n          physics: const ClampingScrollPhysics(),\n          itemCount: widget.cities.length,\n          itemBuilder: (context, index) {\n            final city = widget.cities[index];\n            return WeatherItem(\n              city: city,\n              onTap: () => handleArrowPressed(city),\n            );\n          },\n        ),\n        Positioned(\n          left: 20,\n          top: 20,\n          child: SafeArea(\n            child: IconButton(\n              icon: Icon(Icons.add),\n              onPressed: widget.onTap,\n            ),\n          ),\n        ),\n        Positioned(\n          right: 20,\n          top: 20,\n          child: SafeArea(\n            child: IconButton(\n              icon: Icon(Icons.settings),\n              onPressed: widget.onTap,\n            ),\n          ),\n        ),\n      ],\n    );\n  }\n}\n\nclass WeatherItem extends StatelessWidget {\n  final City city;\n  final VoidCallback onTap;\n\n  const WeatherItem({\n    Key key,\n    this.city,\n    this.onTap,\n  }) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    final weather = city.weathers.first;\n    return Stack(\n      fit: StackFit.expand,\n      children: [\n        SafeArea(\n          child: Column(\n            crossAxisAlignment: CrossAxisAlignment.stretch,\n            children: [\n              const SizedBox(\n                height: 50,\n              ),\n              Text(\n                city.title,\n                textAlign: TextAlign.center,\n                style: TextStyle(\n                  fontSize: 40,\n                  fontWeight: FontWeight.w700,\n                  color: Colors.white,\n                  shadows: shadows,\n                ),\n              ),\n              Text(\n                format.format(weather.applicableDate),\n                textAlign: TextAlign.center,\n                style: TextStyle(\n                  color: Colors.white,\n                  shadows: shadows,\n                ),\n              ),\n              const SizedBox(\n                height: 50,\n              ),\n              Align(\n                child: Row(\n                  mainAxisSize: MainAxisSize.min,\n                  crossAxisAlignment: CrossAxisAlignment.start,\n                  mainAxisAlignment: MainAxisAlignment.end,\n                  children: [\n                    TweenAnimationBuilder<int>(\n                      tween: IntTween(\n                        begin: 0,\n                        end: weather.theTemp.toInt(),\n                      ),\n                      duration: const Duration(\n                        milliseconds: 800,\n                      ),\n                      builder: (context, value, child) {\n                        return Text(\n                          value.toString(),\n                          textAlign: TextAlign.center,\n                          style: TextStyle(\n                            color: Colors.white,\n                            shadows: shadows,\n                            fontSize: 75,\n                            fontWeight: FontWeight.bold,\n                          ),\n                        );\n                      },\n                    ),\n                    Padding(\n                      padding: const EdgeInsets.only(top: 10),\n                      child: Align(\n                        alignment: Alignment.topRight,\n                        child: Text(\n                          '°C',\n                          style: TextStyle(\n                            color: Colors.white,\n                            fontWeight: FontWeight.w700,\n                            shadows: shadows,\n                          ),\n                        ),\n                      ),\n                    ),\n                  ],\n                ),\n              ),\n              Text(\n                weather.weatherStateName,\n                textAlign: TextAlign.center,\n                style: TextStyle(\n                  color: Colors.white,\n                  shadows: shadows,\n                  fontSize: 22,\n                ),\n              ),\n              const SizedBox(\n                height: 70,\n              ),\n            ],\n          ),\n        ),\n        Center(\n          child: Padding(\n            padding: const EdgeInsets.only(top: 30.0),\n            child: IconButton(\n              onPressed: onTap,\n              icon: Icon(\n                Icons.keyboard_arrow_up,\n                color: Colors.white,\n                size: 50,\n              ),\n            ),\n          ),\n        ),\n        Align(\n          alignment: Alignment.bottomCenter,\n          child: Padding(\n            padding: const EdgeInsets.symmetric(horizontal: 20.0, vertical: 40),\n            child: Column(\n              mainAxisSize: MainAxisSize.min,\n              crossAxisAlignment: CrossAxisAlignment.center,\n              children: [\n                Row(children: [\n                  Expanded(\n                    child: _WeatherItemDetails(\n                      title: 'Viento',\n                      value: \"${weather.windSpeed.toStringAsFixed(2)} mph\",\n                    ),\n                  ),\n                  Expanded(\n                    child: _WeatherItemDetails(\n                      title: 'Presión de aire',\n                      value: '${weather.airPressure.toStringAsFixed(2)} mbar',\n                    ),\n                  ),\n                  Expanded(\n                    child: _WeatherItemDetails(\n                      title: 'Humedad',\n                      value: '${weather.humidity}%',\n                    ),\n                  ),\n                ]),\n                const SizedBox(\n                  height: 15,\n                ),\n                Row(\n                  mainAxisAlignment: MainAxisAlignment.spaceEvenly,\n                  children: [\n                    _WeatherItemDetails(\n                      title: 'Temp min',\n                      value: weather.minTemp.toStringAsFixed(2),\n                    ),\n                    _WeatherItemDetails(\n                      title: 'Temp Max',\n                      value: weather.maxTemp.toStringAsFixed(2),\n                    ),\n                  ],\n                ),\n              ],\n            ),\n          ),\n        ),\n      ],\n    );\n  }\n}\n\nclass _WeatherItemDetails extends StatelessWidget {\n  final String title;\n  final String value;\n\n  const _WeatherItemDetails({Key key, this.title, this.value}) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return Column(\n      children: <Widget>[\n        Text(\n          title,\n          style: TextStyle(color: Colors.white, shadows: shadows),\n        ),\n        const SizedBox(\n          height: 15,\n        ),\n        Text(\n          value,\n          style: TextStyle(\n            color: Colors.white,\n            shadows: shadows,\n          ),\n        ),\n      ],\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/home_bloc.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:intl/intl.dart';\nimport 'package:weatherflut/data/repository/api_repository.dart';\nimport 'package:weatherflut/data/repository/store_repository.dart';\nimport 'package:weatherflut/model/city.dart';\n\nclass HomeBloc extends ChangeNotifier {\n  List<City> cities = [];\n  final StoreRepository storage;\n  final ApiRepository apiService;\n  bool loading = false;\n\n  final formatDate = DateFormat('dd/MM/yyyy HH');\n\n  HomeBloc({this.storage, this.apiService});\n\n  void loadCities() async {\n    final lastUpdate = await storage.getLastUpdate();\n    final now = DateTime.now();\n    final localCities = await storage.getCities();\n    if (localCities.isEmpty) return;\n    if (lastUpdate == null || (formatDate.format(now) != formatDate.format(lastUpdate))) {\n      List<City> citiesUpdated = [];\n      loading = true;\n      notifyListeners();\n      for (City city in localCities) {\n        final cityUpdated = await apiService.getWeathers(city);\n        citiesUpdated.add(cityUpdated);\n      }\n      await storage.saveCities(citiesUpdated);\n      await storage.saveLastUpdate();\n      cities = citiesUpdated;\n      loading = false;\n    } else {\n      cities = await storage.getCities();\n    }\n    notifyListeners();\n  }\n}\n"
  },
  {
    "path": "lib/ui/home_page.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:provider/provider.dart';\nimport 'package:weatherflut/data/repository/api_repository.dart';\nimport 'package:weatherflut/data/repository/store_repository.dart';\nimport 'package:weatherflut/ui/cities/cities_page.dart';\nimport 'package:weatherflut/ui/common/loader_widget.dart';\nimport 'package:weatherflut/ui/home/empty_widget.dart';\nimport 'package:weatherflut/ui/home/weathers_widget.dart';\nimport 'package:weatherflut/ui/home_bloc.dart';\n\nclass HomePage extends StatefulWidget {\n  @override\n  _HomePageState createState() => _HomePageState();\n}\n\nclass _HomePageState extends State<HomePage> with WidgetsBindingObserver {\n  HomeBloc bloc;\n\n  @override\n  void didChangeAppLifecycleState(AppLifecycleState state) {\n    if (state == AppLifecycleState.resumed) {\n      bloc.loadCities();\n    }\n    super.didChangeAppLifecycleState(state);\n  }\n\n  @override\n  void initState() {\n    bloc = HomeBloc(\n      apiService: context.read<ApiRepository>(),\n      storage: context.read<StoreRepository>(),\n    );\n    bloc.loadCities();\n    WidgetsBinding.instance.addObserver(this);\n    super.initState();\n  }\n\n  @override\n  void dispose() {\n    WidgetsBinding.instance.removeObserver(this);\n    super.dispose();\n  }\n\n  void handleNavigatePress(BuildContext context) async {\n    await Navigator.of(context).push(\n      MaterialPageRoute(builder: (_) => CitiesPage()),\n    );\n    bloc.loadCities();\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    return AnimatedBuilder(\n      animation: bloc,\n      builder: (context, child) {\n        return Scaffold(\n          body: bloc.cities.isEmpty\n              ? bloc.loading\n                  ? Center(child: LoaderWidget())\n                  : EmptyWidget(\n                      onTap: () => handleNavigatePress(context),\n                    )\n              : WeathersWidget(\n                  cities: bloc.cities,\n                  onTap: () => handleNavigatePress(context),\n                ),\n        );\n      },\n    );\n  }\n}\n"
  },
  {
    "path": "lib/ui/ui_constants.dart",
    "content": "import 'package:flutter/material.dart';\n\nconst double maxPageWidth = 250.0;\n\nconst primaryColor = Color(0xFF0086B9);\nconst shadows = [\n  BoxShadow(\n    color: Colors.black38,\n    offset: Offset(1.0, 1.0),\n    blurRadius: 5.0,\n    spreadRadius: 5.0,\n  ),\n];\n"
  },
  {
    "path": "pubspec.yaml",
    "content": "name: weatherflut\ndescription: A new Flutter project.\n\n# The following line prevents the package from being accidentally published to\n# pub.dev using `pub publish`. This is preferred for private packages.\npublish_to: 'none' # Remove this line if you wish to publish to pub.dev\n\n# The following defines the version and build number for your application.\n# A version number is three numbers separated by dots, like 1.2.43\n# followed by an optional build number separated by a +.\n# Both the version and the builder number may be overridden in flutter\n# build by specifying --build-name and --build-number, respectively.\n# In Android, build-name is used as versionName while build-number used as versionCode.\n# Read more about Android versioning at https://developer.android.com/studio/publish/versioning\n# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.\n# Read more about iOS versioning at\n# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html\nversion: 1.0.0+1\n\nenvironment:\n  sdk: \">=2.7.0 <3.0.0\"\n\ndependencies:\n  flutter:\n    sdk: flutter\n\n\n  # The following adds the Cupertino Icons font to your application.\n  # Use with the CupertinoIcons class for iOS style icons.\n  cupertino_icons: ^0.1.3\n  http: any\n  shared_preferences: ^0.5.8\n  intl: any\n  provider: any\n\ndev_dependencies:\n  flutter_test:\n    sdk: flutter\n  flutter_launcher_icons: ^0.7.5\n\nflutter_icons:\n  android: \"launcher_icon\"\n  ios: true\n  image_path: \"assets/icon.png\"  \n\n# For information on the generic Dart part of this file, see the\n# following page: https://dart.dev/tools/pub/pubspec\n\n# The following section is specific to Flutter.\nflutter:\n\n  # The following line ensures that the Material Icons font is\n  # included with your application, so that you can use the icons in\n  # the material Icons class.\n  uses-material-design: true\n\n  # To add assets to your application, add an assets section, like this:\n  assets:\n     - assets/\n     - assets/background_states/\n\n  # An image asset can refer to one or more resolution-specific \"variants\", see\n  # https://flutter.dev/assets-and-images/#resolution-aware.\n\n  # For details regarding adding assets from package dependencies, see\n  # https://flutter.dev/assets-and-images/#from-packages\n\n  # To add custom fonts to your application, add a fonts section here,\n  # in this \"flutter\" section. Each entry in this list should have a\n  # \"family\" key with the font family name, and a \"fonts\" key with a\n  # list giving the asset and other descriptors for the font. For\n  # example:\n  # fonts:\n  #   - family: Schyler\n  #     fonts:\n  #       - asset: fonts/Schyler-Regular.ttf\n  #       - asset: fonts/Schyler-Italic.ttf\n  #         style: italic\n  #   - family: Trajan Pro\n  #     fonts:\n  #       - asset: fonts/TrajanPro.ttf\n  #       - asset: fonts/TrajanPro_Bold.ttf\n  #         weight: 700\n  #\n  # For details regarding fonts from package dependencies,\n  # see https://flutter.dev/custom-fonts/#from-packages\n"
  },
  {
    "path": "test/widget_test.dart",
    "content": "// This is a basic Flutter widget test.\n//\n// To perform an interaction with a widget in your test, use the WidgetTester\n// utility that Flutter provides. For example, you can send tap and scroll\n// gestures. You can also use WidgetTester to find child widgets in the widget\n// tree, read text, and verify that the values of widget properties are correct.\n\nimport 'package:flutter/material.dart';\nimport 'package:flutter_test/flutter_test.dart';\n\nimport 'package:weatherflut/main.dart';\n\nvoid main() {\n  testWidgets('Counter increments smoke test', (WidgetTester tester) async {\n    // Build our app and trigger a frame.\n    await tester.pumpWidget(MyApp());\n\n    // Verify that our counter starts at 0.\n    expect(find.text('0'), findsOneWidget);\n    expect(find.text('1'), findsNothing);\n\n    // Tap the '+' icon and trigger a frame.\n    await tester.tap(find.byIcon(Icons.add));\n    await tester.pump();\n\n    // Verify that our counter has incremented.\n    expect(find.text('0'), findsNothing);\n    expect(find.text('1'), findsOneWidget);\n  });\n}\n"
  }
]