[
  {
    "path": ".gitignore",
    "content": "# Miscellaneous\n*.class\n*.log\n*.pyc\n*.swp\n.DS_Store\n.atom/\n.buildlog/\n.history\n.svn/\nmigrate_working_dir/\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**/ios/Flutter/.last_build_id\n.dart_tool/\n.flutter-plugins\n.flutter-plugins-dependencies\n.packages\n.pub-cache/\n.pub/\n/build/\n\n# Symbolication related\napp.*.symbols\n\n# Obfuscation related\napp.*.map.json\n\n# Android Studio will place build artifacts here\n/android/app/debug\n/android/app/profile\n/android/app/release"
  },
  {
    "path": "README.md",
    "content": "# flutter-getx-clean-architecture\nA Flutter Clean Architecture Using [GetX](https://github.com/jonataslaw/getx).\n\n## Work Flow\n![alt text](/assets/Clean-Architecture-Flutter-Diagram.png?raw=true)\n## Project Structure\n```\n|-- lib\n    |-- main.dart\n    |-- app\n        |-- core\n            |-- usecases\n        |-- config\n            |-- app_constants.dart\n            |-- app_colors.dart\n        |   -- app_text_styles.dart\n        |-- services\n        |-- util\n        |-- types\n        |-- extensitons\n    |-- data\n        |-- models\n        |-- repositories\n        |-- providers\n            |-- database\n            |-- network\n                |-- apis\n                |-- api_endpoints.dart\n                |-- api_provider.dart\n                |-- api_representable.dart\n    |-- domain\n        |-- entities\n        |-- repositories\n        |-- usecases\n    |-- presentation\n        |-- controllers\n        |-- pages\n        |-- views\n        |-- app.dart\n```\n\n## Features\n- Integrating Unit Test.\n- Create an easy to use API provider with [GetConnect](https://github.com/jonataslaw/getx#getconnect).\n"
  },
  {
    "path": "android/.gitignore",
    "content": "gradle-wrapper.jar\n/.gradle\n/captures/\n/gradlew\n/gradlew.bat\n/local.properties\nGeneratedPluginRegistrant.java\n\n# Remember to never publicly share your keystore.\n# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app\nkey.properties\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 31\n\n    sourceSets {\n        main.java.srcDirs += 'src/main/kotlin'\n    }\n\n    defaultConfig {\n        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).\n        applicationId \"com.example.getx_clean_architecture\"\n        minSdkVersion 16\n        targetSdkVersion 30\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/debug/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.example.getx_clean_architecture\">\n    <!-- Flutter needs it to communicate with the running application\n         to allow setting breakpoints, to provide hot reload, etc.\n    -->\n    <uses-permission android:name=\"android.permission.INTERNET\"/>\n</manifest>\n"
  },
  {
    "path": "android/app/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.example.getx_clean_architecture\">\n   <application\n        android:label=\"getx_clean_architecture\"\n        android:icon=\"@mipmap/ic_launcher\">\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>\n"
  },
  {
    "path": "android/app/src/main/kotlin/com/example/getx_clean_architecture/MainActivity.kt",
    "content": "package com.example.getx_clean_architecture\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/drawable-v21/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:colorBackground\" />\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 when the OS's Dark Mode setting is off -->\n    <style name=\"LaunchTheme\" parent=\"@android:style/Theme.Light.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.Light.NoTitleBar\">\n        <item name=\"android:windowBackground\">?android:colorBackground</item>\n    </style>\n</resources>\n"
  },
  {
    "path": "android/app/src/main/res/values-night/styles.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->\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:colorBackground</item>\n    </style>\n</resources>\n"
  },
  {
    "path": "android/app/src/profile/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.example.getx_clean_architecture\">\n    <!-- Flutter needs it to communicate with the running application\n         to allow setting breakpoints, to provide hot reload, etc.\n    -->\n    <uses-permission android:name=\"android.permission.INTERNET\"/>\n</manifest>\n"
  },
  {
    "path": "android/build.gradle",
    "content": "buildscript {\n    ext.kotlin_version = '1.6.10'\n    repositories {\n        google()\n        jcenter()\n    }\n\n    dependencies {\n        classpath 'com.android.tools.build:gradle:4.1.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    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-6.7-all.zip\n"
  },
  {
    "path": "android/gradle.properties",
    "content": "org.gradle.jvmargs=-Xmx1536M\nandroid.useAndroidX=true\nandroid.enableJetifier=true\n"
  },
  {
    "path": "android/settings.gradle",
    "content": "include ':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/ephemeral/\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>en</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 flutter_root\n  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)\n  unless File.exist?(generated_xcode_build_settings_path)\n    raise \"#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first\"\n  end\n\n  File.foreach(generated_xcode_build_settings_path) do |line|\n    matches = line.match(/FLUTTER_ROOT\\=(.*)/)\n    return matches[1].strip if matches\n  end\n  raise \"FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get\"\nend\n\nrequire File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)\n\nflutter_ios_podfile_setup\n\ntarget 'Runner' do\n  use_frameworks!\n  use_modular_headers!\n\n  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))\nend\n\npost_install do |installer|\n  installer.pods_project.targets.each do |target|\n    flutter_additional_ios_build_settings(target)\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>getx_clean_architecture</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\t59338DFFFAC6ED200E895419 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23107FCC4ADD2F5C1072CB90 /* 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\t23107FCC4ADD2F5C1072CB90 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; 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\t9637645FF0BE5257435AD11B /* 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\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\tB29F88C3632740DF5E8E7E48 /* 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\tB5485E231E2A57BAE687419C /* 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/* 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\t59338DFFFAC6ED200E895419 /* 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\t6E0AA953ACAB9AAC9C6AC78A /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tB5485E231E2A57BAE687419C /* Pods-Runner.debug.xcconfig */,\n\t\t\t\t9637645FF0BE5257435AD11B /* Pods-Runner.release.xcconfig */,\n\t\t\t\tB29F88C3632740DF5E8E7E48 /* 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\t91917628A17759DC3FA4CA88 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t23107FCC4ADD2F5C1072CB90 /* Pods_Runner.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\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\t6E0AA953ACAB9AAC9C6AC78A /* Pods */,\n\t\t\t\t91917628A17759DC3FA4CA88 /* 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\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/* 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\t4F4F210C2A389E9CFFBC1FDA /* [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\tF077A86143457CB90C6E9739 /* [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\t4F4F210C2A389E9CFFBC1FDA /* [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\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\tF077A86143457CB90C6E9739 /* [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\tinputFileListPaths = (\n\t\t\t\t\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist\",\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputFileListPaths = (\n\t\t\t\t\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist\",\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/* 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\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 = 9.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\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.getxCleanArchitecture;\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\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 = 9.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\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 = 9.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\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.getxCleanArchitecture;\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\tINFOPLIST_FILE = Runner/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.getxCleanArchitecture;\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 = \"self:\">\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/app/config/app_colors.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:getx_clean_architecture/app/extensions/color.dart';\n\nclass AppColors {\n  static Color primary = HexColor(\"05101A\");\n  static Color lightGray = HexColor(\"D3D3D3\");\n}\n"
  },
  {
    "path": "lib/app/config/app_constants.dart",
    "content": "\n"
  },
  {
    "path": "lib/app/config/app_text_styles.dart",
    "content": "import 'package:flutter/material.dart';\n\n/// AppTextStyle format as follows:\n/// [fontWeight][fontSize][colorName][opacity]\n/// Example: bold18White05\n///\nclass AppTextStyles {\n  static TextStyle title = TextStyle(\n    fontSize: 16,\n    fontWeight: FontWeight.w500,\n    color: Colors.black,\n  );\n\n  static TextStyle body = TextStyle(\n    fontSize: 13,\n    color: Colors.grey,\n  );\n}\n"
  },
  {
    "path": "lib/app/core/usecases/no_param_usecase.dart",
    "content": "abstract class NoParamUseCase<Type> {\n  Future<Type> execute();\n}\n"
  },
  {
    "path": "lib/app/core/usecases/pram_usecase.dart",
    "content": "abstract class ParamUseCase<Type, Params> {\n  Future<Type> execute(Params params);\n}\n"
  },
  {
    "path": "lib/app/extensions/color.dart",
    "content": "import 'package:flutter/material.dart';\n\nclass HexColor extends Color {\n  static int _getColorFromHex(String hexColor) {\n    hexColor = hexColor.toUpperCase().replaceAll(\"#\", \"\");\n    if (hexColor.length == 6) {\n      hexColor = \"FF\" + hexColor;\n    }\n    return int.parse(hexColor, radix: 16);\n  }\n\n  HexColor(final String hexColor) : super(_getColorFromHex(hexColor));\n}\n"
  },
  {
    "path": "lib/app/services/local_storage.dart",
    "content": "import 'dart:convert';\n\nimport 'package:get/get.dart';\nimport 'package:getx_clean_architecture/domain/entities/user.dart';\nimport 'package:shared_preferences/shared_preferences.dart';\n\nenum _Key {\n  user,\n}\n\nclass LocalStorageService extends GetxService {\n  SharedPreferences? _sharedPreferences;\n  Future<LocalStorageService> init() async {\n    _sharedPreferences = await SharedPreferences.getInstance();\n    return this;\n  }\n\n  User? get user {\n    final rawJson = _sharedPreferences?.getString(_Key.user.toString());\n    if (rawJson == null) {\n      return null;\n    }\n    Map<String, dynamic> map = jsonDecode(rawJson);\n    return User.fromJson(map);\n  }\n\n  set user(User? value) {\n    if (value != null) {\n      _sharedPreferences?.setString(\n          _Key.user.toString(), json.encode(value.toJson()));\n    } else {\n      _sharedPreferences?.remove(_Key.user.toString());\n    }\n  }\n}\n"
  },
  {
    "path": "lib/app/types/category_type.dart",
    "content": "enum CategoryType { bitcoin, apple, earthquake, animal }\n\nextension CategoryKeyword on CategoryType {\n  String get keyword {\n    switch (this) {\n      case CategoryType.bitcoin:\n        return \"bitcoin\";\n      case CategoryType.apple:\n        return \"apple\";\n      case CategoryType.earthquake:\n        return \"earthquake\";\n      case CategoryType.animal:\n        return \"animal\";\n    }\n  }\n}\n"
  },
  {
    "path": "lib/app/types/tab_type.dart",
    "content": "import 'package:flutter/cupertino.dart';\n\nenum TabType { headline, news, profile }\n\nextension TabItem on TabType {\n  Icon get icon {\n    switch (this) {\n      case TabType.headline:\n        return Icon(CupertinoIcons.home, size: 25);\n      case TabType.news:\n        return Icon(CupertinoIcons.news, size: 25);\n      case TabType.profile:\n        return Icon(CupertinoIcons.person, size: 25);\n    }\n  }\n\n  String get title {\n    switch (this) {\n      case TabType.headline:\n        return \"Headline\";\n      case TabType.news:\n        return \"News\";\n      case TabType.profile:\n        return \"Profile\";\n    }\n  }\n}\n"
  },
  {
    "path": "lib/app/util/dependency.dart",
    "content": "import 'package:get/get.dart';\nimport 'package:getx_clean_architecture/data/repositories/auth_repository.dart';\nimport 'package:getx_clean_architecture/data/repositories/article_repository.dart';\n\nclass DependencyCreator {\n  static init() {\n    Get.lazyPut(() => AuthenticationRepositoryIml());\n    Get.lazyPut(() => ArticleRepositoryIml());\n  }\n}\n"
  },
  {
    "path": "lib/app/util/util.dart",
    "content": "class Utils {\n  static String getImagePath(String name, {String format: 'png'}) {\n    return 'assets/images/$name.$format';\n  }\n}\n"
  },
  {
    "path": "lib/data/models/article_model.dart",
    "content": "import 'package:getx_clean_architecture/domain/entities/article.dart';\nimport 'package:json_annotation/json_annotation.dart';\npart 'article_model.g.dart';\n\n@JsonSerializable()\nclass ArticleModel extends Article {\n  ArticleModel({\n    this.author,\n    this.title,\n    this.description,\n    this.url,\n    this.urlToImage,\n    this.publishedAt,\n    this.content,\n  }) : super(\n            author: author,\n            title: title,\n            description: description,\n            url: url,\n            urlToImage: urlToImage,\n            publishedAt: publishedAt,\n            content: content);\n\n  String? author;\n  String? title;\n  String? description;\n  String? url;\n  String? urlToImage;\n  DateTime? publishedAt;\n  String? content;\n\n  factory ArticleModel.fromJson(Map<String, dynamic> json) =>\n      _$ArticleModelFromJson(json);\n  Map<String, dynamic> toJson() => _$ArticleModelToJson(this);\n}\n"
  },
  {
    "path": "lib/data/models/article_model.g.dart",
    "content": "// GENERATED CODE - DO NOT MODIFY BY HAND\n\npart of 'article_model.dart';\n\n// **************************************************************************\n// JsonSerializableGenerator\n// **************************************************************************\n\nArticleModel _$ArticleModelFromJson(Map<String, dynamic> json) {\n  return ArticleModel(\n    author: json['author'] as String?,\n    title: json['title'] as String?,\n    description: json['description'] as String?,\n    url: json['url'] as String?,\n    urlToImage: json['urlToImage'] as String?,\n    publishedAt: json['publishedAt'] == null\n        ? null\n        : DateTime.parse(json['publishedAt'] as String),\n    content: json['content'] as String?,\n  );\n}\n\nMap<String, dynamic> _$ArticleModelToJson(ArticleModel instance) =>\n    <String, dynamic>{\n      'author': instance.author,\n      'title': instance.title,\n      'description': instance.description,\n      'url': instance.url,\n      'urlToImage': instance.urlToImage,\n      'publishedAt': instance.publishedAt?.toIso8601String(),\n      'content': instance.content,\n    };\n"
  },
  {
    "path": "lib/data/models/paging_model.dart",
    "content": "import 'package:getx_clean_architecture/data/models/article_model.dart';\nimport 'package:getx_clean_architecture/domain/entities/paging.dart';\n\nclass PagingModel extends Paging {\n  PagingModel({\n    required this.totalResults,\n    required this.articles,\n  }) : super(articles: articles, totalResults: totalResults);\n\n  final int totalResults;\n  final List<ArticleModel> articles;\n\n  @override\n  factory PagingModel.fromJson(Map<String, dynamic> json) => PagingModel(\n        totalResults: json[\"totalResults\"],\n        articles:\n            List.from(json[\"articles\"].map((x) => ArticleModel.fromJson(x))),\n      );\n}\n"
  },
  {
    "path": "lib/data/providers/database/firebase_database_provider.dart",
    "content": "\n"
  },
  {
    "path": "lib/data/providers/network/api_endpoint.dart",
    "content": "class APIEndpoint {\n  static String get newsapi => \"https://newsapi.org/v2\";\n}\n"
  },
  {
    "path": "lib/data/providers/network/api_provider.dart",
    "content": "import 'dart:async';\nimport 'dart:io';\nimport 'package:get/get_connect/connect.dart';\nimport 'package:getx_clean_architecture/data/providers/network/api_request_representable.dart';\n\nclass APIProvider {\n  static const requestTimeOut = Duration(seconds: 25);\n  final _client = GetConnect(timeout: requestTimeOut);\n\n  static final _singleton = APIProvider();\n  static APIProvider get instance => _singleton;\n\n  Future request(APIRequestRepresentable request) async {\n    try {\n      final response = await _client.request(\n        request.url,\n        request.method.string,\n        headers: request.headers,\n        query: request.query,\n        body: request.body,\n      );\n      return _returnResponse(response);\n    } on TimeoutException catch (_) {\n      throw TimeOutException(null);\n    } on SocketException {\n      throw FetchDataException('No Internet connection');\n    }\n  }\n\n  dynamic _returnResponse(Response<dynamic> response) {\n    switch (response.statusCode) {\n      case 200:\n        return response.body;\n      case 400:\n        throw BadRequestException(response.body.toString());\n      case 401:\n      case 403:\n        throw UnauthorisedException(response.body.toString());\n      case 404:\n        throw BadRequestException('Not found');\n      case 500:\n        throw FetchDataException('Internal Server Error');\n      default:\n        throw FetchDataException(\n            'Error occured while Communication with Server with StatusCode : ${response.statusCode}');\n    }\n  }\n}\n\nclass AppException implements Exception {\n  final code;\n  final message;\n  final details;\n\n  AppException({this.code, this.message, this.details});\n\n  String toString() {\n    return \"[$code]: $message \\n $details\";\n  }\n}\n\nclass FetchDataException extends AppException {\n  FetchDataException(String? details)\n      : super(\n          code: \"fetch-data\",\n          message: \"Error During Communication\",\n          details: details,\n        );\n}\n\nclass BadRequestException extends AppException {\n  BadRequestException(String? details)\n      : super(\n          code: \"invalid-request\",\n          message: \"Invalid Request\",\n          details: details,\n        );\n}\n\nclass UnauthorisedException extends AppException {\n  UnauthorisedException(String? details)\n      : super(\n          code: \"unauthorised\",\n          message: \"Unauthorised\",\n          details: details,\n        );\n}\n\nclass InvalidInputException extends AppException {\n  InvalidInputException(String? details)\n      : super(\n          code: \"invalid-input\",\n          message: \"Invalid Input\",\n          details: details,\n        );\n}\n\nclass AuthenticationException extends AppException {\n  AuthenticationException(String? details)\n      : super(\n          code: \"authentication-failed\",\n          message: \"Authentication Failed\",\n          details: details,\n        );\n}\n\nclass TimeOutException extends AppException {\n  TimeOutException(String? details)\n      : super(\n          code: \"request-timeout\",\n          message: \"Request TimeOut\",\n          details: details,\n        );\n}\n"
  },
  {
    "path": "lib/data/providers/network/api_request_representable.dart",
    "content": "enum HTTPMethod { get, post, delete, put, patch }\n\nextension HTTPMethodString on HTTPMethod {\n  String get string {\n    switch (this) {\n      case HTTPMethod.get:\n        return \"get\";\n      case HTTPMethod.post:\n        return \"post\";\n      case HTTPMethod.delete:\n        return \"delete\";\n      case HTTPMethod.patch:\n        return \"patch\";\n      case HTTPMethod.put:\n        return \"put\";\n    }\n  }\n}\n\nabstract class APIRequestRepresentable {\n  String get url;\n  String get endpoint;\n  String get path;\n  HTTPMethod get method;\n  Map<String, String>? get headers;\n  Map<String, String>? get query;\n  dynamic get body;\n  Future request();\n}\n"
  },
  {
    "path": "lib/data/providers/network/apis/article_api.dart",
    "content": "\nimport 'package:getx_clean_architecture/data/providers/network/api_endpoint.dart';\nimport 'package:getx_clean_architecture/data/providers/network/api_provider.dart';\nimport 'package:getx_clean_architecture/data/providers/network/api_request_representable.dart';\n\nenum ArticleType { fetchHeadline, fetchNews }\n\nclass ArticleAPI implements APIRequestRepresentable {\n  final ArticleType type;\n  String? keyword;\n  int? page;\n  int? pageSize;\n\n  ArticleAPI._({required this.type, this.keyword, this.page, this.pageSize});\n\n  ArticleAPI.fetchHeadline(int page, int pageSize)\n      : this._(type: ArticleType.fetchHeadline, page: page, pageSize: pageSize);\n  ArticleAPI.fetchNews(String keyword, int page, int pageSize)\n      : this._(\n            type: ArticleType.fetchNews,\n            keyword: keyword,\n            page: page,\n            pageSize: pageSize);\n\n  @override\n  String get endpoint => APIEndpoint.newsapi;\n\n  String get path {\n    switch (type) {\n      case ArticleType.fetchHeadline:\n        return \"/top-headlines\";\n      case ArticleType.fetchNews:\n        return \"/top-headlines\";\n    }\n  }\n\n  @override\n  HTTPMethod get method {\n    return HTTPMethod.get;\n  }\n\n  Map<String, String> get headers =>\n      {\"X-Api-Key\": \"d809d6a547734a67af23365ce5bc8c02\"};\n\n  Map<String, String> get query {\n    switch (type) {\n      case ArticleType.fetchHeadline:\n        return {\"country\": \"us\", \"page\": \"$page\", \"pageSize\": \"$pageSize\"};\n      case ArticleType.fetchNews:\n        return {\"page\": \"$page\", \"pageSize\": \"$pageSize\", \"q\": keyword ?? \"\"};\n    }\n  }\n\n  @override\n  get body => null;\n\n  Future request() {\n    return APIProvider.instance.request(this);\n  }\n\n  @override\n  String get url => endpoint + path;\n}\n"
  },
  {
    "path": "lib/data/providers/network/apis/auth_api.dart",
    "content": "import 'dart:io';\nimport 'package:getx_clean_architecture/data/providers/network/api_endpoint.dart';\nimport 'package:getx_clean_architecture/data/providers/network/api_provider.dart';\nimport 'package:getx_clean_architecture/data/providers/network/api_request_representable.dart';\n\nenum AuthType { login, logout }\n\nclass AuthAPI implements APIRequestRepresentable {\n  final AuthType type;\n  String? username;\n  String? password;\n\n  AuthAPI._({required this.type, this.password, this.username});\n\n  AuthAPI.login(String username, String repo) : this._(type: AuthType.login);\n  AuthAPI.register(String password, String username)\n      : this._(type: AuthType.login, username: username, password: password);\n\n  @override\n  String get endpoint => APIEndpoint.newsapi;\n\n  String get path {\n    switch (type) {\n      case AuthType.login:\n        return \"/$username/$username\";\n      case AuthType.logout:\n        return \"/login\";\n      default:\n        return \"\";\n    }\n  }\n\n  @override\n  HTTPMethod get method {\n    return HTTPMethod.post;\n  }\n\n  Map<String, String> get headers =>\n      {HttpHeaders.contentTypeHeader: 'application/json'};\n\n  Map<String, String> get query {\n    return {HttpHeaders.contentTypeHeader: 'application/json'};\n  }\n\n  @override\n  get body => null;\n\n  Future request() {\n    return APIProvider.instance.request(this);\n  }\n\n  @override\n  String get url => endpoint + path;\n}\n"
  },
  {
    "path": "lib/data/repositories/article_repository.dart",
    "content": "import 'package:getx_clean_architecture/data/models/paging_model.dart';\nimport 'package:getx_clean_architecture/data/providers/network/apis/article_api.dart';\nimport 'package:getx_clean_architecture/domain/repositories/article_repository.dart';\n\nclass ArticleRepositoryIml extends ArticleRepository {\n  @override\n  Future<PagingModel> fetchHeadline(int page, int pageSize) async {\n    final response = await ArticleAPI.fetchHeadline(page, pageSize).request();\n    return PagingModel.fromJson(response);\n  }\n\n  @override\n  Future<PagingModel> fetchNewsByCategory(\n      String keyword, int page, int pageSize) async {\n    final response =\n        await ArticleAPI.fetchNews(keyword, page, pageSize).request();\n    return PagingModel.fromJson(response);\n  }\n}\n"
  },
  {
    "path": "lib/data/repositories/auth_repository.dart",
    "content": "import 'package:getx_clean_architecture/domain/entities/user.dart';\nimport 'package:getx_clean_architecture/domain/repositories/auth_repository.dart';\n\nclass AuthenticationRepositoryIml extends AuthenticationRepository {\n  @override\n  Future<User> signUp(String username) async {\n    //Fake sign up action\n    await Future.delayed(Duration(seconds: 1));\n    return User(username: username);\n  }\n}\n"
  },
  {
    "path": "lib/domain/entities/article.dart",
    "content": "class Article {\n  Article({\n    this.author,\n    this.title,\n    this.description,\n    this.url,\n    this.urlToImage,\n    this.publishedAt,\n    this.content,\n  });\n\n  String? author;\n  String? title;\n  String? description;\n  String? url;\n  String? urlToImage;\n  DateTime? publishedAt;\n  String? content;\n}\n"
  },
  {
    "path": "lib/domain/entities/paging.dart",
    "content": "import 'package:getx_clean_architecture/domain/entities/article.dart';\n\nclass Paging {\n  Paging({\n    required this.totalResults,\n    required this.articles,\n  });\n\n  int totalResults;\n  List<Article> articles;\n}\n"
  },
  {
    "path": "lib/domain/entities/user.dart",
    "content": "class User {\n  User({this.username});\n\n  String? username;\n\n  factory User.fromJson(Map<String, dynamic>? json) {\n    return User(\n      username: json?['username'] as String?,\n    );\n  }\n\n  Map<String, dynamic> toJson() => {\n        'username': username,\n      };\n}\n"
  },
  {
    "path": "lib/domain/repositories/article_repository.dart",
    "content": "import 'package:getx_clean_architecture/domain/entities/paging.dart';\n\nabstract class ArticleRepository {\n  Future<Paging> fetchHeadline(int page, int pageSize);\n  Future<Paging> fetchNewsByCategory(String keyword, int page, int pageSize);\n}\n"
  },
  {
    "path": "lib/domain/repositories/auth_repository.dart",
    "content": "import 'package:getx_clean_architecture/domain/entities/user.dart';\n\nabstract class AuthenticationRepository {\n  Future<User> signUp(String username);\n}\n"
  },
  {
    "path": "lib/domain/usecases/fetch_headline_use_case.dart",
    "content": "import 'package:getx_clean_architecture/app/core/usecases/pram_usecase.dart';\nimport 'package:getx_clean_architecture/domain/entities/paging.dart';\nimport 'package:getx_clean_architecture/domain/repositories/article_repository.dart';\nimport 'package:tuple/tuple.dart';\n\nclass FetchHeadlineUseCase extends ParamUseCase<Paging, Tuple2<int, int>> {\n  final ArticleRepository _repo;\n  FetchHeadlineUseCase(this._repo);\n\n  @override\n  Future<Paging> execute(Tuple2 param) {\n    return _repo.fetchHeadline(param.item1, param.item2);\n  }\n}\n"
  },
  {
    "path": "lib/domain/usecases/fetch_news_use_case.dart",
    "content": "import 'package:getx_clean_architecture/app/core/usecases/pram_usecase.dart';\nimport 'package:getx_clean_architecture/domain/entities/paging.dart';\nimport 'package:getx_clean_architecture/domain/repositories/article_repository.dart';\nimport 'package:tuple/tuple.dart';\n\nclass FetchNewsUseCase extends ParamUseCase<Paging, Tuple3<String, int, int>> {\n  final ArticleRepository _repo;\n  FetchNewsUseCase(this._repo);\n\n  @override\n  Future<Paging> execute(Tuple3 param) {\n    return _repo.fetchNewsByCategory(param.item1, param.item2, param.item3);\n  }\n}\n"
  },
  {
    "path": "lib/domain/usecases/signup_use_case.dart",
    "content": "import 'package:getx_clean_architecture/app/core/usecases/pram_usecase.dart';\nimport 'package:getx_clean_architecture/domain/entities/user.dart';\nimport 'package:getx_clean_architecture/domain/repositories/auth_repository.dart';\n\nclass SignUpUseCase extends ParamUseCase<User, String> {\n  final AuthenticationRepository _repo;\n  SignUpUseCase(this._repo);\n\n  @override\n  Future<User> execute(String username) {\n    return _repo.signUp(username);\n  }\n}\n"
  },
  {
    "path": "lib/generated_plugin_registrant.dart",
    "content": "//\n// Generated file. Do not edit.\n//\n\n// ignore_for_file: lines_longer_than_80_chars\n\nimport 'package:shared_preferences_web/shared_preferences_web.dart';\n\nimport 'package:flutter_web_plugins/flutter_web_plugins.dart';\n\n// ignore: public_member_api_docs\nvoid registerPlugins(Registrar registrar) {\n  SharedPreferencesPlugin.registerWith(registrar);\n  registrar.registerMessageHandler();\n}\n"
  },
  {
    "path": "lib/main.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:get/get.dart';\nimport 'package:getx_clean_architecture/app/services/local_storage.dart';\nimport 'package:getx_clean_architecture/app/util/dependency.dart';\nimport 'package:getx_clean_architecture/presentation/app.dart';\n\nvoid main() async {\n  DependencyCreator.init();\n  WidgetsFlutterBinding.ensureInitialized();\n  await initServices();\n  runApp(App());\n}\n\ninitServices() async {\n  print('starting services ...');\n  await Get.putAsync(() => LocalStorageService().init());\n  print('All services started...');\n}\n"
  },
  {
    "path": "lib/presentation/app.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:get/get.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/auth/auth_binding.dart';\nimport 'package:getx_clean_architecture/presentation/pages/home/home_page.dart';\n\nclass App extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return GetCupertinoApp(\n      initialRoute: \"/\",\n      initialBinding: AuthBinding(),\n      home: HomePage(),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/presentation/controllers/auth/auth_binding.dart",
    "content": "import 'package:get/get.dart';\nimport 'package:getx_clean_architecture/data/repositories/auth_repository.dart';\nimport 'package:getx_clean_architecture/domain/usecases/signup_use_case.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/auth/auth_controller.dart';\n\nclass AuthBinding extends Bindings {\n  @override\n  void dependencies() {\n    Get.lazyPut(() => SignUpUseCase(Get.find<AuthenticationRepositoryIml>()));\n    Get.put(AuthController(Get.find()), permanent: true);\n  }\n}\n"
  },
  {
    "path": "lib/presentation/controllers/auth/auth_controller.dart",
    "content": "import 'package:get/get.dart';\nimport 'package:getx_clean_architecture/app/services/local_storage.dart';\nimport 'package:getx_clean_architecture/domain/entities/user.dart';\nimport 'package:getx_clean_architecture/domain/usecases/signup_use_case.dart';\n\nclass AuthController extends GetxController {\n  AuthController(this._loginUseCase);\n  final SignUpUseCase _loginUseCase;\n  final store = Get.find<LocalStorageService>();\n  var isLoggedIn = false.obs;\n\n  User? get user => store.user;\n\n  @override\n  void onInit() async {\n    super.onInit();\n    isLoggedIn.value = store.user != null;\n  }\n\n  signUpWith(String username) async {\n    try {\n      final user = await _loginUseCase.execute(username);\n      store.user = user;\n      isLoggedIn.value = true;\n      isLoggedIn.refresh();\n    } catch (error) {}\n  }\n\n  logout() {\n    store.user = null;\n    isLoggedIn.value = false;\n  }\n}\n"
  },
  {
    "path": "lib/presentation/controllers/headline/headline_binding.dart",
    "content": "import 'package:get/get.dart';\nimport 'package:getx_clean_architecture/domain/usecases/fetch_headline_use_case.dart';\nimport 'package:getx_clean_architecture/data/repositories/article_repository.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/headline/headline_controller.dart';\n\nclass HeadlineBinding extends Bindings {\n  @override\n  void dependencies() {\n    Get.lazyPut(() => FetchHeadlineUseCase(Get.find<ArticleRepositoryIml>()));\n    Get.lazyPut(() => HeadlineController(Get.find()));\n  }\n}\n"
  },
  {
    "path": "lib/presentation/controllers/headline/headline_controller.dart",
    "content": "import 'package:get/get.dart';\nimport 'package:getx_clean_architecture/domain/entities/article.dart';\nimport 'package:getx_clean_architecture/domain/entities/paging.dart';\nimport 'package:getx_clean_architecture/domain/usecases/fetch_headline_use_case.dart';\nimport 'package:tuple/tuple.dart';\n\nclass HeadlineController extends GetxController {\n  HeadlineController(this._fetchHeadlineUseCase);\n  final FetchHeadlineUseCase _fetchHeadlineUseCase;\n  int _currentPage = 1;\n  int _pageSize = 20;\n  var _isLoadMore = false;\n  var _paging = Rx<Paging?>(null);\n\n  var articles = RxList<Article>([]);\n\n  fetchData() async {\n    final newPaging =\n        await _fetchHeadlineUseCase.execute(Tuple2(_currentPage, _pageSize));\n    articles.assignAll(newPaging.articles);\n    _paging.value = newPaging;\n  }\n\n  loadMore() async {\n    final totalResults = _paging.value?.totalResults ?? 0;\n    if (totalResults / _pageSize <= _currentPage) return;\n    if (_isLoadMore) return;\n    _isLoadMore = true;\n    _currentPage += 1;\n    final newPaging =\n        await _fetchHeadlineUseCase.execute(Tuple2(_currentPage, _pageSize));\n    articles.addAll(newPaging.articles);\n    _paging.value?.totalResults = newPaging.totalResults;\n    _isLoadMore = false;\n  }\n}\n"
  },
  {
    "path": "lib/presentation/controllers/news/news_binding.dart",
    "content": "import 'package:get/get.dart';\nimport 'package:getx_clean_architecture/data/repositories/article_repository.dart';\nimport 'package:getx_clean_architecture/domain/usecases/fetch_news_use_case.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/news/news_controller.dart';\n\nclass NewsBinding extends Bindings {\n  @override\n  void dependencies() {\n    Get.lazyPut(() => FetchNewsUseCase(Get.find<ArticleRepositoryIml>()));\n    Get.lazyPut(() => NewsController(Get.find()));\n  }\n}\n"
  },
  {
    "path": "lib/presentation/controllers/news/news_controller.dart",
    "content": "import 'package:get/get.dart';\nimport 'package:getx_clean_architecture/domain/entities/article.dart';\nimport 'package:getx_clean_architecture/domain/entities/paging.dart';\nimport 'package:getx_clean_architecture/domain/usecases/fetch_news_use_case.dart';\nimport 'package:tuple/tuple.dart';\n\nclass NewsController extends GetxController {\n  NewsController(this._fetchNewlineUseCase);\n  final FetchNewsUseCase _fetchNewlineUseCase;\n  int _currentPage = 1;\n  int _pageSize = 20;\n  var _isLoadMore = false;\n  var _paging = Rx<Paging?>(null);\n\n  var articles = RxList<Article>([]);\n\n  fetchData(String keyword) async {\n    _currentPage = 1;\n    final newPaging = await _fetchNewlineUseCase\n        .execute(Tuple3(keyword, _currentPage, _pageSize));\n    articles.assignAll(newPaging.articles);\n    _paging.value = newPaging;\n  }\n\n  loadMore(String keyword) async {\n    final totalResults = _paging.value?.totalResults ?? 0;\n    if (totalResults / _pageSize <= _currentPage) return;\n    if (_isLoadMore) return;\n    _isLoadMore = true;\n    _currentPage += 1;\n    final newPaging = await _fetchNewlineUseCase\n        .execute(Tuple3(keyword, _currentPage, _pageSize));\n    articles.addAll(newPaging.articles);\n    _paging.value?.totalResults = newPaging.totalResults;\n    _isLoadMore = false;\n  }\n}\n"
  },
  {
    "path": "lib/presentation/pages/detail/detail_page.dart",
    "content": "import 'package:cached_network_image/cached_network_image.dart';\nimport 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport 'package:getx_clean_architecture/app/config/app_text_styles.dart';\nimport 'package:getx_clean_architecture/domain/entities/article.dart';\n\nclass DetailPage extends StatelessWidget {\n  final Article article;\n\n  DetailPage({required this.article});\n\n  @override\n  Widget build(BuildContext context) {\n    return CupertinoPageScaffold(\n      navigationBar: CupertinoNavigationBar(\n        middle: Text('Detail'),\n      ),\n      child: SafeArea(\n        child: Container(\n          padding: const EdgeInsets.symmetric(horizontal: 5),\n          child: Column(\n            children: [\n              Text(\n                article.title ?? \"\",\n                style: AppTextStyles.title,\n                maxLines: null,\n              ),\n              SizedBox(\n                height: 10,\n              ),\n              AspectRatio(\n                aspectRatio: 16 / 9,\n                child: CachedNetworkImage(\n                  memCacheHeight: 150,\n                  memCacheWidth: 150,\n                  imageBuilder: (context, imageProvider) => Container(\n                    decoration: BoxDecoration(\n                      image: DecorationImage(\n                        image: imageProvider,\n                        fit: BoxFit.cover,\n                      ),\n                    ),\n                  ),\n                  placeholder: (context, url) => CupertinoActivityIndicator(),\n                  errorWidget: (context, url, error) => Container(\n                    color: Colors.grey,\n                  ),\n                  imageUrl: article.urlToImage ?? \"\",\n                ),\n              ),\n              SizedBox(\n                height: 10,\n              ),\n              Text(\n                article.content ?? \"\",\n                style: AppTextStyles.body,\n              ),\n            ],\n          ),\n        ),\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/presentation/pages/headline/headline_page.dart",
    "content": "import 'package:flutter/cupertino.dart';\nimport 'package:get/get.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/headline/headline_controller.dart';\nimport 'package:getx_clean_architecture/presentation/pages/detail/detail_page.dart';\nimport 'package:getx_clean_architecture/presentation/pages/headline/views/article_cell.dart';\n\nclass HeadlinePage extends GetView<HeadlineController> {\n  final _scrollController = ScrollController();\n\n  @override\n  Widget build(BuildContext context) {\n    return GetX(\n      init: controller,\n      initState: (state) {\n        controller.fetchData();\n      },\n      didUpdateWidget: (old, newState) {\n        _scrollController.addListener(_scrollListener);\n      },\n      dispose: (state) {\n        _scrollController.removeListener(_scrollListener);\n      },\n      builder: (_) {\n        return CupertinoPageScaffold(\n          navigationBar: CupertinoNavigationBar(\n            middle: Text('Headline'),\n          ),\n          child: ListView.builder(\n            controller: _scrollController,\n            itemCount: controller.articles.length,\n            itemBuilder: (context, index) {\n              final article = controller.articles[index];\n              return GestureDetector(\n                onTap: () {\n                  Get.to(() => DetailPage(article: article));\n                },\n                child: ArticleCell(article: article),\n              );\n            },\n          ),\n        );\n      },\n    );\n  }\n\n  void _scrollListener() {\n    if (_scrollController.position.extentAfter < 500) {\n      print(\"load more\");\n      controller.loadMore();\n    }\n  }\n}\n"
  },
  {
    "path": "lib/presentation/pages/headline/views/article_cell.dart",
    "content": "import 'package:cached_network_image/cached_network_image.dart';\nimport 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport 'package:getx_clean_architecture/app/config/app_text_styles.dart';\nimport 'package:jiffy/jiffy.dart';\nimport 'package:getx_clean_architecture/domain/entities/article.dart';\n\nclass ArticleCell extends StatelessWidget {\n  final Article article;\n  ArticleCell({required this.article});\n  @override\n  Widget build(BuildContext context) {\n    return Container(\n      padding: const EdgeInsets.all(10),\n      height: 100,\n      child: Row(\n        children: [\n          Container(\n            margin: const EdgeInsets.only(right: 10),\n            child: CachedNetworkImage(\n              width: 120,\n              memCacheHeight: 150,\n              memCacheWidth: 150,\n              imageBuilder: (context, imageProvider) => Container(\n                decoration: BoxDecoration(\n                  image: DecorationImage(\n                    image: imageProvider,\n                    fit: BoxFit.cover,\n                  ),\n                ),\n              ),\n              placeholder: (context, url) => CupertinoActivityIndicator(),\n              errorWidget: (context, url, error) => Container(\n                color: Colors.grey,\n              ),\n              imageUrl: article.urlToImage ?? \"\",\n            ),\n          ),\n          Expanded(\n            child: Column(\n              crossAxisAlignment: CrossAxisAlignment.start,\n              children: [\n                Text(\n                  article.title ?? \"\",\n                  maxLines: 2,\n                  style: AppTextStyles.title,\n                ),\n                Spacer(),\n                Text(\n                  article.author ?? \"\",\n                  maxLines: 1,\n                  style: AppTextStyles.body,\n                ),\n                Text(\n                  Jiffy(article.publishedAt).yMMMMd,\n                  maxLines: 1,\n                  style: AppTextStyles.body,\n                ),\n              ],\n            ),\n          ),\n        ],\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/presentation/pages/home/home_page.dart",
    "content": "import 'package:flutter/cupertino.dart';\nimport 'package:get/get.dart';\nimport 'package:getx_clean_architecture/app/config/app_colors.dart';\nimport 'package:getx_clean_architecture/app/types/tab_type.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/auth/auth_controller.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/headline/headline_binding.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/news/news_binding.dart';\nimport 'package:getx_clean_architecture/presentation/pages/headline/headline_page.dart';\nimport 'package:getx_clean_architecture/presentation/pages/news/news_page.dart';\nimport 'package:getx_clean_architecture/presentation/pages/profile/profile_page.dart';\n\nclass HomePage extends GetView<AuthController> {\n  @override\n  Widget build(BuildContext context) {\n    return CupertinoTabScaffold(\n      tabBar: CupertinoTabBar(\n        items: TabType.values\n            .map((e) => BottomNavigationBarItem(icon: e.icon, label: e.title))\n            .toList(),\n        inactiveColor: AppColors.lightGray,\n        activeColor: AppColors.primary,\n      ),\n      tabBuilder: (context, index) {\n        final type = TabType.values[index];\n        switch (type) {\n          case TabType.headline:\n            HeadlineBinding().dependencies();\n            return HeadlinePage();\n          case TabType.news:\n            NewsBinding().dependencies();\n            return NewsPage();\n          case TabType.profile:\n            return ProfilePage();\n        }\n      },\n    );\n  }\n}\n"
  },
  {
    "path": "lib/presentation/pages/news/news_page.dart",
    "content": "import 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport 'package:get/get.dart';\nimport 'package:getx_clean_architecture/app/types/category_type.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/news/news_controller.dart';\nimport 'package:getx_clean_architecture/presentation/pages/detail/detail_page.dart';\nimport 'package:getx_clean_architecture/presentation/pages/headline/views/article_cell.dart';\n\nclass NewsPage extends StatefulWidget {\n  @override\n  _NewsPagePage createState() => _NewsPagePage();\n}\n\nclass _NewsPagePage extends State<NewsPage> {\n  final NewsController newsController = Get.find();\n  final _scrollController = ScrollController();\n  CategoryType _currentCategory = CategoryType.bitcoin;\n\n  @override\n  Widget build(BuildContext context) {\n    return GetX(\n      init: newsController,\n      didUpdateWidget: (old, newState) {\n        _scrollController.addListener(_scrollListener);\n      },\n      dispose: (state) {\n        _scrollController.removeListener(_scrollListener);\n      },\n      builder: (_) {\n        return CupertinoPageScaffold(\n          navigationBar: CupertinoNavigationBar(\n            middle: const Text('News'),\n            trailing: TextButton(\n                onPressed: () {\n                  _selectCategory(context);\n                },\n                child: Text(_currentCategory.keyword.capitalizeFirst ?? \"\")),\n          ),\n          child: ListView.builder(\n            controller: _scrollController,\n            itemCount: newsController.articles.length,\n            itemBuilder: (context, index) {\n              final article = newsController.articles[index];\n              return GestureDetector(\n                onTap: () {\n                  Get.to(() => DetailPage(article: article));\n                },\n                child: ArticleCell(article: article),\n              );\n            },\n          ),\n        );\n      },\n    );\n  }\n\n  _selectCategory(BuildContext context) {\n    final actions = CategoryType.values\n        .map(\n          (e) => CupertinoActionSheetAction(\n            child: Text(e.keyword.capitalizeFirst ?? \"\"),\n            onPressed: () {\n              setState(() {\n                _currentCategory = e;\n              });\n              newsController.fetchData(e.keyword);\n              Navigator.pop(context);\n            },\n          ),\n        )\n        .toList();\n\n    showCupertinoModalPopup<void>(\n      context: context,\n      builder: (BuildContext context) => CupertinoActionSheet(\n        title: const Text('Select category'),\n        actions: actions,\n      ),\n    );\n  }\n\n  _scrollListener() {\n    if (_scrollController.position.extentAfter < 500) {\n      newsController.loadMore(_currentCategory.keyword);\n    }\n  }\n}\n"
  },
  {
    "path": "lib/presentation/pages/profile/profile_page.dart",
    "content": "import 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport 'package:get/get.dart';\nimport 'package:getx_clean_architecture/app/config/app_colors.dart';\nimport 'package:getx_clean_architecture/app/config/app_text_styles.dart';\nimport 'package:getx_clean_architecture/presentation/controllers/auth/auth_controller.dart';\n\nclass ProfilePage extends GetView<AuthController> {\n  @override\n  Widget build(BuildContext context) {\n    return GetX(\n      init: controller,\n      builder: (_) {\n        return CupertinoPageScaffold(\n          navigationBar: CupertinoNavigationBar(\n            middle: Text('Profile'),\n          ),\n          child: controller.isLoggedIn.value\n              ? SignInView()\n              : SignUpView(\n                  onRegister: (username) {\n                    controller.signUpWith(username);\n                  },\n                ),\n        );\n      },\n    );\n  }\n}\n\nclass SignInView extends GetView<AuthController> {\n  @override\n  Widget build(BuildContext context) {\n    return SafeArea(\n      child: Container(\n        padding: const EdgeInsets.symmetric(horizontal: 20),\n        child: Column(\n          crossAxisAlignment: CrossAxisAlignment.center,\n          children: [\n            SizedBox(height: 50),\n            _buildItem(\n              \"Username:\",\n              Text(\n                controller.user?.username ?? \"\",\n                style: AppTextStyles.title,\n              ),\n            ),\n            TextButton(onPressed: controller.logout, child: Text(\"Logout\")),\n          ],\n        ),\n      ),\n    );\n  }\n\n  _buildItem(String title, Widget child) {\n    return Row(\n      children: [\n        Text(\n          title,\n          style: AppTextStyles.title,\n        ),\n        SizedBox(\n          width: 10,\n        ),\n        child\n      ],\n    );\n  }\n}\n\nclass SignUpView extends StatelessWidget {\n  final _userNameController = TextEditingController();\n  final Function(String) onRegister;\n\n  SignUpView({required this.onRegister});\n  @override\n  Widget build(BuildContext context) {\n    return SafeArea(\n      child: Container(\n        padding: EdgeInsets.symmetric(horizontal: 20),\n        child: Column(\n          mainAxisAlignment: MainAxisAlignment.start,\n          children: [\n            SizedBox(height: 50),\n            SizedBox(\n              height: 50,\n              child: Text(\n                \"Register your username\",\n                style: AppTextStyles.title,\n              ),\n            ),\n            SizedBox(height: 50),\n            _buildLoginForm(context),\n            SizedBox(height: 50),\n            _buildLoginButton(),\n          ],\n        ),\n      ),\n    );\n  }\n\n  Widget _buildLoginForm(BuildContext context) {\n    return Container(\n      height: 50,\n      child: CupertinoTextField(\n        keyboardType: TextInputType.emailAddress,\n        placeholder: \"Enter username\",\n        controller: _userNameController,\n      ),\n    );\n  }\n\n  Widget _buildLoginButton() {\n    return MaterialButton(\n      onPressed: () {\n        onRegister(_userNameController.text);\n      },\n      child: Text(\n        \"Register\",\n        style: AppTextStyles.body,\n      ),\n      color: AppColors.primary,\n      elevation: 0,\n      minWidth: 350,\n      height: 55,\n      shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),\n    );\n  }\n}\n"
  },
  {
    "path": "pubspec.yaml",
    "content": "name: getx_clean_architecture\ndescription: A Flutter Clean Architecture Using GetX.\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.12.0 <3.0.0\"\n\ndependencies:\n  flutter:\n    sdk: flutter\n  get: ^4.1.4\n  tuple: ^2.0.0\n  cached_network_image: ^3.1.0\n  json_annotation:\n  jiffy: ^4.1.0\n  shared_preferences: ^2.0.6\n  visibility_detector: ^0.2.0\n  # The following adds the Cupertino Icons font to your application.\n  # Use with the CupertinoIcons class for iOS style icons.\n  cupertino_icons: ^1.0.2\n\ndev_dependencies:\n  flutter_test:\n    sdk: flutter\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  # 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/images/\n  # assets:\n  #   - images/a_dot_burr.jpeg\n  #   - images/a_dot_ham.jpeg\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/data/headline_sample.json",
    "content": "{\"status\":\"ok\",\"totalResults\":38,\"articles\":[{\"source\":{\"id\":\"fox-news\",\"name\":\"Fox News\"},\"author\":\"Jon Street\",\"title\":\"Two more Texas Democrats test positive for COVID after fleeing election vote - Fox News\",\"description\":\"Two more Texas Democrats have tested positive for coronavirus during the trip to Washington, D.C., just one day after three of their colleagues learned they had contracted the virus as well.\",\"url\":\"https://www.foxnews.com/politics/texas-democrats-test-positive-for-covid-in-dc\",\"urlToImage\":\"https://static.foxnews.com/foxnews.com/content/uploads/2021/07/image__9__720.png\",\"publishedAt\":\"2021-07-19T01:59:01Z\",\"content\":\"Two more Texas Democrats have tested positive for coronavirus during their trip to Washington, D.C., just one day after three of their colleagues learned they had contracted the virus as well. \\r\\nAcco… [+2105 chars]\"},{\"source\":{\"id\":\"cnn\",\"name\":\"CNN\"},\"author\":\"Analysis by Paul LeBlanc, CNN\",\"title\":\"Here's what vaccinated people need to know as Covid case counts rise - CNN \",\"description\":\"Biden takes aim at Facebook. President Joe Biden said Friday that social media platforms like Facebook are \\\"killing people\\\" with misinformation surrounding the Covid-19 pandemic.\",\"url\":\"https://www.cnn.com/2021/07/18/politics/what-matters-for-july-18/index.html\",\"urlToImage\":\"https://cdn.cnn.com/cnnnext/dam/assets/210714234335-vacuna-covid-variante-delta-super-tease.jpg\",\"publishedAt\":\"2021-07-19T00:30:00Z\",\"content\":null},{\"source\":{\"id\":null,\"name\":\"New York Times\"},\"author\":\"Matt Craig, Livia Albeck-Ripka\",\"title\":\"Wary and Weary, Los Angeles Largely Accepts Restored Mask Mandate - The New York Times\",\"description\":\"Los Angeles County on Sunday became the first major county to revert to requiring masks for all people indoors in public spaces.\",\"url\":\"https://www.nytimes.com/2021/07/18/us/la-masks-covid.html\",\"urlToImage\":\"https://static01.nyt.com/images/2021/07/18/us/18VIRUS-LAMASK-3/18VIRUS-LAMASK-3-facebookJumbo.jpg\",\"publishedAt\":\"2021-07-19T00:23:04Z\",\"content\":\"County health officials came under public pressure in January, when the decision to continue vaccinating only health care workers contradicted a state announcement of eligibility for adults age 65 an… [+1603 chars]\"},{\"source\":{\"id\":null,\"name\":\"PEOPLE\"},\"author\":\"Abigail Adams\",\"title\":\"Jamie Lynn Spears Shares Cryptic Post About 'Peace' After Sister Britney Spears' Impassioned Instagram Message - Yahoo Entertainment\",\"description\":\"The<em> Zoey 101</em> star shared a message of her own alongside some mirror selfies in a revealing red ensemble on Sunday\",\"url\":\"https://people.com/music/jamie-lynn-spears-preaches-peace-after-sister-britney-spears-message/\",\"urlToImage\":\"https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=%5B980%2C306%5D&w=2000&h=1000&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F20%2F2020%2F11%2F11%2Fbritney-spears-2000.jpg\",\"publishedAt\":\"2021-07-19T00:16:57Z\",\"content\":\"Jamie Lynn Spears is taking some time to reflect.\\r\\nThe Zoey 101 star, 30, posed for some mirror selfies on Sunday after being publicly called out by her sister Britney Spears on Instagram Saturday.\\r\\n… [+3131 chars]\"},{\"source\":{\"id\":\"google-news\",\"name\":\"Google News\"},\"author\":null,\"title\":\"Jeff Bezos & Blue Origin Prepare For Space Launch - NBC News\",\"description\":null,\"url\":\"https://news.google.com/__i/rss/rd/articles/CBMiK2h0dHBzOi8vd3d3LnlvdXR1YmUuY29tL3dhdGNoP3Y9TFRTSlFNb1Q5MHfSAQA?oc=5\",\"urlToImage\":null,\"publishedAt\":\"2021-07-19T00:00:07Z\",\"content\":null},{\"source\":{\"id\":null,\"name\":\"ESPN\"},\"author\":null,\"title\":\"United States vs. Canada - Football Match Report - July 18, 2021 - ESPN\",\"description\":\"Get a report of the United States vs. Canada 2021 CONCACAF Gold Cup, Group Stage football match.\",\"url\":\"https://www.espn.com/soccer/report/_/gameId/602704\",\"urlToImage\":\"https://a2.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0718%2Fr881912_1296x729_16%2D9.jpg\",\"publishedAt\":\"2021-07-18T23:33:39Z\",\"content\":\"Shaq Moore scored 20 seconds in and the United States beat Canada 1-0 on Sunday to win Group B at the CONCACAF Gold Cup.\\r\\nMoore's goal was the fastest in Gold Cup history and the fastest for the U.S.… [+2296 chars]\"},{\"source\":{\"id\":\"usa-today\",\"name\":\"USA Today\"},\"author\":\"Bryan Alexander, USA TODAY\",\"title\":\"LeBron James dunks on 'Space Jam: A New Legacy' haters, plus that epic Michael Jordan 'cameo' - USA TODAY\",\"description\":\"LeBron James trash-talked \\\"Space Jam: A New Legacy\\\" haters on Twitter. All about that box-office burn and Michael Jordan's appearance. Spoilers ahead!\",\"url\":\"https://www.usatoday.com/story/entertainment/movies/2021/07/18/space-jam-lebron-james-taunts-haters-plus-michael-jordan-spoilers/7988539002/\",\"urlToImage\":\"https://www.gannett-cdn.com/presto/2021/07/18/USAT/88f58ee5-3cbe-4662-8b12-4fca33f52e68-rev-1-SJM-FP-0010_High_Res_JPEG.jpeg?auto=webp&crop=2904,1634,x1300,y36&format=pjpg&width=1200\",\"publishedAt\":\"2021-07-18T23:04:30Z\",\"content\":\"<ul><li>\\\"Space Jam: A New Legacy\\\" won the box office crown over \\\"Black Widow\\\" this weekend.</li><li>LeBron James tweeted an article about the win, writing \\\"Hi Haters!\\\" with a laughing emoji.</li><li>… [+3831 chars]\"},{\"source\":{\"id\":\"fox-news\",\"name\":\"Fox News\"},\"author\":\"Brittany De Lea\",\"title\":\"Biden poses with ice cream cone on 'national ice cream day' - Fox News\",\"description\":\"President Biden on Sunday celebrated national ice cream day by posting an image of himself grabbing a large cone and posing for a selfie.\",\"url\":\"https://www.foxnews.com/politics/biden-ice-cream-on-natonal-ice-cream-day\",\"urlToImage\":\"https://static.foxnews.com/foxnews.com/content/uploads/2021/06/AP21166471478931.jpg\",\"publishedAt\":\"2021-07-18T22:50:20Z\",\"content\":\"President Joe Biden on Sunday celebrated national ice cream day by posting an image of himself grabbing a large cone and posing for a selfie.\\r\\nThe president posted the picture on Twitter with the cap… [+698 chars]\"},{\"source\":{\"id\":null,\"name\":\"CBS Sports\"},\"author\":\"\",\"title\":\"NBA Finals: Monty Williams says Suns must be willing to 'do whatever it takes' to force Game 7 in Phoenix - CBS Sports\",\"description\":\"After winning the first two games of the series, the Suns have lost three straight and are facing elimination\",\"url\":\"https://www.cbssports.com/nba/news/nba-finals-monty-williams-says-suns-must-be-willing-to-do-whatever-it-takes-to-force-game-7-in-phoenix/\",\"urlToImage\":\"https://sportshub.cbsistatic.com/i/r/2021/05/18/f239e087-d96b-4a20-b06c-d6355c9a4101/thumbnail/1200x675/032f88a2252f15fb9aa547c05e4b873d/monty-williams.jpg\",\"publishedAt\":\"2021-07-18T22:49:00Z\",\"content\":\"Things started off really well for the Phoenix Suns in the 2021 NBA Finals. They won the first two games of the series and appeared poised to win their first championship in franchise history. Howeve… [+2536 chars]\"},{\"source\":{\"id\":null,\"name\":\"NPR\"},\"author\":\"\",\"title\":\"2 Weeks After Surgery, The Pope Is Back At St. Peter's Square - NPR\",\"description\":\"The pope offered blessings for people affected by flooding in Western Europe, rioting in South Africa and protests in Cuba.\",\"url\":\"https://www.npr.org/2021/07/18/1017646963/pope-francis-delivers-first-address-since-leaving-hospital\",\"urlToImage\":\"https://media.npr.org/assets/img/2021/07/18/ap_21199392116038_wide-67bbab4e11e623e786fb3ae24ad207630f1ca775.jpg?s=1400\",\"publishedAt\":\"2021-07-18T22:12:04Z\",\"content\":\"Pope Francis salutes the crowd as he arrives for the Angelus noon prayer from the window of his studio overlooking St. Peter's Square at the Vatican on Sunday.\\r\\nAlessandra Tarantino/AP\\r\\nTwo weeks aft… [+2016 chars]\"},{\"source\":{\"id\":\"fox-news\",\"name\":\"Fox News\"},\"author\":\"New York Post\",\"title\":\"Athletes to sleep on ‘anti-sex’ cardboard beds at Olympic Games amid COVID - Fox News\",\"description\":\"Lustful Olympic athletes should think twice before making the bed rock in Tokyo.\",\"url\":\"https://www.foxnews.com/sports/athletes-to-sleep-on-anti-sex-cardboard-beds-at-olympic-games-amid-covid\",\"urlToImage\":\"https://static.foxnews.com/foxnews.com/content/uploads/2020/03/Tokyo-Olympics11.jpg\",\"publishedAt\":\"2021-07-18T22:07:28Z\",\"content\":\"Lustful Olympic athletes should think twice before making the bed rock in Tokyo.\\r\\nThe worlds best sports competitors are set to spend their nights on cardboard beds allegedly designed to collapse und… [+2083 chars]\"},{\"source\":{\"id\":\"cnn\",\"name\":\"CNN\"},\"author\":\"Rachel Trent, CNN\",\"title\":\"Astronauts on International Space Station are growing chile peppers in a first for NASA - CNN \",\"description\":\"Astronauts on the International Space Station are trying to spice up their diets.\",\"url\":\"https://www.cnn.com/2021/07/18/us/nasa-peppers-space-station-scn-trnd/index.html\",\"urlToImage\":\"https://cdn.cnn.com/cnnnext/dam/assets/210718143641-nasa-peppers-space-station-trnd-super-tease.jpg\",\"publishedAt\":\"2021-07-18T21:50:00Z\",\"content\":null},{\"source\":{\"id\":\"nbc-news\",\"name\":\"NBC News\"},\"author\":\"Dennis Romero, Kelcey Henderson\",\"title\":\"Packing tape and empty bag of chips: NYPD officer aids stabbing victim - NBC News\",\"description\":\"A New York police officer channeled MacGyver this month by using an empty chips bag go help save a Harlem stabbing victim.\",\"url\":\"https://www.nbcnews.com/news/us-news/packing-tape-empty-bag-chips-nypd-officer-aids-stabbing-victim-n1274320\",\"urlToImage\":\"https://media-cldnry.s-nbcnews.com/image/upload/t_nbcnews-fp-1200-630,f_auto,q_auto:best/newscms/2021_28/3492086/210718-nypd-cop-aids-stabbing-victim-jm-1535.jpg\",\"publishedAt\":\"2021-07-18T21:29:00Z\",\"content\":\"A New York police officer took a page from ingenious TV problem solver MacGyver, using an empty potato chip bag and tape to slow the bleeding of a stabbing victim, police said Sunday.\\r\\nPolice body ca… [+2073 chars]\"},{\"source\":{\"id\":\"fox-news\",\"name\":\"Fox News\"},\"author\":\"Lindsay Kornick\",\"title\":\"Washington Post report neglected spyware firm's Democratic connections in hacking investigation - Fox News\",\"description\":\"The Washington Post neglected to reference an Israeli firm’s Democratic connections when releasing an investigation into a hacking scandal.\",\"url\":\"https://www.foxnews.com/media/wapo-neglected-spyware-democratic-hacking-investigation\",\"urlToImage\":\"https://static.foxnews.com/foxnews.com/content/uploads/2021/01/Anita-Dunn-GETTY.jpg\",\"publishedAt\":\"2021-07-18T21:19:20Z\",\"content\":\"The Washington Post neglected to reference an Israeli firms Democratic connections when releasing an investigation into a hacking scandal.\\r\\nOn Sunday, the Washington Post published an article titled … [+2914 chars]\"},{\"source\":{\"id\":\"the-washington-post\",\"name\":\"The Washington Post\"},\"author\":\"Amy B Wang, Christopher Rowland\",\"title\":\"Biden's surgeon general backs localized mask mandates as delta variant drives rise in covid cases - The Washington Post\",\"description\":\"Democratic and Republican officials also spoke out against coronavirus misinformation, urging people to get vaccinated.\",\"url\":\"https://www.washingtonpost.com/politics/2021/07/18/vivek-murthy-covid-vaccines/\",\"urlToImage\":\"https://www.washingtonpost.com/wp-apps/imrs.php?src=https://arc-anglerfish-washpost-prod-washpost.s3.amazonaws.com/public/Z4UWATXFTEI6XCGFJ7LDQLCHZM.jpg&w=1440\",\"publishedAt\":\"2021-07-18T21:14:35Z\",\"content\":\"Its very reasonable for counties to take more mitigation measures like the mask rules you see coming out in L.A., and I anticipate that will happen in other parts of the country too, Murthy said on A… [+4449 chars]\"},{\"source\":{\"id\":\"the-hill\",\"name\":\"The Hill\"},\"author\":\"Caroline Vakil\",\"title\":\"More evacuations ordered after California wildfire jumps highway | TheHill - The Hill\",\"description\":\"A fire in the Lake Tahoe, Calif., area jumped a highway and force...\",\"url\":\"https://thehill.com/policy/energy-environment/563611-more-evacuations-ordered-after-california-wildfire-jumps-highway\",\"urlToImage\":\"https://thehill.com/sites/default/files/wildfire_ca_getty102720.jpg\",\"publishedAt\":\"2021-07-18T21:11:07Z\",\"content\":\"A fire in the Lake Tahoe, Calif., area jumped a highway and forced additional evacuations and the cancellation of an intensive bike race, The Associated Press reported.\\r\\nThe Tamarack Fire, just south… [+1631 chars]\"},{\"source\":{\"id\":null,\"name\":\"WJXT News4JAX\"},\"author\":\"Steve Patrick, Marilyn Parker\",\"title\":\"Greater Jacksonville driving Florida's COVID-19 surge - WJXT News4JAX \",\"description\":\"The rate of infections in Jacksonville and three nearby counties is even higher than the state average and surpassing the increases seen in the state’s first coronavirus spike last summer.\",\"url\":\"https://www.news4jax.com/news/local/2021/07/18/greater-jacksonville-driving-floridas-covid-19-surge/\",\"urlToImage\":\"https://www.news4jax.com/resizer/r7q0b5KUtiTCTdx0kxDTD3uFViY=/800x450/smart/filters:format(jpeg):strip_exif(true):strip_icc(true):no_upscale(true):quality(65)/d1vhqlrjc8h82r.cloudfront.net/07-19-2021/t_c3acb0bb44ed49cfaede55616d01668d_name_Virus_Outbreak_US__scaled.jpg\",\"publishedAt\":\"2021-07-18T20:51:06Z\",\"content\":\"JACKSONVILLE, Fla. Floridas number of coronavirus cases diagnosed last week -- 45,449 -- is nearing the increases seen in last summers spike. That week-to-week growth rate of infections is the highes… [+2661 chars]\"},{\"source\":{\"id\":null,\"name\":\"Variety\"},\"author\":\"Rebecca Rubin\",\"title\":\"Movie Theater Owners Blame Marvel’s ‘Black Widow’ Box Office ‘Collapse’ on Disney Plus Launch - Variety\",\"description\":\"Movie theater operators did not mince words in asserting that Disney left money on the table by putting Marvel’s “Black Widow” on Disney Plus on the same day as its theatrical debut. Disney announced in March that “Black Widow,” among several of its 2021 film…\",\"url\":\"https://variety.com/2021/film/news/movie-theater-owners-black-widow-disney-plus-1235022524/\",\"urlToImage\":\"https://variety.com/wp-content/uploads/2021/07/Black-Widow-Marvel.jpg?w=1000\",\"publishedAt\":\"2021-07-18T20:49:00Z\",\"content\":\"Movie theater operators did not mince words in asserting that Disney left money on the table by putting Marvel’s “Black Widow” on Disney Plus on the same day as its theatrical debut.\\r\\nDisney announce… [+6149 chars]\"},{\"source\":{\"id\":null,\"name\":\"Fox Business\"},\"author\":\"Brittany De Lea\",\"title\":\"Johnson & Johnson weighing bankruptcy plan as it considers offloading baby powder liabilities: report - Fox Business\",\"description\":\"Retailer Johnson & Johnson is reportedly considering spinning off liabilities from its Baby Powder unit due ongoing litigation, with plans to seek bankruptcy protection for that new business.\",\"url\":\"https://www.foxbusiness.com/retail/johnson-johnson-weighing-bankruptcy-plan-as-it-considers-offloading-baby-powder-liabilities-report\",\"urlToImage\":\"https://a57.foxnews.com/static.foxbusiness.com/foxbusiness.com/content/uploads/2019/10/0/0/Baby-Powder-1.jpg?ve=1&tl=1\",\"publishedAt\":\"2021-07-18T20:35:22Z\",\"content\":\"Retailer Johnson &amp; Johnson is reportedly considering spinning off liabilities from its Baby Powder unit due to ongoing litigation, with plans to seek bankruptcy protection for that new business.\\r… [+1578 chars]\"},{\"source\":{\"id\":\"the-verge\",\"name\":\"The Verge\"},\"author\":\"Kim Lyons\",\"title\":\"New Steam Deck reservations now showing ‘expected order availability’ in Q2 and Q3 2022 - The Verge\",\"description\":\"Valve revealed its handheld gaming device on Thursday, and was inundated with reservations when it first made them available. The company is planning to begin converting reservations to orders in December.\",\"url\":\"https://www.theverge.com/2021/7/18/22582617/new-steam-deck-reservations-q2-q3-valve-hand-held\",\"urlToImage\":\"https://cdn.vox-cdn.com/thumbor/j6TnsQXbwiyB1vypD3ZkyRZtqfY=/0x380:3684x2309/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22720898/Steam_Deck_case.jpg\",\"publishedAt\":\"2021-07-18T20:25:23Z\",\"content\":\"Valve has opened up reservations for people without existing Steam accounts as well\\r\\nSteam Deck will start shipping in December 2021\\r\\nImage: Valve\\r\\nIf youre looking to reserve a Steam Deck and havent… [+1102 chars]\"}]}"
  },
  {
    "path": "test/data/news_sample.json",
    "content": "{\"status\":\"ok\",\"totalResults\":3,\"articles\":[{\"source\":{\"id\":\"t3n\",\"name\":\"T3n\"},\"author\":\"Jörn Brien\",\"title\":\"Schlag gegen Bitcoin-Miner: Mining-Rigs im Wert von 1 Million Euro plattgewalzt\",\"description\":\"Malaysische Behörden haben Bitcoin-Mining-Rigs im Wert von über einer Million Euro mit einer Straßenwalze zers\",\"url\":\"https://t3n.de/news/bitcoin-mining-rigs-plattgewalzt-1392327/\",\"urlToImage\":\"https://t3n.de/news/wp-content/uploads/2018/08/mining.jpg\",\"publishedAt\":\"2021-07-18T17:02:47Z\",\"content\":\"Hinweis: Wir haben in diesem Artikel Provisions-Links verwendet und sie durch \\\"*\\\" gekennzeichnet. Erfolgt über diese Links eine Bestellung, erhält t3n.de eine Provision.\\r\\nMalaysische Behörden haben B… [+2923 chars]\"},{\"source\":{\"id\":\"new-scientist\",\"name\":\"New Scientist\"},\"author\":null,\"title\":\"Coal-powered bitcoin mining soars in Kazakhstan following Chinese ban\",\"description\":\"A Chinese bitcoin ban has seen power-hungry miners move to Kazakhstan, where fossil fuels including coal power make up more than 90 per cent of the nation's electricity supply\",\"url\":\"https://www.newscientist.com/article/2284222-coal-powered-bitcoin-mining-soars-in-kazakhstan-following-chinese-ban/\",\"urlToImage\":\"https://images.newscientist.com/wp-content/uploads/2021/07/16115544/15-july_coal-powered-bitcoin-mining.jpg\",\"publishedAt\":\"2021-07-16T00:00:00Z\",\"content\":\"By Matthew Sparkes\\r\\nA coal mine in Kazakhstan\\r\\nMagnus Møller/Alamy\\r\\nChinese bitcoin mining has almost entirely ceased since the government restricted cryptocurrency use in May, meaning much of this a… [+2954 chars]\"},{\"source\":{\"id\":\"les-echos\",\"name\":\"Les Echos\"},\"author\":\"Nessim Aït-Kacimi\",\"title\":\"Dix milliards de dollars d'activités illicites financées en cryptos lors de la crise du Covid\",\"description\":\"Même si cela reste une faible proportion des transactions totales sur les cryptos, les activités illicites (blanchiment, trafics…) financées en bitcoin et autres cryptos ont atteint 10 milliards de dollars l'an dernier. Les « supermarchés » de la drogue en li…\",\"url\":\"https://www.lesechos.fr/finance-marches/marches-financiers/dix-milliards-de-dollars-dactivites-illicites-financees-en-cryptos-lors-de-la-crise-du-covid-1332349\",\"urlToImage\":\"https://media.lesechos.com/api/v1/images/view/60f01cbcd286c273620c3a65/1280x720/0611385253350-web-tete.jpg\",\"publishedAt\":\"2021-07-15T11:30:00Z\",\"content\":\"La police britannique vient de frapper le crime organisé au portefeuille. Elle a saisi mardi un montant record de 210 millions d'euros en cryptomonnaies (ou cryptos). Un mois plus tôt, 133 millions d… [+4494 chars]\"}]}"
  },
  {
    "path": "test/repositories/mock_article_repository.dart",
    "content": "import 'dart:io';\nimport 'package:getx_clean_architecture/data/models/paging_model.dart';\nimport 'package:getx_clean_architecture/domain/repositories/article_repository.dart';\nimport 'dart:convert';\n\nclass MockArticleRepository extends ArticleRepository {\n  @override\n  Future<PagingModel> fetchHeadline(int page, int pageSize) async {\n    final file = File('test/data/headline_sample.json');\n    final response = await file.readAsString();\n    final data = await json.decode(response);\n    return PagingModel.fromJson(data);\n  }\n\n  @override\n  Future<PagingModel> fetchNewsByCategory(\n      String keyword, int page, int pageSize) async {\n    final file = File('test/data/news_sample.json');\n    final response = await file.readAsString();\n    final data = await json.decode(response);\n    return PagingModel.fromJson(data);\n  }\n}\n"
  },
  {
    "path": "test/repositories/mock_auth_repository.dart",
    "content": "import 'package:getx_clean_architecture/domain/entities/user.dart';\nimport 'package:getx_clean_architecture/domain/repositories/auth_repository.dart';\n\nclass MockAuthenticationRepository extends AuthenticationRepository {\n  @override\n  Future<User> signUp(String username) async {\n    //Fake sign up action\n    await Future.delayed(Duration(seconds: 1));\n    return User(username: username);\n  }\n}\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_test/flutter_test.dart';\nimport 'package:getx_clean_architecture/domain/usecases/fetch_headline_use_case.dart';\nimport 'package:getx_clean_architecture/domain/usecases/fetch_news_use_case.dart';\nimport 'package:getx_clean_architecture/domain/usecases/signup_use_case.dart';\n\nimport 'package:tuple/tuple.dart';\n\nimport 'repositories/mock_article_repository.dart';\nimport 'repositories/mock_auth_repository.dart';\n\nvoid main() {\n  test('Sign up test', () async {\n    //Mock input\n    final registerUserName = \"test username\";\n\n    //Mock data\n    final signUpUseCase = SignUpUseCase(MockAuthenticationRepository());\n    final user = await signUpUseCase.execute(registerUserName);\n\n    expect(user.username, registerUserName);\n  });\n\n  test('Fetch headline test', () async {\n    final pageSize = 20;\n    final currentPage = 1;\n\n    //Mock data\n    final fetchHeadlineUseCase = FetchHeadlineUseCase(MockArticleRepository());\n    final paging =\n        await fetchHeadlineUseCase.execute(Tuple2(currentPage, pageSize));\n\n    // Verify that data has created.\n    expect(paging.articles.length, 20);\n  });\n\n  test('Fetch news test', () async {\n    //Mock input\n    final keyword = \"bitcoin\";\n    final pageSize = 20;\n    final currentPage = 1;\n\n    //Mock data\n    final fetchHeadlineUseCase = FetchNewsUseCase(MockArticleRepository());\n    final paging = await fetchHeadlineUseCase\n        .execute(Tuple3(keyword, currentPage, pageSize));\n\n    // Verify that data has created.\n    expect(paging.articles.length, 3);\n  });\n}\n"
  },
  {
    "path": "web/index.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <!--\n    If you are serving your web app in a path other than the root, change the\n    href value below to reflect the base path you are serving from.\n\n    The path provided below has to start and end with a slash \"/\" in order for\n    it to work correctly.\n\n    For more details:\n    * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base\n  -->\n  <base href=\"/\">\n\n  <meta charset=\"UTF-8\">\n  <meta content=\"IE=Edge\" http-equiv=\"X-UA-Compatible\">\n  <meta name=\"description\" content=\"A new Flutter project.\">\n\n  <!-- iOS meta tags & icons -->\n  <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n  <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n  <meta name=\"apple-mobile-web-app-title\" content=\"getx_clean_architecture\">\n  <link rel=\"apple-touch-icon\" href=\"icons/Icon-192.png\">\n\n  <title>getx_clean_architecture</title>\n  <link rel=\"manifest\" href=\"manifest.json\">\n</head>\n<body>\n  <!-- This script installs service_worker.js to provide PWA functionality to\n       application. For more information, see:\n       https://developers.google.com/web/fundamentals/primers/service-workers -->\n  <script>\n    var serviceWorkerVersion = null;\n    var scriptLoaded = false;\n    function loadMainDartJs() {\n      if (scriptLoaded) {\n        return;\n      }\n      scriptLoaded = true;\n      var scriptTag = document.createElement('script');\n      scriptTag.src = 'main.dart.js';\n      scriptTag.type = 'application/javascript';\n      document.body.append(scriptTag);\n    }\n\n    if ('serviceWorker' in navigator) {\n      // Service workers are supported. Use them.\n      window.addEventListener('load', function () {\n        // Wait for registration to finish before dropping the <script> tag.\n        // Otherwise, the browser will load the script multiple times,\n        // potentially different versions.\n        var serviceWorkerUrl = 'flutter_service_worker.js?v=' + serviceWorkerVersion;\n        navigator.serviceWorker.register(serviceWorkerUrl)\n          .then((reg) => {\n            function waitForActivation(serviceWorker) {\n              serviceWorker.addEventListener('statechange', () => {\n                if (serviceWorker.state == 'activated') {\n                  console.log('Installed new service worker.');\n                  loadMainDartJs();\n                }\n              });\n            }\n            if (!reg.active && (reg.installing || reg.waiting)) {\n              // No active web worker and we have installed or are installing\n              // one for the first time. Simply wait for it to activate.\n              waitForActivation(reg.installing ?? reg.waiting);\n            } else if (!reg.active.scriptURL.endsWith(serviceWorkerVersion)) {\n              // When the app updates the serviceWorkerVersion changes, so we\n              // need to ask the service worker to update.\n              console.log('New service worker available.');\n              reg.update();\n              waitForActivation(reg.installing);\n            } else {\n              // Existing service worker is still good.\n              console.log('Loading app from service worker.');\n              loadMainDartJs();\n            }\n          });\n\n        // If service worker doesn't succeed in a reasonable amount of time,\n        // fallback to plaint <script> tag.\n        setTimeout(() => {\n          if (!scriptLoaded) {\n            console.warn(\n              'Failed to load app from service worker. Falling back to plain <script> tag.',\n            );\n            loadMainDartJs();\n          }\n        }, 4000);\n      });\n    } else {\n      // Service workers not supported. Just drop the <script> tag.\n      loadMainDartJs();\n    }\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "web/manifest.json",
    "content": "{\n    \"name\": \"getx_clean_architecture\",\n    \"short_name\": \"getx_clean_architecture\",\n    \"start_url\": \".\",\n    \"display\": \"standalone\",\n    \"background_color\": \"#0175C2\",\n    \"theme_color\": \"#0175C2\",\n    \"description\": \"A new Flutter project.\",\n    \"orientation\": \"portrait-primary\",\n    \"prefer_related_applications\": false,\n    \"icons\": [\n        {\n            \"src\": \"icons/Icon-192.png\",\n            \"sizes\": \"192x192\",\n            \"type\": \"image/png\"\n        },\n        {\n            \"src\": \"icons/Icon-512.png\",\n            \"sizes\": \"512x512\",\n            \"type\": \"image/png\"\n        }\n    ]\n}\n"
  }
]