[
  {
    "path": ".gitignore",
    "content": "# Miscellaneous\n*.class\n*.log\n*.pyc\n*.swp\n.DS_Store\n.atom/\n.buildlog/\n.history\n.svn/\n\n# IntelliJ related\n*.iml\n*.ipr\n*.iws\n.idea/\n\n# The .vscode folder contains launch configuration and tasks you configure in\n# VS Code which you may wish to be included in version control, so this line\n# is commented out by default.\n#.vscode/\n\n# Flutter/Dart/Pub related\n**/doc/api/\n**/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# Web related\nlib/generated_plugin_registrant.dart\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\n"
  },
  {
    "path": ".metadata",
    "content": "# This file tracks properties of this Flutter project.\n# Used by Flutter tool to assess capabilities and perform upgrades etc.\n#\n# This file should be version controlled and should not be manually edited.\n\nversion:\n  revision: f4abaa0735eba4dfd8f33f73363911d63931fe03\n  channel: stable\n\nproject_type: app\n"
  },
  {
    "path": "README.md",
    "content": "# flutter_wechat_clone\n\nA new Flutter project.\n\n## Getting Started\n\nThis project is a starting point for a Flutter application.\n\nA few resources to get you started if this is your first Flutter project:\n\n- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)\n- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)\n\nFor help getting started with Flutter, view our\n[online documentation](https://flutter.dev/docs), which offers tutorials,\nsamples, guidance on mobile development, and a full API reference.\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 30\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.flutter_wechat_clone\"\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.flutter_wechat_clone\">\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.flutter_wechat_clone\">\n   <application\n        android:label=\"flutter_wechat_clone\"\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/flutter_wechat_clone/MainActivity.kt",
    "content": "package com.example.flutter_wechat_clone\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.flutter_wechat_clone\">\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.3.50'\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>flutter_wechat_clone</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\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\t\tBC855B25829D08A6E9AEA9ED /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC958AAAFC3FC331F3F85D0A /* Pods_Runner.framework */; };\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\t3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = \"<group>\"; };\n\t\t5F46BE8AF9301476435AC0E0 /* 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\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\t862A1027280452E6684BAE7B /* 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\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\tB672AAAAA105BEDC65F98A1B /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-Runner.debug.xcconfig\"; path = \"Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tBC958AAAFC3FC331F3F85D0A /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t97C146EB1CF9000F007C117D /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tBC855B25829D08A6E9AEA9ED /* 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\t959031C05C79CDAD9D620797 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tBC958AAAFC3FC331F3F85D0A /* 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\tA4E57281CD2BB1B021512958 /* Pods */,\n\t\t\t\t959031C05C79CDAD9D620797 /* 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\t\tA4E57281CD2BB1B021512958 /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tB672AAAAA105BEDC65F98A1B /* Pods-Runner.debug.xcconfig */,\n\t\t\t\t5F46BE8AF9301476435AC0E0 /* Pods-Runner.release.xcconfig */,\n\t\t\t\t862A1027280452E6684BAE7B /* 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/* 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\t395690F9EEACF6DD06AF64D9 /* [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\tFE4B05D0A457BCC38C497F27 /* [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\t395690F9EEACF6DD06AF64D9 /* [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\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\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\tFE4B05D0A457BCC38C497F27 /* [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.flutterWechatClone;\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.flutterWechatClone;\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.flutterWechatClone;\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/constants.dart",
    "content": "import 'package:flutter/material.dart';\n\nclass AppColors {\n  static const BackgroundColor = Color(0xffebebeb);\n  static const AppBarColor = Color(0xff303030);\n  static const TabIconNormal = Color(0xff999999);\n  static const TabIconActive = Color(0xff46c11b);\n  static const AppBarPopupMenuColor = Color(0xffffffff);\n  static const TitleColor = Color(0xff353535);\n  static const ConversationItemBgColor = Color(0xffffffff);\n  static const DescTextColor = Color(0xff9e9e9e);\n  static const DividerColor = Color(0xffd9d9d9);\n  static const NotifyDotBgColor = Color(0xffff3e3e);\n  static const NotifyDotText = Color(0xffffffff);\n  static const ConversationMuteIconColor = Color(0xffd8d8d8);\n  static const DeviceInfoItemBgColor = Color(0xfff5f5f5);\n  static const DeviceInfoItemTextColor = Color(0xff606062);\n  static const DeviceInfoItemIconColor = Color(0xff606062);\n  static const ContactGroupTitleBgColor = Color(0xffebebeb);\n  static const ContactGroupTitleColor = Color(0xff888888);\n  static const IndexLetterBoxBgColor = Colors.black45;\n}\n\nclass AppStyles {\n  static const TitleStyle = TextStyle(\n    fontSize: 14.0,\n    color: AppColors.TitleColor,\n  );\n\n  static const DescStyle = TextStyle(\n    fontSize: 12.0,\n    color: AppColors.DescTextColor,\n  );\n\n  static const UnreadMsgCountDotStyle = TextStyle(\n    fontSize: 12.0,\n    color: AppColors.NotifyDotText,\n  );\n\n  static const DeviceInfoItemTextStyle = TextStyle(\n    fontSize: 13.0,\n    color: AppColors.DeviceInfoItemTextColor,\n  );\n\n  static const GroupTitleItemTextStyle = TextStyle(\n    fontSize: 14.0,\n    color: AppColors.ContactGroupTitleColor,\n  );\n\n  static const IndexLetterBoxTextStyle = TextStyle(\n    fontSize: 64.0,\n    color: Colors.white,\n  );\n}\n\nclass Constants {\n  static const IconFontFamily = \"appIconFont\";\n  static const ConversationAvatarSize = 48.0;\n  static const DividerWidth = 0.5;\n  static const UnReadMsgNotifyDotSize = 20.0;\n  static const ConversationMuteIcon = 18.0;\n  static const ContactAvatarSize = 36.0;\n  static const IndexBarWidth = 24.0;\n  static const IndexLetterBoxSize = 114.0;\n  static const IndexLetterBoxRadius = 4.0;\n  static const FullWidthIconButtonIconSize = 24.0;\n  static const ProfileHeaderIconSize = 60.0;\n\n  static const ConversationAvatarDefaultIocn = Icon(\n    IconData(\n      0xe642,\n      fontFamily: IconFontFamily,\n    ),\n    size: ConversationAvatarSize,\n  );\n\n  static const ContactAvatarDefaultIocn = Icon(\n    IconData(\n      0xe642,\n      fontFamily: IconFontFamily,\n    ),\n    size: ContactAvatarSize,\n  );\n\n  static const ProfileAvatarDefaultIocn = Icon(\n    IconData(\n      0xe642,\n      fontFamily: IconFontFamily,\n    ),\n    size: ProfileHeaderIconSize,\n  );\n}\n\n\n\n"
  },
  {
    "path": "lib/main.dart",
    "content": "import 'package:flutter/material.dart';\nimport 'package:flutter_wechat_clone/constants.dart';\nimport 'package:flutter_wechat_clone/pages/main_page.dart';\n\nvoid main() {\n  runApp(MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n  // This widget is the root of your application.\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      title: '微信',\n      theme: ThemeData(\n          primaryColor: AppColors.AppBarColor,\n          cardColor: AppColors.AppBarColor),\n      home: MainPage(),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/model/contacts.dart",
    "content": "class Contact {\n  const Contact({\n    required this.avatar,\n    required this.name,\n    required this.nameIndex,\n  });\n\n  final String avatar;\n  final String name;\n  final String nameIndex;\n}\n\nclass ContactsPageData {\n  final List<Contact> contacts = [\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/men/53.jpg',\n      name: 'Maurice Sutton',\n      nameIndex: 'M',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/76.jpg',\n      name: 'Jerry',\n      nameIndex: 'J',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/17.jpg',\n      name: 'Dangdang',\n      nameIndex: 'D',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/55.jpg',\n      name: 'Teddy',\n      nameIndex: 'T',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/11.jpg',\n      name: 'Steave',\n      nameIndex: 'S',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/65.jpg',\n      name: 'Vivian',\n      nameIndex: 'V',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/50.jpg',\n      name: 'Mary',\n      nameIndex: 'M',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/91.jpg',\n      name: 'David',\n      nameIndex: 'D',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/60.jpg',\n      name: 'Bob',\n      nameIndex: 'B',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/men/60.jpg',\n      name: 'Jeff Green',\n      nameIndex: 'J',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/men/45.jpg',\n      name: 'Adam',\n      nameIndex: 'A',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/men/7.jpg',\n      name: 'Michel',\n      nameIndex: 'M',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/men/35.jpg',\n      name: 'Green',\n      nameIndex: 'G',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/men/64.jpg',\n      name: 'Jack Ma',\n      nameIndex: 'J',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/men/86.jpg',\n      name: 'Tom',\n      nameIndex: 'T',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/men/31.jpg',\n      name: 'Zat',\n      nameIndex: 'Z',\n    ),\n    const Contact(\n      avatar: 'https://randomuser.me/api/portraits/women/13.jpg',\n      name: 'Zlia',\n      nameIndex: 'Z',\n    ),\n  ];\n\n  static ContactsPageData mock() {\n    return ContactsPageData();\n  }\n}\n"
  },
  {
    "path": "lib/model/conversation.dart",
    "content": "import 'package:flutter/material.dart';\nimport '../constants.dart';\n\nenum Device { MAC, WIN }\n\nclass Conversation {\n  final String avatar;\n  final String title;\n  final Color titleColor;\n  final String desc;\n  final String updateAt;\n  final bool isMute;\n  final int unreadMsgCount;\n  final bool dispalyDot;\n\n  const Conversation(\n      {required this.avatar,\n      required this.title,\n      this.titleColor: AppColors.TitleColor,\n      required this.desc,\n      required this.updateAt,\n      this.isMute: false,\n      this.unreadMsgCount: 0,\n      this.dispalyDot: false});\n\n  bool isAvatarFromNet() {\n    if (this.avatar.indexOf('http') == 0 || this.avatar.indexOf('https') == 0) {\n      return true;\n    }\n    return false;\n  }\n}\n\nclass ConversationPageData {\n  const ConversationPageData({\n    this.device,\n    required this.conversations,\n  });\n\n  final Device? device;\n  final List<Conversation> conversations;\n\n  static mock() {\n    return ConversationPageData(\n        device: Device.WIN, conversations: mockConversations);\n  }\n\n  static List<Conversation> mockConversations = [\n    const Conversation(\n      avatar: 'assets/images/ic_file_transfer.png',\n      title: '文件传输助手',\n      desc: '',\n      updateAt: '19:56',\n    ),\n    const Conversation(\n      avatar: 'assets/images/ic_tx_news.png',\n      title: '腾讯新闻',\n      desc: '豪车与出租车刮擦 俩车主划拳定责',\n      updateAt: '17:20',\n    ),\n    const Conversation(\n      avatar: 'assets/images/ic_wx_games.png',\n      title: '微信游戏',\n      titleColor: Color(0xff586b95),\n      desc: '25元现金助力开学季！',\n      updateAt: '17:12',\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/men/10.jpg',\n      title: '汤姆丁',\n      desc: '今晚要一起去吃肯德基吗？',\n      updateAt: '17:56',\n      isMute: true,\n      unreadMsgCount: 0,\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/women/10.jpg',\n      title: 'Tina Morgan',\n      desc: '晚自习是什么来着？你知道吗，看到的话赶紧回复我',\n      updateAt: '17:58',\n      isMute: false,\n      unreadMsgCount: 3,\n    ),\n    const Conversation(\n      avatar: 'assets/images/ic_fengchao.png',\n      title: '蜂巢智能柜',\n      titleColor: Color(0xff586b95),\n      desc: '喷一喷，竟比洗牙还神奇！5秒钟还你一个漂亮洁白的口腔。',\n      updateAt: '17:12',\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/women/57.jpg',\n      title: 'Lily',\n      desc: '今天要去运动场锻炼吗？',\n      updateAt: '昨天',\n      isMute: false,\n      unreadMsgCount: 99,\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/men/10.jpg',\n      title: '汤姆丁',\n      desc: '今晚要一起去吃肯德基吗？',\n      updateAt: '17:56',\n      isMute: true,\n      unreadMsgCount: 0,\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/women/10.jpg',\n      title: 'Tina Morgan',\n      desc: '晚自习是什么来着？你知道吗，看到的话赶紧回复我',\n      updateAt: '17:58',\n      isMute: false,\n      unreadMsgCount: 3,\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/women/57.jpg',\n      title: 'Lily',\n      desc: '今天要去运动场锻炼吗？',\n      updateAt: '昨天',\n      isMute: false,\n      unreadMsgCount: 0,\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/men/10.jpg',\n      title: '汤姆丁',\n      desc: '今晚要一起去吃肯德基吗？',\n      updateAt: '17:56',\n      isMute: true,\n      unreadMsgCount: 0,\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/women/10.jpg',\n      title: 'Tina Morgan',\n      desc: '晚自习是什么来着？你知道吗，看到的话赶紧回复我',\n      updateAt: '17:58',\n      isMute: false,\n      unreadMsgCount: 1,\n    ),\n    const Conversation(\n      avatar: 'https://randomuser.me/api/portraits/women/57.jpg',\n      title: 'Lily',\n      desc: '今天要去运动场锻炼吗？',\n      updateAt: '昨天',\n      isMute: false,\n      unreadMsgCount: 0,\n    ),\n  ];\n}\n"
  },
  {
    "path": "lib/pages/contacts_page.dart",
    "content": "import 'package:flutter/material.dart';\n\nimport '../constants.dart';\nimport '../model/contacts.dart' show Contact, ContactsPageData;\nimport 'package:cached_network_image/cached_network_image.dart';\n\n@immutable\nclass _ContactItem extends StatelessWidget {\n  _ContactItem({\n    required this.avatar,\n    required this.title,\n    this.groupTitle,\n    required this.onPressed,\n  });\n\n  final String avatar;\n  final String title;\n  final String? groupTitle;\n  final VoidCallback onPressed;\n\n  static const double MARGIN_VERTICAL = 10.0;\n  static const double GROUP_TITLE_HEIGHT = 24.0;\n\n  bool get _isAvatarFromNet {\n    return this.avatar.startsWith('http') || this.avatar.startsWith(\"https\");\n  }\n\n  static double _height(bool hasGroupTitle) {\n    final _buttonHeight = MARGIN_VERTICAL * 2 +\n        Constants.ContactAvatarSize +\n        Constants.DividerWidth;\n    if (hasGroupTitle) {\n      return _buttonHeight + GROUP_TITLE_HEIGHT;\n    } else {\n      return _buttonHeight;\n    }\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    Widget _avatarIcon;\n    if (_isAvatarFromNet) {\n      _avatarIcon = CachedNetworkImage(\n        imageUrl: this.avatar,\n        placeholder: (context, url) => Constants.ContactAvatarDefaultIocn,\n        width: Constants.ContactAvatarSize,\n        height: Constants.ContactAvatarSize,\n        errorWidget: (context, url, msg) => Constants.ContactAvatarDefaultIocn,\n      );\n    } else {\n      _avatarIcon = Image.asset(\n        this.avatar,\n        width: Constants.ContactAvatarSize,\n        height: Constants.ContactAvatarSize,\n      );\n    }\n\n    Widget _button = Container(\n      margin: const EdgeInsets.symmetric(horizontal: 16.0),\n      padding: const EdgeInsets.symmetric(vertical: MARGIN_VERTICAL),\n      decoration: BoxDecoration(\n          border: Border(\n        bottom: BorderSide(\n            width: Constants.DividerWidth, color: AppColors.DividerColor),\n      )),\n      child: Row(\n        children: <Widget>[\n          _avatarIcon,\n          SizedBox(width: 10.0),\n          Text(title),\n        ],\n      ),\n    );\n\n    //分组标签\n    Widget _itemBody;\n    if (this.groupTitle != null) {\n      _itemBody = Column(\n        children: <Widget>[\n          Container(\n            height: GROUP_TITLE_HEIGHT,\n            padding: EdgeInsets.only(left: 16.0, right: 16.0),\n            color: AppColors.ContactGroupTitleBgColor,\n            alignment: Alignment.centerLeft,\n            child: Text(this.groupTitle!,\n                style: AppStyles.GroupTitleItemTextStyle),\n          ),\n          _button,\n        ],\n      );\n    } else {\n      _itemBody = _button;\n    }\n\n    return _itemBody;\n  }\n}\n\nconst INDEX_BAR_WORDS = [\n  \"↑\",\n  \"☆\",\n  \"A\",\n  \"B\",\n  \"C\",\n  \"D\",\n  \"E\",\n  \"F\",\n  \"G\",\n  \"H\",\n  \"I\",\n  \"J\",\n  \"K\",\n  \"L\",\n  \"M\",\n  \"N\",\n  \"O\",\n  \"P\",\n  \"Q\",\n  \"R\",\n  \"S\",\n  \"T\",\n  \"U\",\n  \"V\",\n  \"W\",\n  \"X\",\n  \"Y\",\n  \"Z\"\n];\n\n// ignore: must_be_immutable\nclass ContactsPage extends StatefulWidget {\n  Color _indexBarBgColor = Colors.transparent;\n  String _currentLetter = '';\n  @override\n  _ContactsPageState createState() => _ContactsPageState();\n}\n\nclass _ContactsPageState extends State<ContactsPage> {\n  late ScrollController _scrollController;\n  final ContactsPageData data = ContactsPageData.mock();\n  final List<Contact> _contacts = [];\n  final List<_ContactItem> _functionButtons = [\n    _ContactItem(\n        avatar: 'assets/images/ic_new_friend.png',\n        title: '新的朋友',\n        onPressed: () {\n          print(\"添加新朋友\");\n        }),\n    _ContactItem(\n        avatar: 'assets/images/ic_group_chat.png',\n        title: '群聊',\n        onPressed: () {\n          print(\"点击了群聊\");\n        }),\n    _ContactItem(\n        avatar: 'assets/images/ic_tag.png',\n        title: '标签',\n        onPressed: () {\n          print(\"点击了标签\");\n        }),\n    _ContactItem(\n        avatar: 'assets/images/ic_public_account.png',\n        title: '公众号',\n        onPressed: () {\n          print(\"添加公众号\");\n        }),\n  ];\n  final Map _letterPosMap = {INDEX_BAR_WORDS[0]: 0.0};\n\n  @override\n  void initState() {\n    super.initState();\n    _contacts\n      ..addAll(data.contacts)\n      ..addAll(data.contacts)\n      ..addAll(data.contacts);\n    _contacts\n        .sort((Contact a, Contact b) => a.nameIndex.compareTo(b.nameIndex));\n    _scrollController = new ScrollController();\n\n    //计算用于 IndexBar 进行定位的关键通讯录列表项的位置\n    var _totalPos = _functionButtons.length * _ContactItem._height(false);\n    for (var i = 0; i < _contacts.length; i++) {\n      bool _hasGroupTitle = true;\n      if (i > 0 &&\n          _contacts[i].nameIndex.compareTo(_contacts[i - 1].nameIndex) == 0) {\n        _hasGroupTitle = false;\n      }\n\n      if (_hasGroupTitle) {\n        _letterPosMap[_contacts[i].nameIndex] = _totalPos;\n      }\n      _totalPos += _ContactItem._height(_hasGroupTitle);\n    }\n  }\n\n  @override\n  void dispose() {\n    _scrollController.dispose();\n    super.dispose();\n  }\n\n  String getLetter(BuildContext context, double tileHeight, Offset globalPos) {\n    RenderBox _box = context.findRenderObject() as RenderBox;\n    var local = _box.globalToLocal(globalPos);\n    int index = (local.dy ~/ tileHeight).clamp(0, INDEX_BAR_WORDS.length - 1);\n    return INDEX_BAR_WORDS[index];\n  }\n\n  void _jumpToIndex(String letter) {\n    if (_letterPosMap.isNotEmpty) {\n      final _pos = _letterPosMap[letter];\n      if (_pos != null) {\n        _scrollController.animateTo(_letterPosMap[letter],\n            curve: Curves.easeInOut, duration: Duration(microseconds: 200));\n      }\n    }\n  }\n\n  Widget _buildIndexBar(BuildContext context, BoxConstraints constraints) {\n    final List<Widget> _letters = INDEX_BAR_WORDS.map((String word) {\n      return Expanded(child: Text(word));\n    }).toList();\n\n    final _totalHeight = constraints.biggest.height;\n    final _tileHeight = _totalHeight / _letters.length;\n    print(_totalHeight);\n    return GestureDetector(\n      onVerticalDragDown: (DragDownDetails details) {\n        setState(() {\n          widget._indexBarBgColor = Colors.black26;\n          widget._currentLetter =\n              getLetter(context, _tileHeight, details.globalPosition);\n          _jumpToIndex(widget._currentLetter);\n        });\n      },\n      onVerticalDragEnd: (DragEndDetails details) {\n        setState(() {\n          widget._indexBarBgColor = Colors.transparent;\n          widget._currentLetter = '';\n        });\n      },\n      onVerticalDragCancel: () {\n        setState(() {\n          widget._indexBarBgColor = Colors.transparent;\n          widget._currentLetter = '';\n        });\n      },\n      onVerticalDragUpdate: (DragUpdateDetails details) {\n        setState(() {\n          widget._currentLetter =\n              getLetter(context, _tileHeight, details.globalPosition);\n          _jumpToIndex(widget._currentLetter);\n        });\n      },\n      child: Column(\n        children: _letters,\n      ),\n    );\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    final List<Widget> _body = [\n      ListView.builder(\n        controller: _scrollController,\n        itemBuilder: (BuildContext context, int index) {\n          if (index < _functionButtons.length) {\n            return _functionButtons[index];\n          }\n          int _contactIndex = index - _functionButtons.length;\n          bool _isGroupTitle = true;\n          Contact _contact = _contacts[_contactIndex];\n\n          if (_contactIndex >= 1 &&\n              _contact.nameIndex == _contacts[_contactIndex - 1].nameIndex) {\n            _isGroupTitle = false;\n          }\n          return _ContactItem(\n            avatar: _contact.avatar,\n            title: _contact.name,\n            groupTitle: _isGroupTitle ? _contact.nameIndex : null,\n            onPressed: () {},\n          );\n        },\n        itemCount: _contacts.length + _functionButtons.length,\n      ),\n      Positioned(\n        width: Constants.IndexBarWidth,\n        right: 0.0,\n        top: 0.0,\n        bottom: 0.0,\n        child: Container(\n          color: widget._indexBarBgColor,\n          child: LayoutBuilder(\n            builder: _buildIndexBar,\n          ),\n        ),\n      )\n    ];\n\n    if (widget._currentLetter.isNotEmpty) {\n      _body.add(Center(\n        child: Container(\n          width: Constants.IndexLetterBoxSize,\n          height: Constants.IndexLetterBoxSize,\n          decoration: BoxDecoration(\n            color: AppColors.IndexLetterBoxBgColor,\n            borderRadius: BorderRadius.all(\n                Radius.circular(Constants.IndexLetterBoxRadius)),\n          ),\n          child: Center(\n            child: Text(widget._currentLetter,\n                style: AppStyles.IndexLetterBoxTextStyle),\n          ),\n        ),\n      ));\n    }\n\n    return Stack(\n      children: _body,\n    );\n  }\n}\n"
  },
  {
    "path": "lib/pages/conversation_page.dart",
    "content": "import 'package:flutter/material.dart';\nimport '../constants.dart' show AppColors, AppStyles, Constants;\nimport '../model/conversation.dart';\nimport 'package:cached_network_image/cached_network_image.dart';\n\nclass _ConversationItem extends StatelessWidget {\n  const _ConversationItem({required this.conversation});\n\n  final Conversation conversation;\n\n  @override\n  Widget build(BuildContext context) {\n    Widget avatar;\n    if (conversation.isAvatarFromNet()) {\n      avatar = CachedNetworkImage(\n        imageUrl: conversation.avatar,\n        placeholder: (context, msg) => Constants.ConversationAvatarDefaultIocn,\n        width: Constants.ConversationAvatarSize,\n        height: Constants.ConversationAvatarSize,\n      );\n    } else {\n      avatar = Image.asset(\n        conversation.avatar,\n        width: Constants.ConversationAvatarSize,\n        height: Constants.ConversationAvatarSize,\n      );\n    }\n\n    Widget avatarContainer;\n    if (conversation.unreadMsgCount > 0) {\n      // 未读消息角标\n      Widget unreadMsgCountText = Container(\n        width: Constants.UnReadMsgNotifyDotSize,\n        height: Constants.UnReadMsgNotifyDotSize,\n        alignment: Alignment.center,\n        decoration: BoxDecoration(\n          borderRadius:\n              BorderRadius.circular(Constants.UnReadMsgNotifyDotSize / 2.0),\n          color: AppColors.NotifyDotBgColor,\n        ),\n        child: Text(conversation.unreadMsgCount.toString(),\n            style: AppStyles.UnreadMsgCountDotStyle),\n      );\n\n      avatarContainer = Stack(\n        clipBehavior: Clip.none,\n        children: <Widget>[\n          avatar,\n          Positioned(\n            right: -6.0,\n            top: -6.0,\n            child: unreadMsgCountText,\n          )\n        ],\n      );\n    } else {\n      avatarContainer = avatar;\n    }\n\n    Color muteIconColor;\n    if (conversation.isMute) {\n      muteIconColor = AppColors.ConversationMuteIconColor;\n    } else {\n      muteIconColor = Colors.transparent;\n    }\n\n    //勿扰模式图标\n    Widget muteContainer = Container(\n      margin: const EdgeInsets.only(top: 10.0),\n      child: Icon(\n        IconData(\n          0xe78b,\n          fontFamily: Constants.IconFontFamily,\n        ),\n        color: muteIconColor,\n        size: Constants.ConversationMuteIcon,\n      ),\n    );\n\n    var _rightArea = <Widget>[\n      Text(conversation.updateAt, style: AppStyles.DescStyle),\n      muteContainer\n    ];\n\n    return Container(\n      padding: const EdgeInsets.all(10.0),\n      decoration: BoxDecoration(\n          color: AppColors.ConversationItemBgColor,\n          border: Border(\n              bottom: BorderSide(\n                  color: AppColors.DividerColor,\n                  width: Constants.DividerWidth))),\n      child: Row(\n        crossAxisAlignment: CrossAxisAlignment.center,\n        children: <Widget>[\n          avatarContainer,\n          Container(width: 10.0),\n          Expanded(\n            child: Column(\n              crossAxisAlignment: CrossAxisAlignment.start,\n              children: <Widget>[\n                Text(conversation.title, style: AppStyles.TitleStyle),\n                Text(conversation.desc, style: AppStyles.DescStyle)\n              ],\n            ),\n          ),\n          Container(width: 10.0),\n          Column(\n            children: _rightArea,\n          )\n        ],\n      ),\n    );\n  }\n}\n\nclass _DeviceInfoItem extends StatelessWidget {\n  const _DeviceInfoItem({required this.device});\n  final Device device;\n\n  int get iconName {\n    return device == Device.WIN ? 0xe72a : 0xe640;\n  }\n\n  String get deviceName {\n    return device == Device.WIN ? \"Windows\" : \"Mac\";\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    return Container(\n      padding:\n          EdgeInsets.only(left: 24.0, top: 10.0, right: 24.0, bottom: 10.0),\n      decoration: BoxDecoration(\n          border: Border(\n        bottom: BorderSide(\n          width: Constants.DividerWidth,\n          color: AppColors.DividerColor,\n        ),\n      )),\n      child: Row(\n        mainAxisAlignment: MainAxisAlignment.start,\n        crossAxisAlignment: CrossAxisAlignment.center,\n        children: <Widget>[\n          Icon(\n            IconData(this.iconName, fontFamily: Constants.IconFontFamily),\n            size: 24.0,\n            color: AppColors.DeviceInfoItemIconColor,\n          ),\n          SizedBox(width: 16.0),\n          Text('$deviceName 微信已登录，手机通知已关闭。',\n              style: AppStyles.DeviceInfoItemTextStyle)\n        ],\n      ),\n    );\n  }\n}\n\nclass ConversationPage extends StatefulWidget {\n  @override\n  _ConversationPageState createState() => _ConversationPageState();\n}\n\nclass _ConversationPageState extends State<ConversationPage> {\n  final ConversationPageData data = ConversationPageData.mock();\n  @override\n  Widget build(BuildContext context) {\n    return ListView.builder(\n      itemBuilder: (BuildContext context, int index) {\n        if (data.device != null) {\n          //需要显示其他设备的登录信息\n          if (index == 0) {\n            return _DeviceInfoItem(device: data.device!);\n          } else {\n            return _ConversationItem(\n                conversation: data.conversations[index - 1]);\n          }\n        } else {\n          return _ConversationItem(conversation: data.conversations[index]);\n        }\n      },\n      itemCount: data.device != null\n          ? data.conversations.length + 1\n          : data.conversations.length,\n    );\n  }\n}\n"
  },
  {
    "path": "lib/pages/discover_page.dart",
    "content": "import 'package:flutter/material.dart';\nimport '../widgets/full_width_button.dart';\nimport '../constants.dart' show AppColors;\n\nclass DiscoverPage extends StatefulWidget {\n  @override\n  _DiscoverPageState createState() => _DiscoverPageState();\n}\n\nclass _DiscoverPageState extends State<DiscoverPage> {\n  static const SEPARATE_SIZE = 20.0;\n\n  @override\n  Widget build(BuildContext context) {\n    return Container(\n      color: AppColors.BackgroundColor,\n      child: SingleChildScrollView(\n        child: Column(\n          children: <Widget>[\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_social_circle.png',\n              title: '朋友圈',\n              onPressed: () {\n                print('点击了朋友圈');\n              },\n            ),\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_quick_scan.png',\n              title: '扫一扫',\n              showDivider: true,\n              onPressed: () {\n                print('点击了扫一扫');\n              },\n            ),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_shake_phone.png',\n              title: '摇一摇',\n              onPressed: () {},\n            ),\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_feeds.png',\n              title: '看一看',\n              showDivider: true,\n              onPressed: () {},\n            ),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_quick_search.png',\n              title: '搜一搜',\n              onPressed: () {},\n            ),\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_people_nearby.png',\n              title: '附近的人',\n              showDivider: true,\n              onPressed: () {},\n            ),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_bottle_msg.png',\n              title: '漂流瓶',\n              onPressed: () {},\n            ),\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_shopping.png',\n              title: '购物',\n              showDivider: true,\n              onPressed: () {},\n            ),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_game_entry.png',\n              title: '游戏',\n              onPressed: () {},\n            ),\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_mini_program.png',\n              title: '小程序',\n              onPressed: () {},\n            ),\n            SizedBox(height: SEPARATE_SIZE),\n          ],\n        ),\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/pages/main_page.dart",
    "content": "import 'package:flutter/material.dart';\n\nimport '../constants.dart';\nimport 'contacts_page.dart';\nimport 'conversation_page.dart';\nimport 'profile_page.dart';\nimport 'discover_page.dart';\n\nenum ActionItems { GROUP_CHAT, ADD_FRIEND, QR_SCAN, PAYMENT }\n\nclass NavigationIconView {\n  final BottomNavigationBarItem item;\n\n  NavigationIconView(\n      {required String title,\n      required IconData icon,\n      required IconData activeIcon})\n      : item = new BottomNavigationBarItem(\n            icon: Icon(icon),\n            activeIcon: Icon(activeIcon),\n            label: title,\n            backgroundColor: Colors.white);\n}\n\nclass MainPage extends StatefulWidget {\n  MainPage({Key? key}) : super(key: key);\n\n  @override\n  _MainPageState createState() => _MainPageState();\n}\n\nclass _MainPageState extends State<MainPage> {\n  int _currentIndex = 0;\n  late PageController _pageController;\n  late List<Widget> _pages;\n  List<NavigationIconView> _navigationViews = [\n    NavigationIconView(\n        title: '微信',\n        icon: IconData(0xe608, fontFamily: Constants.IconFontFamily),\n        activeIcon: IconData(0xe603, fontFamily: Constants.IconFontFamily)),\n    NavigationIconView(\n      title: '通讯录',\n      icon: IconData(0xe601, fontFamily: Constants.IconFontFamily),\n      activeIcon: IconData(0xe602, fontFamily: Constants.IconFontFamily),\n    ),\n    NavigationIconView(\n      title: '发现',\n      icon: IconData(0xe600, fontFamily: Constants.IconFontFamily),\n      activeIcon: IconData(0xe604, fontFamily: Constants.IconFontFamily),\n    ),\n    NavigationIconView(\n      title: '我',\n      icon: IconData(0xe607, fontFamily: Constants.IconFontFamily),\n      activeIcon: IconData(0xe630, fontFamily: Constants.IconFontFamily),\n    ),\n  ];\n\n  @override\n  void initState() {\n    super.initState();\n    _pageController = PageController(initialPage: _currentIndex);\n    _pages = [\n      ConversationPage(),\n      ContactsPage(),\n      DiscoverPage(),\n      ProfilePage(),\n    ];\n  }\n\n  _buildPopupMenuItem(int iconName, String title) {\n    return Row(\n      children: <Widget>[\n        Icon(\n          IconData(iconName, fontFamily: Constants.IconFontFamily),\n          size: 22.0,\n          color: AppColors.AppBarPopupMenuColor,\n        ),\n        Container(width: 12.0),\n        Text(\n          title,\n          style: TextStyle(color: AppColors.AppBarPopupMenuColor),\n        ),\n      ],\n    );\n  }\n\n  @override\n  Widget build(BuildContext context) {\n    final BottomNavigationBar botNavBar = new BottomNavigationBar(\n      items: _navigationViews.map((NavigationIconView view) {\n        return view.item;\n      }).toList(),\n      currentIndex: _currentIndex,\n      type: BottomNavigationBarType.fixed,\n      fixedColor: AppColors.TabIconActive,\n      onTap: (int index) {\n        setState(() {\n          _currentIndex = index;\n          _pageController.jumpToPage(_currentIndex);\n          // _pageController.animateToPage(_currentIndex, duration: Duration(milliseconds: 200), curve: Curves.easeInOut);\n        });\n      },\n    );\n\n    return Scaffold(\n      appBar: AppBar(\n        title: Text('微信'),\n        elevation: 0.0, //不需要阴影\n        actions: <Widget>[\n          IconButton(\n            icon: Icon(IconData(0xe605, fontFamily: Constants.IconFontFamily)),\n            onPressed: () {\n              print('点击了搜索按钮');\n            },\n          ),\n          Container(width: 16.0),\n          PopupMenuButton(\n            itemBuilder: (BuildContext context) {\n              return <PopupMenuItem<ActionItems>>[\n                PopupMenuItem(\n                  child: _buildPopupMenuItem(0xe606, \"发起群聊\"),\n                  value: ActionItems.GROUP_CHAT,\n                ),\n                PopupMenuItem(\n                  child: _buildPopupMenuItem(0xe638, \"添加朋友\"),\n                  value: ActionItems.ADD_FRIEND,\n                ),\n                PopupMenuItem(\n                  child: _buildPopupMenuItem(0xe79b, \"扫一扫\"),\n                  value: ActionItems.QR_SCAN,\n                ),\n                PopupMenuItem(\n                  child: _buildPopupMenuItem(0xe658, \"收付款\"),\n                  value: ActionItems.PAYMENT,\n                ),\n              ];\n            },\n            icon: Icon(\n              IconData(0xe66b, fontFamily: Constants.IconFontFamily),\n              size: 22.0,\n            ),\n            onSelected: (ActionItems selected) {\n              print('点击的是$selected');\n            },\n          ),\n          Container(width: 16.0)\n        ],\n      ),\n      body: PageView.builder(\n        itemBuilder: (BuildContext context, int index) {\n          return _pages[index];\n        },\n        physics: NeverScrollableScrollPhysics(),\n        controller: _pageController,\n        itemCount: _pages.length,\n        onPageChanged: (int index) {\n          setState(() {\n            _currentIndex = index;\n          });\n        },\n      ),\n      bottomNavigationBar: botNavBar,\n    );\n  }\n}\n"
  },
  {
    "path": "lib/pages/profile_page.dart",
    "content": "import 'package:flutter/material.dart';\nimport '../widgets/full_width_button.dart';\nimport '../constants.dart' show AppColors, Constants;\nimport 'package:cached_network_image/cached_network_image.dart';\n\nclass _ProfileHeaderView extends StatelessWidget {\n  static const HORIZONTAL_PADDING = 20.0;\n  static const VERTICAL_PADDING = 13.0;\n\n  @override\n  Widget build(BuildContext context) {\n    return Container(\n      color: Colors.white,\n      padding: EdgeInsets.symmetric(\n          vertical: VERTICAL_PADDING, horizontal: HORIZONTAL_PADDING),\n      child: Row(\n        crossAxisAlignment: CrossAxisAlignment.center,\n        children: <Widget>[\n          CachedNetworkImage(\n            imageUrl: 'https://z3.ax1x.com/2021/08/18/fom6ED.jpg',\n            imageBuilder: (context, imageProvider) => Container(\n              decoration: BoxDecoration(\n                borderRadius: BorderRadius.all(Radius.circular(6.0)),\n                image: DecorationImage(image: imageProvider, fit: BoxFit.cover),\n              ),\n            ),\n            placeholder: (context, msg) => Constants.ProfileAvatarDefaultIocn,\n            errorWidget: (context, url, error) => Icon(Icons.error),\n            width: Constants.ProfileHeaderIconSize,\n            height: Constants.ProfileHeaderIconSize,\n          ),\n          SizedBox(width: 10.0),\n          Expanded(\n            child: Column(\n              crossAxisAlignment: CrossAxisAlignment.start,\n              children: <Widget>[\n                Text('码农 Super V',\n                    style: TextStyle(\n                      color: AppColors.TitleColor,\n                      fontSize: 16.0,\n                      fontWeight: FontWeight.w500,\n                    )),\n                SizedBox(height: 10.0),\n                Text('微信号: xxx123xxx',\n                    style: TextStyle(\n                      color: AppColors.DescTextColor,\n                      fontSize: 13.0,\n                    ))\n              ],\n            ),\n          ),\n          Icon(\n            IconData(\n              0xe620,\n              fontFamily: Constants.IconFontFamily,\n            ),\n            size: 22.0,\n            color: AppColors.TabIconNormal,\n          ),\n          SizedBox(width: 5.0),\n          Icon(\n            IconData(\n              0xe664,\n              fontFamily: Constants.IconFontFamily,\n            ),\n            size: 22.0,\n            color: AppColors.TabIconNormal,\n          ),\n        ],\n      ),\n    );\n  }\n}\n\nclass ProfilePage extends StatefulWidget {\n  @override\n  _ProfilePageState createState() => _ProfilePageState();\n}\n\nclass _ProfilePageState extends State<ProfilePage> {\n  static const SEPARATE_SIZE = 20.0;\n\n  @override\n  Widget build(BuildContext context) {\n    return Container(\n      color: AppColors.BackgroundColor,\n      child: SingleChildScrollView(\n        child: Column(\n          children: <Widget>[\n            SizedBox(height: SEPARATE_SIZE),\n            _ProfileHeaderView(),\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_wallet.png',\n              title: '钱包',\n              showDivider: true,\n              onPressed: () {},\n            ),\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_collections.png',\n              title: '收藏',\n              showDivider: true,\n              onPressed: () {},\n            ),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_album.png',\n              title: '相册',\n              showDivider: true,\n              onPressed: () {},\n            ),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_cards_wallet.png',\n              title: '卡包',\n              showDivider: true,\n              onPressed: () {},\n            ),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_emotions.png',\n              title: '表情',\n              showDivider: true,\n              onPressed: () {},\n            ),\n            SizedBox(height: SEPARATE_SIZE),\n            FullWidthButton(\n              iconPath: 'assets/images/ic_settings.png',\n              title: '设置',\n              showDivider: true,\n              onPressed: () {},\n            ),\n          ],\n        ),\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "lib/widgets/full_width_button.dart",
    "content": "import 'package:flutter/material.dart';\nimport '../constants.dart' show Constants, AppColors;\n\nclass FullWidthButton extends StatelessWidget {\n  static const HORIZONTAL_PADDING = 20.0;\n  static const VERTICAL_PADDING = 13.0;\n\n  const FullWidthButton({\n    required this.title,\n    required this.iconPath,\n    required this.onPressed,\n    this.showDivider: false,\n  });\n\n  final String title;\n  final String iconPath;\n  final bool showDivider;\n  final VoidCallback onPressed;\n  @override\n  Widget build(BuildContext context) {\n    final pureButton = Row(\n      crossAxisAlignment: CrossAxisAlignment.center,\n      children: <Widget>[\n        Image.asset(\n          iconPath,\n          width: Constants.FullWidthIconButtonIconSize,\n          height: Constants.FullWidthIconButtonIconSize,\n        ),\n        SizedBox(width: HORIZONTAL_PADDING),\n        Expanded(\n          child: Text(title),\n        ),\n        Icon(\n          IconData(\n            0xe664,\n            fontFamily: Constants.IconFontFamily,\n          ),\n          size: 22.0,\n          color: AppColors.TabIconNormal,\n        ),\n      ],\n    );\n\n    final borderButton = Container(\n      decoration: BoxDecoration(\n        border: Border(\n            bottom: BorderSide(\n                color: AppColors.DividerColor, width: Constants.DividerWidth)),\n      ),\n      padding: EdgeInsets.only(bottom: VERTICAL_PADDING),\n      child: pureButton,\n    );\n\n    return GestureDetector(\n      onTap: onPressed,\n      child: Container(\n        padding: EdgeInsets.only(\n            left: HORIZONTAL_PADDING,\n            right: HORIZONTAL_PADDING,\n            top: VERTICAL_PADDING,\n            bottom: showDivider ? 0.0 : VERTICAL_PADDING),\n        color: Colors.white,\n        child: showDivider ? borderButton : pureButton,\n      ),\n    );\n  }\n}\n"
  },
  {
    "path": "pubspec.yaml",
    "content": "name: flutter_wechat_clone\ndescription: A new Flutter project.\n\n# The following line prevents the package from being accidentally published to\n# pub.dev using `pub publish`. This is preferred for private packages.\npublish_to: 'none' # Remove this line if you wish to publish to pub.dev\n\n# The following defines the version and build number for your application.\n# A version number is three numbers separated by dots, like 1.2.43\n# followed by an optional build number separated by a +.\n# Both the version and the builder number may be overridden in flutter\n# build by specifying --build-name and --build-number, respectively.\n# In Android, build-name is used as versionName while build-number used as versionCode.\n# Read more about Android versioning at https://developer.android.com/studio/publish/versioning\n# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.\n# Read more about iOS versioning at\n# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html\nversion: 1.0.0+1\n\nenvironment:\n  sdk: \">=2.12.0 <3.0.0\"\n\ndependencies:\n  flutter:\n    sdk: flutter\n\n\n  # The following adds the Cupertino Icons font to your application.\n  # Use with the CupertinoIcons class for iOS style icons.\n  cupertino_icons: ^1.0.2\n  cached_network_image: ^3.1.0\n\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\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  assets:\n    - assets/images/ic_file_transfer.png\n    - assets/images/ic_fengchao.png\n    - assets/images/ic_tx_news.png\n    - assets/images/ic_wx_games.png\n    - assets/images/ic_new_friend.png\n    - assets/images/ic_group_chat.png\n    - assets/images/ic_tag.png\n    - assets/images/ic_public_account.png\n    - assets/images/ic_bottle_msg.png\n    - assets/images/ic_feeds.png\n    - assets/images/ic_game_entry.png\n    - assets/images/ic_mini_program.png\n    - assets/images/ic_people_nearby.png\n    - assets/images/ic_quick_scan.png\n    - assets/images/ic_quick_search.png\n    - assets/images/ic_shake_phone.png\n    - assets/images/ic_shopping.png\n    - assets/images/ic_social_circle.png\n    - assets/images/ic_wallet.png\n    - assets/images/ic_album.png\n    - assets/images/ic_collections.png\n    - assets/images/ic_cards_wallet.png\n    - assets/images/ic_emotions.png\n    - assets/images/ic_settings.png\n    - assets/images/ic_qrcode_preview_tiny.png\n    - assets/images/default_nor_avatar.png\n  fonts:\n    - family: appIconFont\n      fonts:\n       - asset: assets/fonts/iconfont.ttf\n\n\n  # To add assets to your application, add an assets section, like this:\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/widget_test.dart",
    "content": "// This is a basic Flutter widget test.\n//\n// To perform an interaction with a widget in your test, use the WidgetTester\n// utility that Flutter provides. For example, you can send tap and scroll\n// gestures. You can also use WidgetTester to find child widgets in the widget\n// tree, read text, and verify that the values of widget properties are correct.\n\nimport 'package:flutter/material.dart';\nimport 'package:flutter_test/flutter_test.dart';\n\nimport 'package:flutter_wechat_clone/main.dart';\n\nvoid main() {\n  testWidgets('Counter increments smoke test', (WidgetTester tester) async {\n    // Build our app and trigger a frame.\n    await tester.pumpWidget(MyApp());\n\n    // Verify that our counter starts at 0.\n    expect(find.text('0'), findsOneWidget);\n    expect(find.text('1'), findsNothing);\n\n    // Tap the '+' icon and trigger a frame.\n    await tester.tap(find.byIcon(Icons.add));\n    await tester.pump();\n\n    // Verify that our counter has incremented.\n    expect(find.text('0'), findsNothing);\n    expect(find.text('1'), findsOneWidget);\n  });\n}\n"
  },
  {
    "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=\"flutter_wechat_clone\">\n  <link rel=\"apple-touch-icon\" href=\"icons/Icon-192.png\">\n\n  <title>flutter_wechat_clone</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\": \"flutter_wechat_clone\",\n    \"short_name\": \"flutter_wechat_clone\",\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"
  }
]