From c45a2e20aa6db25f25dd8ee9b4dfa68f6c243457 Mon Sep 17 00:00:00 2001 From: LikeMinds SDK Bot Date: Thu, 29 May 2025 14:37:48 +0530 Subject: [PATCH] LikeMinds SDK Integration --- ingest.txt | 6601 +++++++++++++++++ lib/main.dart | 29 +- macos/Flutter/GeneratedPluginRegistrant.swift | 36 + pubspec.lock | 1630 +++- pubspec.yaml | 5 +- 5 files changed, 8203 insertions(+), 98 deletions(-) create mode 100644 ingest.txt diff --git a/ingest.txt b/ingest.txt new file mode 100644 index 0000000..8dc036b --- /dev/null +++ b/ingest.txt @@ -0,0 +1,6601 @@ +Directory structure: +└── integration/ + ├── README.md + ├── analysis_options.yaml + ├── pubspec.lock + ├── pubspec.yaml + ├── .flutter-plugins + ├── .flutter-plugins-dependencies + ├── .fvmrc + ├── .metadata + ├── android/ + │ ├── build.gradle.kts + │ ├── gradle.properties + │ ├── local.properties + │ ├── settings.gradle.kts + │ ├── .gitignore + │ ├── app/ + │ │ ├── build.gradle.kts + │ │ └── src/ + │ │ ├── debug/ + │ │ │ └── AndroidManifest.xml + │ │ ├── main/ + │ │ │ ├── AndroidManifest.xml + │ │ │ ├── java/ + │ │ │ │ └── io/ + │ │ │ │ └── flutter/ + │ │ │ │ └── plugins/ + │ │ │ │ └── GeneratedPluginRegistrant.java + │ │ │ ├── kotlin/ + │ │ │ │ └── com/ + │ │ │ │ └── example/ + │ │ │ │ └── flutter_application_1/ + │ │ │ │ └── MainActivity.kt + │ │ │ └── res/ + │ │ │ ├── drawable/ + │ │ │ │ └── launch_background.xml + │ │ │ ├── drawable-v21/ + │ │ │ │ └── launch_background.xml + │ │ │ ├── mipmap-hdpi/ + │ │ │ ├── mipmap-mdpi/ + │ │ │ ├── mipmap-xhdpi/ + │ │ │ ├── mipmap-xxhdpi/ + │ │ │ ├── mipmap-xxxhdpi/ + │ │ │ ├── values/ + │ │ │ │ └── styles.xml + │ │ │ └── values-night/ + │ │ │ └── styles.xml + │ │ └── profile/ + │ │ └── AndroidManifest.xml + │ └── gradle/ + │ └── wrapper/ + │ └── gradle-wrapper.properties + ├── ios/ + │ ├── Podfile + │ ├── .gitignore + │ ├── Flutter/ + │ │ ├── AppFrameworkInfo.plist + │ │ ├── Debug.xcconfig + │ │ ├── Generated.xcconfig + │ │ ├── Release.xcconfig + │ │ └── flutter_export_environment.sh + │ ├── Runner/ + │ │ ├── AppDelegate.swift + │ │ ├── GeneratedPluginRegistrant.h + │ │ ├── GeneratedPluginRegistrant.m + │ │ ├── Info.plist + │ │ ├── Runner-Bridging-Header.h + │ │ ├── Assets.xcassets/ + │ │ │ ├── AppIcon.appiconset/ + │ │ │ │ └── Contents.json + │ │ │ └── LaunchImage.imageset/ + │ │ │ ├── README.md + │ │ │ └── Contents.json + │ │ └── Base.lproj/ + │ │ ├── LaunchScreen.storyboard + │ │ └── Main.storyboard + │ ├── Runner.xcodeproj/ + │ │ ├── project.pbxproj + │ │ ├── project.xcworkspace/ + │ │ │ ├── contents.xcworkspacedata + │ │ │ └── xcshareddata/ + │ │ │ ├── IDEWorkspaceChecks.plist + │ │ │ └── WorkspaceSettings.xcsettings + │ │ └── xcshareddata/ + │ │ └── xcschemes/ + │ │ └── Runner.xcscheme + │ ├── Runner.xcworkspace/ + │ │ ├── contents.xcworkspacedata + │ │ └── xcshareddata/ + │ │ ├── IDEWorkspaceChecks.plist + │ │ └── WorkspaceSettings.xcsettings + │ └── RunnerTests/ + │ └── RunnerTests.swift + ├── lib/ + │ └── main.dart + ├── macos/ + │ ├── Podfile + │ ├── .gitignore + │ ├── Flutter/ + │ │ ├── Flutter-Debug.xcconfig + │ │ ├── Flutter-Release.xcconfig + │ │ ├── GeneratedPluginRegistrant.swift + │ │ └── ephemeral/ + │ │ ├── Flutter-Generated.xcconfig + │ │ └── flutter_export_environment.sh + │ ├── Runner/ + │ │ ├── AppDelegate.swift + │ │ ├── DebugProfile.entitlements + │ │ ├── Info.plist + │ │ ├── MainFlutterWindow.swift + │ │ ├── Release.entitlements + │ │ ├── Assets.xcassets/ + │ │ │ └── AppIcon.appiconset/ + │ │ │ └── Contents.json + │ │ ├── Base.lproj/ + │ │ │ └── MainMenu.xib + │ │ └── Configs/ + │ │ ├── AppInfo.xcconfig + │ │ ├── Debug.xcconfig + │ │ ├── Release.xcconfig + │ │ └── Warnings.xcconfig + │ ├── Runner.xcodeproj/ + │ │ ├── project.pbxproj + │ │ ├── project.xcworkspace/ + │ │ │ └── xcshareddata/ + │ │ │ └── IDEWorkspaceChecks.plist + │ │ └── xcshareddata/ + │ │ └── xcschemes/ + │ │ └── Runner.xcscheme + │ ├── Runner.xcworkspace/ + │ │ ├── contents.xcworkspacedata + │ │ └── xcshareddata/ + │ │ └── IDEWorkspaceChecks.plist + │ └── RunnerTests/ + │ └── RunnerTests.swift + ├── test/ + │ └── widget_test.dart + ├── web/ + │ ├── index.html + │ ├── manifest.json + │ └── icons/ + └── .dart_tool/ + ├── package_config.json + ├── package_config_subset + ├── version + └── dartpad/ + └── web_plugin_registrant.dart + +================================================ +File: README.md +================================================ +# flutter_application_1 + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) + +For help getting started with Flutter development, view the +[online documentation](https://docs.flutter.dev/), which offers tutorials, +samples, guidance on mobile development, and a full API reference. + + + +================================================ +File: analysis_options.yaml +================================================ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at https://dart.dev/lints. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options + + + +================================================ +File: pubspec.lock +================================================ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + collection: + dependency: transitive + description: + name: collection + sha256: a1ace0a119f20aabc852d165077c036cd864315bd99b7eaa10a60100341941bf + url: "https://pub.dev" + source: hosted + version: "1.19.0" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6 + url: "https://pub.dev" + source: hosted + version: "1.0.8" + extended_text_field: + dependency: "direct overridden" + description: + name: extended_text_field + sha256: "3996195c117c6beb734026a7bc0ba80d7e4e84e4edd4728caa544d8209ab4d7d" + url: "https://pub.dev" + source: hosted + version: "16.0.2" + extended_text_library: + dependency: transitive + description: + name: extended_text_library + sha256: "13d99f8a10ead472d5e2cf4770d3d047203fe5054b152e9eb5dc692a71befbba" + url: "https://pub.dev" + source: hosted + version: "12.0.1" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1" + url: "https://pub.dev" + source: hosted + version: "5.0.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "7bb2830ebd849694d1ec25bf1f44582d6ac531a57a365a803a6034ff751d2d06" + url: "https://pub.dev" + source: hosted + version: "10.0.7" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "9491a714cca3667b60b5c420da8217e6de0d1ba7a5ec322fab01758f6998f379" + url: "https://pub.dev" + source: hosted + version: "3.0.8" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + lints: + dependency: transitive + description: + name: lints + sha256: c35bb79562d980e9a453fc715854e1ed39e24e7d0297a880ef54e17f9874a9d7 + url: "https://pub.dev" + source: hosted + version: "5.1.1" + matcher: + dependency: transitive + description: + name: matcher + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + url: "https://pub.dev" + source: hosted + version: "0.12.16+1" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec + url: "https://pub.dev" + source: hosted + version: "0.11.1" + meta: + dependency: transitive + description: + name: meta + sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 + url: "https://pub.dev" + source: hosted + version: "1.15.0" + path: + dependency: transitive + description: + name: path + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" + source: hosted + version: "1.9.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "9f47fd3630d76be3ab26f0ee06d213679aa425996925ff3feffdec504931c377" + url: "https://pub.dev" + source: hosted + version: "1.12.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "688af5ed3402a4bde5b3a6c15fd768dbf2621a614950b17f04626c431ab3c4c3" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c" + url: "https://pub.dev" + source: hosted + version: "0.7.3" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: f6be3ed8bd01289b34d679c2b62226f63c0e69f9fd2e50a6b3c1c729a961041b + url: "https://pub.dev" + source: hosted + version: "14.3.0" +sdks: + dart: ">=3.6.0 <4.0.0" + flutter: ">=3.18.0-18.0.pre.54" + + + +================================================ +File: pubspec.yaml +================================================ +name: flutter_application_1 +description: "A new Flutter project." +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# In Windows, build-name is used as the major, minor, and patch parts +# of the product and file versions while build-number is used as the build suffix. +version: 1.0.0+1 + +environment: + sdk: ^3.6.0 + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.8 + +dependency_overrides: + extended_text_field: ^16.0.0 # Or another version like ^15.0.0 or a specific older/newer one + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^5.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter packages. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/to/resolution-aware-images + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/to/asset-from-package + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/to/font-from-package + + + +================================================ +File: .flutter-plugins +================================================ +# This is a generated file; do not edit or check into version control. +device_info_plus=/Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/ +emoji_picker_flutter=/Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/ +file_picker=/Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/ +file_selector_linux=/Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.3+2/ +file_selector_macos=/Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.4+3/ +file_selector_windows=/Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+4/ +firebase_core=/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core-3.13.1/ +firebase_core_web=/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core_web-2.23.0/ +firebase_database=/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database-11.3.6/ +firebase_database_web=/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database_web-0.2.6+12/ +firebase_messaging=/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging-15.2.6/ +firebase_messaging_web=/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging_web-3.10.6/ +flutter_plugin_android_lifecycle=/Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.28/ +flutter_sound=/Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound-9.28.0/ +flutter_sound_web=/Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound_web-9.28.0/ +image_picker=/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker-1.1.2/ +image_picker_android=/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_android-0.8.12+23/ +image_picker_for_web=/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_for_web-3.0.6/ +image_picker_ios=/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12+2/ +image_picker_linux=/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.1+2/ +image_picker_macos=/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.1+2/ +image_picker_windows=/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.1+1/ +media_kit_libs_android_video=/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_android_video-1.3.7/ +media_kit_libs_ios_video=/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ +media_kit_libs_linux=/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ +media_kit_libs_macos_video=/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ +media_kit_libs_windows_video=/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_windows_video-1.0.11/ +media_kit_video=/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0/ +open_file=/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file-3.5.10/ +open_file_android=/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_android-1.0.6/ +open_file_ios=/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_ios-1.0.3/ +open_file_linux=/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_linux-0.0.5/ +open_file_mac=/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_mac-1.0.3/ +open_file_web=/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_web-0.0.4/ +open_file_windows=/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_windows-0.0.3/ +package_info_plus=/Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/ +path_provider=/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ +path_provider_android=/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_android-2.2.17/ +path_provider_foundation=/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/ +path_provider_linux=/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ +path_provider_windows=/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ +pdf_render=/Users/anujkumar/.pub-cache/hosted/pub.dev/pdf_render-1.4.12/ +permission_handler=/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler-11.4.0/ +permission_handler_android=/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_android-12.1.0/ +permission_handler_apple=/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ +permission_handler_html=/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_html-0.1.3+5/ +permission_handler_windows=/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_windows-0.2.1/ +screen_brightness_android=/Users/anujkumar/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.1/ +shared_preferences=/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences-2.5.3/ +shared_preferences_android=/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.10/ +shared_preferences_foundation=/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.4/ +shared_preferences_linux=/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ +shared_preferences_web=/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ +shared_preferences_windows=/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ +sqflite=/Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ +sqflite_android=/Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_android-2.4.1/ +sqflite_darwin=/Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ +url_launcher=/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher-6.3.1/ +url_launcher_android=/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.16/ +url_launcher_ios=/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.3/ +url_launcher_linux=/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1/ +url_launcher_macos=/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.2/ +url_launcher_web=/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ +url_launcher_windows=/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4/ +video_thumbnail=/Users/anujkumar/.pub-cache/hosted/pub.dev/video_thumbnail-0.5.6/ +volume_controller=/Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0/ +wakelock_plus=/Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/ + + + +================================================ +File: .flutter-plugins-dependencies +================================================ +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"device_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"emoji_picker_flutter","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"file_picker","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"firebase_core","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core-3.13.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"firebase_database","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database-11.3.6/","native_build":true,"dependencies":["firebase_core"],"dev_dependency":false},{"name":"firebase_messaging","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging-15.2.6/","native_build":true,"dependencies":["firebase_core"],"dev_dependency":false},{"name":"flutter_sound","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound-9.28.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"image_picker_ios","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12+2/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"media_kit_libs_ios_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"media_kit_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0/","native_build":true,"dependencies":["wakelock_plus","volume_controller"],"dev_dependency":false},{"name":"open_file_ios","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_ios-1.0.3/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_foundation","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"pdf_render","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/pdf_render-1.4.12/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"permission_handler_apple","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"shared_preferences_foundation","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.4/","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_darwin","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_ios","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.3/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"video_thumbnail","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/video_thumbnail-0.5.6/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"volume_controller","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"wakelock_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/","native_build":true,"dependencies":["package_info_plus"],"dev_dependency":false}],"android":[{"name":"device_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"emoji_picker_flutter","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"file_picker","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/","native_build":true,"dependencies":["flutter_plugin_android_lifecycle"],"dev_dependency":false},{"name":"firebase_core","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core-3.13.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"firebase_database","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database-11.3.6/","native_build":true,"dependencies":["firebase_core"],"dev_dependency":false},{"name":"firebase_messaging","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging-15.2.6/","native_build":true,"dependencies":["firebase_core"],"dev_dependency":false},{"name":"flutter_plugin_android_lifecycle","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.28/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_sound","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound-9.28.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"image_picker_android","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_android-0.8.12+23/","native_build":true,"dependencies":["flutter_plugin_android_lifecycle"],"dev_dependency":false},{"name":"media_kit_libs_android_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_android_video-1.3.7/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"media_kit_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0/","native_build":true,"dependencies":["wakelock_plus","screen_brightness_android","volume_controller"],"dev_dependency":false},{"name":"open_file_android","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_android-1.0.6/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_android","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_android-2.2.17/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"pdf_render","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/pdf_render-1.4.12/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"permission_handler_android","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_android-12.1.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"screen_brightness_android","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"shared_preferences_android","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.10/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_android","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_android-2.4.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_android","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.16/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"video_thumbnail","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/video_thumbnail-0.5.6/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"volume_controller","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"wakelock_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/","native_build":true,"dependencies":["package_info_plus"],"dev_dependency":false}],"macos":[{"name":"device_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"emoji_picker_flutter","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"file_picker","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"file_selector_macos","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.4+3/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"firebase_core","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core-3.13.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"firebase_database","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database-11.3.6/","native_build":true,"dependencies":["firebase_core"],"dev_dependency":false},{"name":"firebase_messaging","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging-15.2.6/","native_build":true,"dependencies":["firebase_core"],"dev_dependency":false},{"name":"image_picker_macos","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.1+2/","native_build":false,"dependencies":["file_selector_macos"],"dev_dependency":false},{"name":"media_kit_libs_macos_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"media_kit_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0/","native_build":true,"dependencies":["wakelock_plus","volume_controller"],"dev_dependency":false},{"name":"open_file_mac","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_mac-1.0.3/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_foundation","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"pdf_render","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/pdf_render-1.4.12/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"shared_preferences_foundation","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.4/","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_darwin","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_macos","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.2/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"volume_controller","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"wakelock_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/","native_build":true,"dependencies":["package_info_plus"],"dev_dependency":false}],"linux":[{"name":"device_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"emoji_picker_flutter","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"file_picker","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"file_selector_linux","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.3+2/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"image_picker_linux","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.1+2/","native_build":false,"dependencies":["file_selector_linux"],"dev_dependency":false},{"name":"media_kit_libs_linux","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"media_kit_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0/","native_build":true,"dependencies":["wakelock_plus","volume_controller"],"dev_dependency":false},{"name":"open_file_linux","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_linux-0.0.5/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"path_provider_linux","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"shared_preferences_linux","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/","native_build":false,"dependencies":["path_provider_linux"],"dev_dependency":false},{"name":"url_launcher_linux","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"volume_controller","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"wakelock_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/","native_build":false,"dependencies":["package_info_plus"],"dev_dependency":false}],"windows":[{"name":"device_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"emoji_picker_flutter","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"file_picker","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"file_selector_windows","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+4/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"firebase_core","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core-3.13.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"image_picker_windows","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.1+1/","native_build":false,"dependencies":["file_selector_windows"],"dev_dependency":false},{"name":"media_kit_libs_windows_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_windows_video-1.0.11/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"media_kit_video","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0/","native_build":true,"dependencies":["wakelock_plus","volume_controller"],"dev_dependency":false},{"name":"open_file_windows","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_windows-0.0.3/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"path_provider_windows","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"permission_handler_windows","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_windows-0.2.1/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"shared_preferences_windows","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/","native_build":false,"dependencies":["path_provider_windows"],"dev_dependency":false},{"name":"url_launcher_windows","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"volume_controller","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0/","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"wakelock_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/","native_build":false,"dependencies":["package_info_plus"],"dev_dependency":false}],"web":[{"name":"device_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/","dependencies":[],"dev_dependency":false},{"name":"emoji_picker_flutter","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/","dependencies":[],"dev_dependency":false},{"name":"file_picker","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/","dependencies":[],"dev_dependency":false},{"name":"firebase_core_web","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core_web-2.23.0/","dependencies":[],"dev_dependency":false},{"name":"firebase_database_web","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database_web-0.2.6+12/","dependencies":["firebase_core_web"],"dev_dependency":false},{"name":"firebase_messaging_web","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging_web-3.10.6/","dependencies":["firebase_core_web"],"dev_dependency":false},{"name":"flutter_sound_web","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound_web-9.28.0/","dependencies":[],"dev_dependency":false},{"name":"image_picker_for_web","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_for_web-3.0.6/","dependencies":[],"dev_dependency":false},{"name":"open_file_web","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_web-0.0.4/","dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/","dependencies":[],"dev_dependency":false},{"name":"pdf_render","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/pdf_render-1.4.12/","dependencies":[],"dev_dependency":false},{"name":"permission_handler_html","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_html-0.1.3+5/","dependencies":[],"dev_dependency":false},{"name":"shared_preferences_web","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/","dependencies":[],"dev_dependency":false},{"name":"url_launcher_web","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/","dependencies":[],"dev_dependency":false},{"name":"wakelock_plus","path":"/Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/","dependencies":["package_info_plus"],"dev_dependency":false}]},"dependencyGraph":[{"name":"device_info_plus","dependencies":[]},{"name":"emoji_picker_flutter","dependencies":["shared_preferences"]},{"name":"file_picker","dependencies":["flutter_plugin_android_lifecycle"]},{"name":"file_selector_linux","dependencies":[]},{"name":"file_selector_macos","dependencies":[]},{"name":"file_selector_windows","dependencies":[]},{"name":"firebase_core","dependencies":["firebase_core_web"]},{"name":"firebase_core_web","dependencies":[]},{"name":"firebase_database","dependencies":["firebase_core","firebase_database_web"]},{"name":"firebase_database_web","dependencies":["firebase_core","firebase_core_web"]},{"name":"firebase_messaging","dependencies":["firebase_core","firebase_messaging_web"]},{"name":"firebase_messaging_web","dependencies":["firebase_core","firebase_core_web"]},{"name":"flutter_plugin_android_lifecycle","dependencies":[]},{"name":"flutter_sound","dependencies":["path_provider","flutter_sound_web"]},{"name":"flutter_sound_web","dependencies":[]},{"name":"image_picker","dependencies":["image_picker_android","image_picker_for_web","image_picker_ios","image_picker_linux","image_picker_macos","image_picker_windows"]},{"name":"image_picker_android","dependencies":["flutter_plugin_android_lifecycle"]},{"name":"image_picker_for_web","dependencies":[]},{"name":"image_picker_ios","dependencies":[]},{"name":"image_picker_linux","dependencies":["file_selector_linux"]},{"name":"image_picker_macos","dependencies":["file_selector_macos"]},{"name":"image_picker_windows","dependencies":["file_selector_windows"]},{"name":"media_kit_libs_android_video","dependencies":[]},{"name":"media_kit_libs_ios_video","dependencies":[]},{"name":"media_kit_libs_linux","dependencies":[]},{"name":"media_kit_libs_macos_video","dependencies":[]},{"name":"media_kit_libs_windows_video","dependencies":[]},{"name":"media_kit_video","dependencies":["wakelock_plus","screen_brightness_android","volume_controller"]},{"name":"open_file","dependencies":["open_file_android","open_file_web","open_file_ios","open_file_mac","open_file_windows","open_file_linux"]},{"name":"open_file_android","dependencies":[]},{"name":"open_file_ios","dependencies":[]},{"name":"open_file_linux","dependencies":[]},{"name":"open_file_mac","dependencies":[]},{"name":"open_file_web","dependencies":[]},{"name":"open_file_windows","dependencies":[]},{"name":"package_info_plus","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]},{"name":"pdf_render","dependencies":[]},{"name":"permission_handler","dependencies":["permission_handler_android","permission_handler_apple","permission_handler_html","permission_handler_windows"]},{"name":"permission_handler_android","dependencies":[]},{"name":"permission_handler_apple","dependencies":[]},{"name":"permission_handler_html","dependencies":[]},{"name":"permission_handler_windows","dependencies":[]},{"name":"screen_brightness_android","dependencies":[]},{"name":"shared_preferences","dependencies":["shared_preferences_android","shared_preferences_foundation","shared_preferences_linux","shared_preferences_web","shared_preferences_windows"]},{"name":"shared_preferences_android","dependencies":[]},{"name":"shared_preferences_foundation","dependencies":[]},{"name":"shared_preferences_linux","dependencies":["path_provider_linux"]},{"name":"shared_preferences_web","dependencies":[]},{"name":"shared_preferences_windows","dependencies":["path_provider_windows"]},{"name":"sqflite","dependencies":["sqflite_android","sqflite_darwin"]},{"name":"sqflite_android","dependencies":[]},{"name":"sqflite_darwin","dependencies":[]},{"name":"url_launcher","dependencies":["url_launcher_android","url_launcher_ios","url_launcher_linux","url_launcher_macos","url_launcher_web","url_launcher_windows"]},{"name":"url_launcher_android","dependencies":[]},{"name":"url_launcher_ios","dependencies":[]},{"name":"url_launcher_linux","dependencies":[]},{"name":"url_launcher_macos","dependencies":[]},{"name":"url_launcher_web","dependencies":[]},{"name":"url_launcher_windows","dependencies":[]},{"name":"video_thumbnail","dependencies":[]},{"name":"volume_controller","dependencies":[]},{"name":"wakelock_plus","dependencies":["package_info_plus"]}],"date_created":"2025-05-29 14:16:44.342430","version":"3.29.3","swift_package_manager_enabled":{"ios":false,"macos":false}} + + +================================================ +File: .fvmrc +================================================ +{ + "flutter": "3.27.1" +} + + +================================================ +File: .metadata +================================================ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "ea121f8859e4b13e47a8f845e4586164519588bc" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: ea121f8859e4b13e47a8f845e4586164519588bc + base_revision: ea121f8859e4b13e47a8f845e4586164519588bc + - platform: android + create_revision: ea121f8859e4b13e47a8f845e4586164519588bc + base_revision: ea121f8859e4b13e47a8f845e4586164519588bc + - platform: ios + create_revision: ea121f8859e4b13e47a8f845e4586164519588bc + base_revision: ea121f8859e4b13e47a8f845e4586164519588bc + - platform: macos + create_revision: ea121f8859e4b13e47a8f845e4586164519588bc + base_revision: ea121f8859e4b13e47a8f845e4586164519588bc + - platform: web + create_revision: ea121f8859e4b13e47a8f845e4586164519588bc + base_revision: ea121f8859e4b13e47a8f845e4586164519588bc + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' + + + +================================================ +File: android/build.gradle.kts +================================================ +allprojects { + repositories { + google() + mavenCentral() + } +} + +val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get() +rootProject.layout.buildDirectory.value(newBuildDir) + +subprojects { + val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name) + project.layout.buildDirectory.value(newSubprojectBuildDir) +} +subprojects { + project.evaluationDependsOn(":app") +} + +tasks.register("clean") { + delete(rootProject.layout.buildDirectory) +} + + + +================================================ +File: android/gradle.properties +================================================ +org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError +android.useAndroidX=true +android.enableJetifier=true + + + +================================================ +File: android/local.properties +================================================ +sdk.dir=/Users/anujkumar/Library/Android/sdk +flutter.sdk=/Users/anujkumar/Documents/flutter + + +================================================ +File: android/settings.gradle.kts +================================================ +pluginManagement { + val flutterSdkPath = run { + val properties = java.util.Properties() + file("local.properties").inputStream().use { properties.load(it) } + val flutterSdkPath = properties.getProperty("flutter.sdk") + require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" } + flutterSdkPath + } + + includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } +} + +plugins { + id("dev.flutter.flutter-plugin-loader") version "1.0.0" + id("com.android.application") version "8.7.0" apply false + id("org.jetbrains.kotlin.android") version "1.8.22" apply false +} + +include(":app") + + + +================================================ +File: android/.gitignore +================================================ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java +.cxx/ + +# Remember to never publicly share your keystore. +# See https://flutter.dev/to/reference-keystore +key.properties +**/*.keystore +**/*.jks + + + +================================================ +File: android/app/build.gradle.kts +================================================ +plugins { + id("com.android.application") + id("kotlin-android") + // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. + id("dev.flutter.flutter-gradle-plugin") +} + +android { + namespace = "com.example.flutter_application_1" + compileSdk = flutter.compileSdkVersion + ndkVersion = flutter.ndkVersion + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 + } + + kotlinOptions { + jvmTarget = JavaVersion.VERSION_11.toString() + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId = "com.example.flutter_application_1" + // You can update the following values to match your application needs. + // For more information, see: https://flutter.dev/to/review-gradle-config. + minSdk = 24 + targetSdk = flutter.targetSdkVersion + versionCode = flutter.versionCode + versionName = flutter.versionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig = signingConfigs.getByName("debug") + } + } +} + +flutter { + source = "../.." +} + + + +================================================ +File: android/app/src/debug/AndroidManifest.xml +================================================ + + + + + + + +================================================ +File: android/app/src/main/AndroidManifest.xml +================================================ + + + + + + + + + + + + + + + + + + + + + + + + +================================================ +File: android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java +================================================ +package io.flutter.plugins; + +import androidx.annotation.Keep; +import androidx.annotation.NonNull; +import io.flutter.Log; + +import io.flutter.embedding.engine.FlutterEngine; + +/** + * Generated file. Do not edit. + * This file is generated by the Flutter tool based on the + * plugins that support the Android platform. + */ +@Keep +public final class GeneratedPluginRegistrant { + private static final String TAG = "GeneratedPluginRegistrant"; + public static void registerWith(@NonNull FlutterEngine flutterEngine) { + try { + flutterEngine.getPlugins().add(new dev.fluttercommunity.plus.device_info.DeviceInfoPlusPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin device_info_plus, dev.fluttercommunity.plus.device_info.DeviceInfoPlusPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.fintasys.emoji_picker_flutter.EmojiPickerFlutterPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin emoji_picker_flutter, com.fintasys.emoji_picker_flutter.EmojiPickerFlutterPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.mr.flutter.plugin.filepicker.FilePickerPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin file_picker, com.mr.flutter.plugin.filepicker.FilePickerPlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.core.FlutterFirebaseCorePlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin firebase_core, io.flutter.plugins.firebase.core.FlutterFirebaseCorePlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.database.FirebaseDatabasePlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin firebase_database, io.flutter.plugins.firebase.database.FirebaseDatabasePlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.messaging.FlutterFirebaseMessagingPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin firebase_messaging, io.flutter.plugins.firebase.messaging.FlutterFirebaseMessagingPlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.flutter_plugin_android_lifecycle.FlutterAndroidLifecyclePlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin flutter_plugin_android_lifecycle, io.flutter.plugins.flutter_plugin_android_lifecycle.FlutterAndroidLifecyclePlugin", e); + } + try { + flutterEngine.getPlugins().add(new xyz.canardoux.fluttersound.FlutterSound()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin flutter_sound, xyz.canardoux.fluttersound.FlutterSound", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.imagepicker.ImagePickerPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin image_picker_android, io.flutter.plugins.imagepicker.ImagePickerPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.alexmercerind.media_kit_libs_android_video.MediaKitLibsAndroidVideoPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin media_kit_libs_android_video, com.alexmercerind.media_kit_libs_android_video.MediaKitLibsAndroidVideoPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.alexmercerind.media_kit_video.MediaKitVideoPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin media_kit_video, com.alexmercerind.media_kit_video.MediaKitVideoPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.crazecoder.openfile.OpenFilePlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin open_file_android, com.crazecoder.openfile.OpenFilePlugin", e); + } + try { + flutterEngine.getPlugins().add(new dev.fluttercommunity.plus.packageinfo.PackageInfoPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin package_info_plus, dev.fluttercommunity.plus.packageinfo.PackageInfoPlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.pathprovider.PathProviderPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin path_provider_android, io.flutter.plugins.pathprovider.PathProviderPlugin", e); + } + try { + flutterEngine.getPlugins().add(new jp.espresso3389.pdf_render.PdfRenderPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin pdf_render, jp.espresso3389.pdf_render.PdfRenderPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.baseflow.permissionhandler.PermissionHandlerPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin permission_handler_android, com.baseflow.permissionhandler.PermissionHandlerPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.aaassseee.screen_brightness_android.ScreenBrightnessAndroidPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin screen_brightness_android, com.aaassseee.screen_brightness_android.ScreenBrightnessAndroidPlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin shared_preferences_android, io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.tekartik.sqflite.SqflitePlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin sqflite_android, com.tekartik.sqflite.SqflitePlugin", e); + } + try { + flutterEngine.getPlugins().add(new io.flutter.plugins.urllauncher.UrlLauncherPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin url_launcher_android, io.flutter.plugins.urllauncher.UrlLauncherPlugin", e); + } + try { + flutterEngine.getPlugins().add(new xyz.justsoft.video_thumbnail.VideoThumbnailPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin video_thumbnail, xyz.justsoft.video_thumbnail.VideoThumbnailPlugin", e); + } + try { + flutterEngine.getPlugins().add(new com.kurenai7968.volume_controller.VolumeControllerPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin volume_controller, com.kurenai7968.volume_controller.VolumeControllerPlugin", e); + } + try { + flutterEngine.getPlugins().add(new dev.fluttercommunity.plus.wakelock.WakelockPlusPlugin()); + } catch (Exception e) { + Log.e(TAG, "Error registering plugin wakelock_plus, dev.fluttercommunity.plus.wakelock.WakelockPlusPlugin", e); + } + } +} + + + +================================================ +File: android/app/src/main/kotlin/com/example/flutter_application_1/MainActivity.kt +================================================ +package com.example.flutter_application_1 + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity : FlutterActivity() + + + +================================================ +File: android/app/src/main/res/drawable/launch_background.xml +================================================ + + + + + + + + + + + +================================================ +File: android/app/src/main/res/drawable-v21/launch_background.xml +================================================ + + + + + + + + + + + + + + + + +================================================ +File: android/app/src/main/res/values/styles.xml +================================================ + + + + + + + + + + +================================================ +File: android/app/src/main/res/values-night/styles.xml +================================================ + + + + + + + + + + +================================================ +File: android/app/src/profile/AndroidManifest.xml +================================================ + + + + + + + +================================================ +File: android/gradle/wrapper/gradle-wrapper.properties +================================================ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip + + + +================================================ +File: ios/Podfile +================================================ +# Uncomment this line to define a global platform for your project +# platform :ios, '12.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_ios_podfile_setup + +target 'Runner' do + use_frameworks! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_ios_build_settings(target) + end +end + + + +================================================ +File: ios/.gitignore +================================================ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 + + + +================================================ +File: ios/Flutter/AppFrameworkInfo.plist +================================================ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 12.0 + + + + + +================================================ +File: ios/Flutter/Debug.xcconfig +================================================ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Generated.xcconfig" + + + +================================================ +File: ios/Flutter/Generated.xcconfig +================================================ +// This is a generated file; do not edit or check into version control. +FLUTTER_ROOT=/Users/anujkumar/Documents/flutter +FLUTTER_APPLICATION_PATH=/Users/anujkumar/Desktop/ai-mvp/output/45b97be5-f2d2-4589-9aa6-5c11b5983a5d/integration +COCOAPODS_PARALLEL_CODE_SIGN=true +FLUTTER_TARGET=lib/main.dart +FLUTTER_BUILD_DIR=build +FLUTTER_BUILD_NAME=1.0.0 +FLUTTER_BUILD_NUMBER=1 +EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386 +EXCLUDED_ARCHS[sdk=iphoneos*]=armv7 +DART_OBFUSCATION=false +TRACK_WIDGET_CREATION=true +TREE_SHAKE_ICONS=false +PACKAGE_CONFIG=.dart_tool/package_config.json + + + +================================================ +File: ios/Flutter/Release.xcconfig +================================================ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "Generated.xcconfig" + + + +================================================ +File: ios/Flutter/flutter_export_environment.sh +================================================ +#!/bin/sh +# This is a generated file; do not edit or check into version control. +export "FLUTTER_ROOT=/Users/anujkumar/Documents/flutter" +export "FLUTTER_APPLICATION_PATH=/Users/anujkumar/Desktop/ai-mvp/output/45b97be5-f2d2-4589-9aa6-5c11b5983a5d/integration" +export "COCOAPODS_PARALLEL_CODE_SIGN=true" +export "FLUTTER_TARGET=lib/main.dart" +export "FLUTTER_BUILD_DIR=build" +export "FLUTTER_BUILD_NAME=1.0.0" +export "FLUTTER_BUILD_NUMBER=1" +export "DART_OBFUSCATION=false" +export "TRACK_WIDGET_CREATION=true" +export "TREE_SHAKE_ICONS=false" +export "PACKAGE_CONFIG=.dart_tool/package_config.json" + + + +================================================ +File: ios/Runner/AppDelegate.swift +================================================ +import Flutter +import UIKit + +@main +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} + + + +================================================ +File: ios/Runner/GeneratedPluginRegistrant.h +================================================ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GeneratedPluginRegistrant_h +#define GeneratedPluginRegistrant_h + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface GeneratedPluginRegistrant : NSObject ++ (void)registerWithRegistry:(NSObject*)registry; +@end + +NS_ASSUME_NONNULL_END +#endif /* GeneratedPluginRegistrant_h */ + + + +================================================ +File: ios/Runner/GeneratedPluginRegistrant.m +================================================ +// +// Generated file. Do not edit. +// + +// clang-format off + +#import "GeneratedPluginRegistrant.h" + +#if __has_include() +#import +#else +@import device_info_plus; +#endif + +#if __has_include() +#import +#else +@import emoji_picker_flutter; +#endif + +#if __has_include() +#import +#else +@import file_picker; +#endif + +#if __has_include() +#import +#else +@import firebase_core; +#endif + +#if __has_include() +#import +#else +@import firebase_database; +#endif + +#if __has_include() +#import +#else +@import firebase_messaging; +#endif + +#if __has_include() +#import +#else +@import flutter_sound; +#endif + +#if __has_include() +#import +#else +@import image_picker_ios; +#endif + +#if __has_include() +#import +#else +@import media_kit_libs_ios_video; +#endif + +#if __has_include() +#import +#else +@import media_kit_video; +#endif + +#if __has_include() +#import +#else +@import open_file_ios; +#endif + +#if __has_include() +#import +#else +@import package_info_plus; +#endif + +#if __has_include() +#import +#else +@import path_provider_foundation; +#endif + +#if __has_include() +#import +#else +@import pdf_render; +#endif + +#if __has_include() +#import +#else +@import permission_handler_apple; +#endif + +#if __has_include() +#import +#else +@import shared_preferences_foundation; +#endif + +#if __has_include() +#import +#else +@import sqflite_darwin; +#endif + +#if __has_include() +#import +#else +@import url_launcher_ios; +#endif + +#if __has_include() +#import +#else +@import video_thumbnail; +#endif + +#if __has_include() +#import +#else +@import volume_controller; +#endif + +#if __has_include() +#import +#else +@import wakelock_plus; +#endif + +@implementation GeneratedPluginRegistrant + ++ (void)registerWithRegistry:(NSObject*)registry { + [FPPDeviceInfoPlusPlugin registerWithRegistrar:[registry registrarForPlugin:@"FPPDeviceInfoPlusPlugin"]]; + [EmojiPickerFlutterPlugin registerWithRegistrar:[registry registrarForPlugin:@"EmojiPickerFlutterPlugin"]]; + [FilePickerPlugin registerWithRegistrar:[registry registrarForPlugin:@"FilePickerPlugin"]]; + [FLTFirebaseCorePlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseCorePlugin"]]; + [FLTFirebaseDatabasePlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseDatabasePlugin"]]; + [FLTFirebaseMessagingPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseMessagingPlugin"]]; + [FlutterSound registerWithRegistrar:[registry registrarForPlugin:@"FlutterSound"]]; + [FLTImagePickerPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTImagePickerPlugin"]]; + [MediaKitLibsIosVideoPlugin registerWithRegistrar:[registry registrarForPlugin:@"MediaKitLibsIosVideoPlugin"]]; + [MediaKitVideoPlugin registerWithRegistrar:[registry registrarForPlugin:@"MediaKitVideoPlugin"]]; + [OpenFilePlugin registerWithRegistrar:[registry registrarForPlugin:@"OpenFilePlugin"]]; + [FPPPackageInfoPlusPlugin registerWithRegistrar:[registry registrarForPlugin:@"FPPPackageInfoPlusPlugin"]]; + [PathProviderPlugin registerWithRegistrar:[registry registrarForPlugin:@"PathProviderPlugin"]]; + [PdfRenderPlugin registerWithRegistrar:[registry registrarForPlugin:@"PdfRenderPlugin"]]; + [PermissionHandlerPlugin registerWithRegistrar:[registry registrarForPlugin:@"PermissionHandlerPlugin"]]; + [SharedPreferencesPlugin registerWithRegistrar:[registry registrarForPlugin:@"SharedPreferencesPlugin"]]; + [SqflitePlugin registerWithRegistrar:[registry registrarForPlugin:@"SqflitePlugin"]]; + [URLLauncherPlugin registerWithRegistrar:[registry registrarForPlugin:@"URLLauncherPlugin"]]; + [VideoThumbnailPlugin registerWithRegistrar:[registry registrarForPlugin:@"VideoThumbnailPlugin"]]; + [VolumeControllerPlugin registerWithRegistrar:[registry registrarForPlugin:@"VolumeControllerPlugin"]]; + [WakelockPlusPlugin registerWithRegistrar:[registry registrarForPlugin:@"WakelockPlusPlugin"]]; +} + +@end + + + +================================================ +File: ios/Runner/Info.plist +================================================ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Flutter Application 1 + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + flutter_application_1 + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + + + + + +================================================ +File: ios/Runner/Runner-Bridging-Header.h +================================================ +#import "GeneratedPluginRegistrant.h" + + + +================================================ +File: ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +================================================ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} + + + +================================================ +File: ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +================================================ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. + + +================================================ +File: ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +================================================ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} + + + +================================================ +File: ios/Runner/Base.lproj/LaunchScreen.storyboard +================================================ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +================================================ +File: ios/Runner/Base.lproj/Main.storyboard +================================================ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +================================================ +File: ios/Runner.xcodeproj/project.pbxproj +================================================ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = HPC929F5X6; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = HPC929F5X6; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = HPC929F5X6; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} + + + +================================================ +File: ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +================================================ + + + + + + + + +================================================ +File: ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +================================================ + + + + + IDEDidComputeMac32BitWarning + + + + + + +================================================ +File: ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +================================================ + + + + + PreviewsEnabled + + + + + + +================================================ +File: ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +================================================ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +================================================ +File: ios/Runner.xcworkspace/contents.xcworkspacedata +================================================ + + + + + + + + +================================================ +File: ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +================================================ + + + + + IDEDidComputeMac32BitWarning + + + + + + +================================================ +File: ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +================================================ + + + + + PreviewsEnabled + + + + + + +================================================ +File: ios/RunnerTests/RunnerTests.swift +================================================ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} + + + +================================================ +File: lib/main.dart +================================================ +import 'package:flutter/material.dart'; + +Future main() async { + // run the app + runApp(const MaterialApp( + home: LMSampleChat(), + debugShowCheckedModeBanner: false, + )); +} + +// A blank scaffold with a button that opens +// the LM Social Chat when clicked +class LMSampleChat extends StatelessWidget { + const LMSampleChat({super.key}); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('LM Sample Chat'), + ), + body: Center( + child: ElevatedButton( + onPressed: () async {}, + child: const Text('Open Chat'), + ), + ), + ); + } +} + + + +================================================ +File: macos/Podfile +================================================ +platform :osx, '10.14' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_macos_podfile_setup + +target 'Runner' do + use_frameworks! + + flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_macos_build_settings(target) + end +end + + + +================================================ +File: macos/.gitignore +================================================ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ + + + +================================================ +File: macos/Flutter/Flutter-Debug.xcconfig +================================================ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" + + + +================================================ +File: macos/Flutter/Flutter-Release.xcconfig +================================================ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" + + + +================================================ +File: macos/Flutter/GeneratedPluginRegistrant.swift +================================================ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { +} + + + +================================================ +File: macos/Flutter/ephemeral/Flutter-Generated.xcconfig +================================================ +// This is a generated file; do not edit or check into version control. +FLUTTER_ROOT=/Users/anujkumar/Documents/flutter +FLUTTER_APPLICATION_PATH=/Users/anujkumar/Desktop/ai-mvp/output/45b97be5-f2d2-4589-9aa6-5c11b5983a5d/integration +COCOAPODS_PARALLEL_CODE_SIGN=true +FLUTTER_BUILD_DIR=build +FLUTTER_BUILD_NAME=1.0.0 +FLUTTER_BUILD_NUMBER=1 +DART_OBFUSCATION=false +TRACK_WIDGET_CREATION=true +TREE_SHAKE_ICONS=false +PACKAGE_CONFIG=.dart_tool/package_config.json + + + +================================================ +File: macos/Flutter/ephemeral/flutter_export_environment.sh +================================================ +#!/bin/sh +# This is a generated file; do not edit or check into version control. +export "FLUTTER_ROOT=/Users/anujkumar/Documents/flutter" +export "FLUTTER_APPLICATION_PATH=/Users/anujkumar/Desktop/ai-mvp/output/45b97be5-f2d2-4589-9aa6-5c11b5983a5d/integration" +export "COCOAPODS_PARALLEL_CODE_SIGN=true" +export "FLUTTER_BUILD_DIR=build" +export "FLUTTER_BUILD_NAME=1.0.0" +export "FLUTTER_BUILD_NUMBER=1" +export "DART_OBFUSCATION=false" +export "TRACK_WIDGET_CREATION=true" +export "TREE_SHAKE_ICONS=false" +export "PACKAGE_CONFIG=.dart_tool/package_config.json" + + + +================================================ +File: macos/Runner/AppDelegate.swift +================================================ +import Cocoa +import FlutterMacOS + +@main +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } + + override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { + return true + } +} + + + +================================================ +File: macos/Runner/DebugProfile.entitlements +================================================ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.network.server + + + + + + +================================================ +File: macos/Runner/Info.plist +================================================ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + + + + +================================================ +File: macos/Runner/MainFlutterWindow.swift +================================================ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} + + + +================================================ +File: macos/Runner/Release.entitlements +================================================ + + + + + com.apple.security.app-sandbox + + + + + + +================================================ +File: macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +================================================ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} + + + +================================================ +File: macos/Runner/Base.lproj/MainMenu.xib +================================================ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +================================================ +File: macos/Runner/Configs/AppInfo.xcconfig +================================================ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = flutter_application_1 + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1 + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2025 com.example. All rights reserved. + + + +================================================ +File: macos/Runner/Configs/Debug.xcconfig +================================================ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" + + + +================================================ +File: macos/Runner/Configs/Release.xcconfig +================================================ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" + + + +================================================ +File: macos/Runner/Configs/Warnings.xcconfig +================================================ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES + + + +================================================ +File: macos/Runner.xcodeproj/project.pbxproj +================================================ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC10EC2044A3C60003C045; + remoteInfo = Runner; + }; + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* flutter_application_1.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "flutter_application_1.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 331C80D2294CF70F00263BE5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C80D6294CF71000263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C80D7294CF71000263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 331C80D6294CF71000263BE5 /* RunnerTests */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* flutter_application_1.app */, + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C80D4294CF70F00263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C80D1294CF70F00263BE5 /* Sources */, + 331C80D2294CF70F00263BE5 /* Frameworks */, + 331C80D3294CF70F00263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C80DA294CF71000263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* flutter_application_1.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C80D4294CF70F00263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 33CC10EC2044A3C60003C045; + }; + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 331C80D4294CF70F00263BE5 /* RunnerTests */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C80D3294CF70F00263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C80D1294CF70F00263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC10EC2044A3C60003C045 /* Runner */; + targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; + }; + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 331C80DB294CF71000263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_application_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_application_1"; + }; + name = Debug; + }; + 331C80DC294CF71000263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_application_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_application_1"; + }; + name = Release; + }; + 331C80DD294CF71000263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication1.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_application_1.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_application_1"; + }; + name = Profile; + }; + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C80DB294CF71000263BE5 /* Debug */, + 331C80DC294CF71000263BE5 /* Release */, + 331C80DD294CF71000263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} + + + +================================================ +File: macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +================================================ + + + + + IDEDidComputeMac32BitWarning + + + + + + +================================================ +File: macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +================================================ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +================================================ +File: macos/Runner.xcworkspace/contents.xcworkspacedata +================================================ + + + + + + + + +================================================ +File: macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +================================================ + + + + + IDEDidComputeMac32BitWarning + + + + + + +================================================ +File: macos/RunnerTests/RunnerTests.swift +================================================ +import Cocoa +import FlutterMacOS +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} + + + +================================================ +File: test/widget_test.dart +================================================ +// // This is a basic Flutter widget test. +// // +// // To perform an interaction with a widget in your test, use the WidgetTester +// // utility in the flutter_test package. For example, you can send tap and scroll +// // gestures. You can also use WidgetTester to find child widgets in the widget +// // tree, read text, and verify that the values of widget properties are correct. + +// import 'package:flutter/material.dart'; +// import 'package:flutter_test/flutter_test.dart'; + +// import 'package:flutter_application_1/main.dart'; + +// void main() { +// testWidgets('Counter increments smoke test', (WidgetTester tester) async { +// // Build our app and trigger a frame. +// await tester.pumpWidget(const MyApp()); + +// // Verify that our counter starts at 0. +// expect(find.text('0'), findsOneWidget); +// expect(find.text('1'), findsNothing); + +// // Tap the '+' icon and trigger a frame. +// await tester.tap(find.byIcon(Icons.add)); +// await tester.pump(); + +// // Verify that our counter has incremented. +// expect(find.text('0'), findsNothing); +// expect(find.text('1'), findsOneWidget); +// }); +// } + + + +================================================ +File: web/index.html +================================================ + + + + + + + + + + + + + + + + + + + + flutter_application_1 + + + + + + + + + +================================================ +File: web/manifest.json +================================================ +{ + "name": "flutter_application_1", + "short_name": "flutter_application_1", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} + + + + +================================================ +File: .dart_tool/package_config.json +================================================ +{ + "configVersion": 2, + "packages": [ + { + "name": "_fe_analyzer_shared", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-82.0.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "_flutterfire_internals", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/_flutterfire_internals-1.3.55", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "amazon_cognito_identity_dart_2", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/amazon_cognito_identity_dart_2-3.8.1", + "packageUri": "lib/", + "languageVersion": "2.13" + }, + { + "name": "analyzer", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/analyzer-7.4.5", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "archive", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/archive-4.0.7", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "args", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/args-2.7.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "async", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/async-2.12.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "bloc", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/bloc-8.1.4", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "boolean_selector", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/boolean_selector-2.1.2", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "build", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/build-2.4.2", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "build_config", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/build_config-1.1.2", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "cached_network_image", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image-3.4.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "cached_network_image_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image_platform_interface-4.1.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "cached_network_image_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image_web-1.3.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "carousel_slider", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/carousel_slider-5.0.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "characters", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/characters-1.4.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "checked_yaml", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3", + "packageUri": "lib/", + "languageVersion": "2.19" + }, + { + "name": "clock", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/clock-1.1.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "collection", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/collection-1.19.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "convert", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/convert-3.1.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "cross_file", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cross_file-0.3.4+2", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "crypto", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/crypto-3.0.6", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "cupertino_icons", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "curl_logger_dio_interceptor", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/curl_logger_dio_interceptor-1.0.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "custom_pop_up_menu", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/custom_pop_up_menu-1.2.4", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "dart_style", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dart_style-3.1.0", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "date_format", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/date_format-2.0.9", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "dbus", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dbus-0.7.11", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "device_info_plus", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "device_info_plus_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus_platform_interface-7.0.2", + "packageUri": "lib/", + "languageVersion": "2.18" + }, + { + "name": "dio", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dio-5.8.0+1", + "packageUri": "lib/", + "languageVersion": "2.18" + }, + { + "name": "dio_web_adapter", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dio_web_adapter-2.1.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "emoji_picker_flutter", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "envied", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/envied-0.5.4+1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "equatable", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/equatable-2.0.7", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "extended_image", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_image-10.0.1", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "extended_image_library", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_image_library-5.0.0", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "extended_text_field", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_text_field-16.0.2", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "extended_text_library", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_text_library-12.0.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "fake_async", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/fake_async-1.3.2", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "ffi", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/ffi-2.1.4", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "file", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file-7.0.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "file_picker", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "file_selector_linux", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.3+2", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "file_selector_macos", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.4+3", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "file_selector_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_platform_interface-2.6.2", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "file_selector_windows", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+4", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "firebase_core", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core-3.13.1", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "firebase_core_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core_platform_interface-5.4.0", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "firebase_core_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core_web-2.23.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "firebase_database", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database-11.3.6", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "firebase_database_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database_platform_interface-0.2.6+6", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "firebase_database_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database_web-0.2.6+12", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "firebase_messaging", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging-15.2.6", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "firebase_messaging_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging_platform_interface-4.6.6", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "firebase_messaging_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging_web-3.10.6", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "fixnum", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/fixnum-1.1.1", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "flutter", + "rootUri": "file:///Users/anujkumar/Documents/flutter/packages/flutter", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "flutter_bloc", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_bloc-8.1.6", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "flutter_cache_manager", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_cache_manager-3.4.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "flutter_lints", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_lints-5.0.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "flutter_localizations", + "rootUri": "file:///Users/anujkumar/Documents/flutter/packages/flutter_localizations", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "flutter_plugin_android_lifecycle", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.28", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "flutter_sound", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound-9.28.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "flutter_sound_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound_platform_interface-9.28.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "flutter_sound_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound_web-9.28.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "flutter_staggered_grid_view", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_staggered_grid_view-0.7.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "flutter_svg", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_svg-2.1.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "flutter_test", + "rootUri": "file:///Users/anujkumar/Documents/flutter/packages/flutter_test", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "flutter_web_plugins", + "rootUri": "file:///Users/anujkumar/Documents/flutter/packages/flutter_web_plugins", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "gif", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/gif-2.3.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "giphy_get", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/giphy_get-3.6.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "glob", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/glob-2.1.3", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "hive", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/hive-2.2.3", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "hive_flutter", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "http", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http-1.4.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "http_client_helper", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http_client_helper-3.0.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "http_parser", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http_parser-4.1.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "image", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image-4.5.4", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "image_picker", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker-1.1.2", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "image_picker_android", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_android-0.8.12+23", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "image_picker_for_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_for_web-3.0.6", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "image_picker_ios", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12+2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "image_picker_linux", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.1+2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "image_picker_macos", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.1+2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "image_picker_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_platform_interface-2.10.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "image_picker_windows", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.1+1", + "packageUri": "lib/", + "languageVersion": "2.19" + }, + { + "name": "infinite_scroll_pagination", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/infinite_scroll_pagination-4.1.0", + "packageUri": "lib/", + "languageVersion": "2.14" + }, + { + "name": "intl", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/intl-0.19.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "js", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/js-0.6.7", + "packageUri": "lib/", + "languageVersion": "2.19" + }, + { + "name": "json_annotation", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/json_annotation-4.9.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "json_serializable", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/json_serializable-6.9.5", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "leak_tracker", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker-10.0.8", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "leak_tracker_flutter_testing", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker_flutter_testing-3.0.9", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "leak_tracker_testing", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker_testing-3.0.1", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "likeminds_chat_fl", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_fl-1.14.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "likeminds_chat_flutter_core", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_flutter_core-0.17.0", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "likeminds_chat_flutter_ui", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_flutter_ui-0.17.0", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "lints", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/lints-5.1.1", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "logger", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/logger-2.5.0", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "logging", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/logging-1.3.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "lottie", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/lottie-3.3.1", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "matcher", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/matcher-0.12.17", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "material_color_utilities", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/material_color_utilities-0.11.1", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "media_kit", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit-1.2.0", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "media_kit_libs_android_video", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_android_video-1.3.7", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "media_kit_libs_ios_video", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "media_kit_libs_linux", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "media_kit_libs_macos_video", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "media_kit_libs_video", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_video-1.0.6", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "media_kit_libs_windows_video", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_windows_video-1.0.11", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "media_kit_video", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "meta", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/meta-1.16.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "mime", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/mime-2.0.0", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "nested", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/nested-1.0.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "octo_image", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/octo_image-2.1.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "open_file", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file-3.5.10", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "open_file_android", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_android-1.0.6", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "open_file_ios", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_ios-1.0.3", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "open_file_linux", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_linux-0.0.5", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "open_file_mac", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_mac-1.0.3", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "open_file_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_platform_interface-1.0.3", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "open_file_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_web-0.0.4", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "open_file_windows", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_windows-0.0.3", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "overlay_support", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/overlay_support-2.1.0", + "packageUri": "lib/", + "languageVersion": "2.14" + }, + { + "name": "package_config", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_config-2.2.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "package_info_plus", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "package_info_plus_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus_platform_interface-3.2.0", + "packageUri": "lib/", + "languageVersion": "2.18" + }, + { + "name": "path", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path-1.9.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "path_parsing", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_parsing-1.1.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "path_provider", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider-2.1.5", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "path_provider_android", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_android-2.2.17", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "path_provider_foundation", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "path_provider_linux", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1", + "packageUri": "lib/", + "languageVersion": "2.19" + }, + { + "name": "path_provider_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "path_provider_windows", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "pdf_render", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pdf_render-1.4.12", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "permission_handler", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler-11.4.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "permission_handler_android", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_android-12.1.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "permission_handler_apple", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7", + "packageUri": "lib/", + "languageVersion": "2.18" + }, + { + "name": "permission_handler_html", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_html-0.1.3+5", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "permission_handler_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_platform_interface-4.3.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "permission_handler_windows", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_windows-0.2.1", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "petitparser", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/petitparser-6.1.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "photo_view", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/photo_view-0.15.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "platform", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/platform-3.1.6", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "plugin_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "posix", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/posix-6.0.2", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "provider", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/provider-6.1.5", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "pub_semver", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pub_semver-2.2.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "pubspec_parse", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pubspec_parse-1.5.0", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "rxdart", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/rxdart-0.28.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "safe_local_storage", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/safe_local_storage-2.0.1", + "packageUri": "lib/", + "languageVersion": "2.16" + }, + { + "name": "screen_brightness_android", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "screen_brightness_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/screen_brightness_platform_interface-2.1.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "shared_preferences", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences-2.5.3", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "shared_preferences_android", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.10", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "shared_preferences_foundation", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.4", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "shared_preferences_linux", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "shared_preferences_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_platform_interface-2.4.1", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "shared_preferences_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "shared_preferences_windows", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "shimmer", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shimmer-3.0.0", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "sky_engine", + "rootUri": "file:///Users/anujkumar/Documents/flutter/bin/cache/pkg/sky_engine", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "sliver_tools", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sliver_tools-0.2.12", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "source_gen", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_gen-2.0.0", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "source_helper", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_helper-1.3.5", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "source_span", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_span-1.10.1", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "sprintf", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sprintf-7.0.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "sqflite", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite-2.4.2", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "sqflite_android", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_android-2.4.1", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "sqflite_common", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_common-2.5.5", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "sqflite_darwin", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "sqflite_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_platform_interface-2.4.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "stack_trace", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/stack_trace-1.12.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "stream_channel", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/stream_channel-2.1.4", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "string_scanner", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/string_scanner-1.4.1", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "super_sliver_list", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/super_sliver_list-0.4.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "swipe_to_action", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/swipe_to_action-0.2.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "synchronized", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/synchronized-3.3.1", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "term_glyph", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/term_glyph-1.2.2", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "test_api", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/test_api-0.7.4", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "typed_data", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/typed_data-1.4.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "universal_platform", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/universal_platform-1.1.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "uri_parser", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/uri_parser-3.0.0", + "packageUri": "lib/", + "languageVersion": "2.16" + }, + { + "name": "url_launcher", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher-6.3.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "url_launcher_android", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.16", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "url_launcher_ios", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.3", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "url_launcher_linux", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "url_launcher_macos", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.2", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "url_launcher_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_platform_interface-2.3.2", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "url_launcher_web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "url_launcher_windows", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "uuid", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/uuid-4.5.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "vector_graphics", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics-1.1.18", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "vector_graphics_codec", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics_codec-1.1.13", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "vector_graphics_compiler", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics_compiler-1.1.17", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "vector_math", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_math-2.1.4", + "packageUri": "lib/", + "languageVersion": "2.14" + }, + { + "name": "video_thumbnail", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/video_thumbnail-0.5.6", + "packageUri": "lib/", + "languageVersion": "2.16" + }, + { + "name": "vm_service", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vm_service-14.3.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "volume_controller", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "wakelock_plus", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "wakelock_plus_platform_interface", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus_platform_interface-1.2.3", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "watcher", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/watcher-1.1.1", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "web", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/web-1.1.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "win32", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/win32-5.13.0", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "win32_registry", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/win32_registry-1.1.5", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "xdg_directories", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/xdg_directories-1.1.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "xml", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/xml-6.5.0", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "yaml", + "rootUri": "file:///Users/anujkumar/.pub-cache/hosted/pub.dev/yaml-3.1.3", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "flutter_application_1", + "rootUri": "../", + "packageUri": "lib/", + "languageVersion": "3.6" + } + ], + "generated": "2025-05-29T08:46:42.012115Z", + "generator": "pub", + "generatorVersion": "3.7.2", + "flutterRoot": "file:///Users/anujkumar/Documents/flutter", + "flutterVersion": "3.29.3", + "pubCache": "file:///Users/anujkumar/.pub-cache" +} + + + +================================================ +File: .dart_tool/package_config_subset +================================================ +_fe_analyzer_shared +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-82.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-82.0.0/lib/ +_flutterfire_internals +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/_flutterfire_internals-1.3.55/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/_flutterfire_internals-1.3.55/lib/ +amazon_cognito_identity_dart_2 +2.13 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/amazon_cognito_identity_dart_2-3.8.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/amazon_cognito_identity_dart_2-3.8.1/lib/ +analyzer +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/analyzer-7.4.5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/analyzer-7.4.5/lib/ +archive +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/archive-4.0.7/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/archive-4.0.7/lib/ +args +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/args-2.7.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/args-2.7.0/lib/ +async +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/async-2.12.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/async-2.12.0/lib/ +bloc +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/bloc-8.1.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/bloc-8.1.4/lib/ +boolean_selector +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/boolean_selector-2.1.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/boolean_selector-2.1.2/lib/ +build +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/build-2.4.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/build-2.4.2/lib/ +build_config +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/build_config-1.1.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/build_config-1.1.2/lib/ +cached_network_image +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image-3.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image-3.4.1/lib/ +cached_network_image_platform_interface +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image_platform_interface-4.1.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image_platform_interface-4.1.1/lib/ +cached_network_image_web +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image_web-1.3.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cached_network_image_web-1.3.1/lib/ +carousel_slider +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/carousel_slider-5.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/carousel_slider-5.0.0/lib/ +characters +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/characters-1.4.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/characters-1.4.0/lib/ +checked_yaml +2.19 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ +clock +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/clock-1.1.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/clock-1.1.2/lib/ +collection +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/collection-1.19.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/collection-1.19.1/lib/ +convert +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/convert-3.1.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/convert-3.1.2/lib/ +cross_file +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cross_file-0.3.4+2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cross_file-0.3.4+2/lib/ +crypto +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/crypto-3.0.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/crypto-3.0.6/lib/ +cupertino_icons +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/lib/ +curl_logger_dio_interceptor +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/curl_logger_dio_interceptor-1.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/curl_logger_dio_interceptor-1.0.0/lib/ +custom_pop_up_menu +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/custom_pop_up_menu-1.2.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/custom_pop_up_menu-1.2.4/lib/ +dart_style +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dart_style-3.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dart_style-3.1.0/lib/ +date_format +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/date_format-2.0.9/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/date_format-2.0.9/lib/ +dbus +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dbus-0.7.11/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dbus-0.7.11/lib/ +device_info_plus +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus-10.1.2/lib/ +device_info_plus_platform_interface +2.18 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus_platform_interface-7.0.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/device_info_plus_platform_interface-7.0.2/lib/ +dio +2.18 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dio-5.8.0+1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dio-5.8.0+1/lib/ +dio_web_adapter +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dio_web_adapter-2.1.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/dio_web_adapter-2.1.1/lib/ +emoji_picker_flutter +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/emoji_picker_flutter-3.1.0/lib/ +envied +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/envied-0.5.4+1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/envied-0.5.4+1/lib/ +equatable +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/equatable-2.0.7/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/equatable-2.0.7/lib/ +extended_image +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_image-10.0.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_image-10.0.1/lib/ +extended_image_library +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_image_library-5.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_image_library-5.0.0/lib/ +extended_text_field +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_text_field-16.0.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_text_field-16.0.2/lib/ +extended_text_library +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_text_library-12.0.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/extended_text_library-12.0.1/lib/ +fake_async +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/fake_async-1.3.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/fake_async-1.3.2/lib/ +ffi +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/ffi-2.1.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/ffi-2.1.4/lib/ +file +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file-7.0.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file-7.0.1/lib/ +file_picker +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_picker-8.3.7/lib/ +file_selector_linux +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.3+2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.3+2/lib/ +file_selector_macos +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.4+3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.4+3/lib/ +file_selector_platform_interface +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_platform_interface-2.6.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_platform_interface-2.6.2/lib/ +file_selector_windows +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+4/lib/ +firebase_core +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core-3.13.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core-3.13.1/lib/ +firebase_core_platform_interface +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core_platform_interface-5.4.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core_platform_interface-5.4.0/lib/ +firebase_core_web +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core_web-2.23.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_core_web-2.23.0/lib/ +firebase_database +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database-11.3.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database-11.3.6/lib/ +firebase_database_platform_interface +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database_platform_interface-0.2.6+6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database_platform_interface-0.2.6+6/lib/ +firebase_database_web +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database_web-0.2.6+12/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_database_web-0.2.6+12/lib/ +firebase_messaging +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging-15.2.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging-15.2.6/lib/ +firebase_messaging_platform_interface +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging_platform_interface-4.6.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging_platform_interface-4.6.6/lib/ +firebase_messaging_web +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging_web-3.10.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/firebase_messaging_web-3.10.6/lib/ +fixnum +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/fixnum-1.1.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/fixnum-1.1.1/lib/ +flutter_bloc +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_bloc-8.1.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_bloc-8.1.6/lib/ +flutter_cache_manager +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_cache_manager-3.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_cache_manager-3.4.1/lib/ +flutter_lints +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_lints-5.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_lints-5.0.0/lib/ +flutter_plugin_android_lifecycle +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.28/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.28/lib/ +flutter_sound +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound-9.28.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound-9.28.0/lib/ +flutter_sound_platform_interface +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound_platform_interface-9.28.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound_platform_interface-9.28.0/lib/ +flutter_sound_web +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound_web-9.28.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_sound_web-9.28.0/lib/ +flutter_staggered_grid_view +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_staggered_grid_view-0.7.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_staggered_grid_view-0.7.0/lib/ +flutter_svg +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_svg-2.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/flutter_svg-2.1.0/lib/ +gif +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/gif-2.3.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/gif-2.3.0/lib/ +giphy_get +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/giphy_get-3.6.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/giphy_get-3.6.1/lib/ +glob +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/glob-2.1.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/glob-2.1.3/lib/ +hive +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/hive-2.2.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/hive-2.2.3/lib/ +hive_flutter +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ +http +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http-1.4.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http-1.4.0/lib/ +http_client_helper +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http_client_helper-3.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http_client_helper-3.0.0/lib/ +http_parser +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http_parser-4.1.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/http_parser-4.1.2/lib/ +image +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image-4.5.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image-4.5.4/lib/ +image_picker +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker-1.1.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker-1.1.2/lib/ +image_picker_android +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_android-0.8.12+23/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_android-0.8.12+23/lib/ +image_picker_for_web +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_for_web-3.0.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_for_web-3.0.6/lib/ +image_picker_ios +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12+2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12+2/lib/ +image_picker_linux +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.1+2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.1+2/lib/ +image_picker_macos +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.1+2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.1+2/lib/ +image_picker_platform_interface +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_platform_interface-2.10.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_platform_interface-2.10.1/lib/ +image_picker_windows +2.19 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.1+1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.1+1/lib/ +infinite_scroll_pagination +2.14 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/infinite_scroll_pagination-4.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/infinite_scroll_pagination-4.1.0/lib/ +intl +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/intl-0.19.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/intl-0.19.0/lib/ +js +2.19 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/js-0.6.7/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/js-0.6.7/lib/ +json_annotation +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/json_annotation-4.9.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/json_annotation-4.9.0/lib/ +json_serializable +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/json_serializable-6.9.5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/json_serializable-6.9.5/lib/ +leak_tracker +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker-10.0.8/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker-10.0.8/lib/ +leak_tracker_flutter_testing +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker_flutter_testing-3.0.9/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker_flutter_testing-3.0.9/lib/ +leak_tracker_testing +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker_testing-3.0.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/leak_tracker_testing-3.0.1/lib/ +likeminds_chat_fl +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_fl-1.14.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_fl-1.14.0/lib/ +likeminds_chat_flutter_core +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_flutter_core-0.17.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_flutter_core-0.17.0/lib/ +likeminds_chat_flutter_ui +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_flutter_ui-0.17.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/likeminds_chat_flutter_ui-0.17.0/lib/ +lints +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/lints-5.1.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/lints-5.1.1/lib/ +logger +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/logger-2.5.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/logger-2.5.0/lib/ +logging +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/logging-1.3.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/logging-1.3.0/lib/ +lottie +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/lottie-3.3.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/lottie-3.3.1/lib/ +matcher +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/matcher-0.12.17/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/matcher-0.12.17/lib/ +material_color_utilities +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/material_color_utilities-0.11.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/material_color_utilities-0.11.1/lib/ +media_kit +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit-1.2.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit-1.2.0/lib/ +media_kit_libs_android_video +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_android_video-1.3.7/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_android_video-1.3.7/lib/ +media_kit_libs_ios_video +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/lib/ +media_kit_libs_linux +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/lib/ +media_kit_libs_macos_video +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/lib/ +media_kit_libs_video +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_video-1.0.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_video-1.0.6/lib/ +media_kit_libs_windows_video +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_windows_video-1.0.11/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_libs_windows_video-1.0.11/lib/ +media_kit_video +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/media_kit_video-1.3.0/lib/ +meta +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/meta-1.16.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/meta-1.16.0/lib/ +mime +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/mime-2.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/mime-2.0.0/lib/ +nested +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/nested-1.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/nested-1.0.0/lib/ +octo_image +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/octo_image-2.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/octo_image-2.1.0/lib/ +open_file +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file-3.5.10/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file-3.5.10/lib/ +open_file_android +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_android-1.0.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_android-1.0.6/lib/ +open_file_ios +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_ios-1.0.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_ios-1.0.3/lib/ +open_file_linux +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_linux-0.0.5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_linux-0.0.5/lib/ +open_file_mac +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_mac-1.0.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_mac-1.0.3/lib/ +open_file_platform_interface +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_platform_interface-1.0.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_platform_interface-1.0.3/lib/ +open_file_web +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_web-0.0.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_web-0.0.4/lib/ +open_file_windows +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_windows-0.0.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/open_file_windows-0.0.3/lib/ +overlay_support +2.14 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/overlay_support-2.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/overlay_support-2.1.0/lib/ +package_config +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_config-2.2.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_config-2.2.0/lib/ +package_info_plus +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/lib/ +package_info_plus_platform_interface +2.18 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus_platform_interface-3.2.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/package_info_plus_platform_interface-3.2.0/lib/ +path +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path-1.9.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path-1.9.1/lib/ +path_parsing +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_parsing-1.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_parsing-1.1.0/lib/ +path_provider +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider-2.1.5/lib/ +path_provider_android +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_android-2.2.17/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_android-2.2.17/lib/ +path_provider_foundation +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/lib/ +path_provider_linux +2.19 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/lib/ +path_provider_platform_interface +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/lib/ +path_provider_windows +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/lib/ +pdf_render +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pdf_render-1.4.12/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pdf_render-1.4.12/lib/ +permission_handler +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler-11.4.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler-11.4.0/lib/ +permission_handler_android +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_android-12.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_android-12.1.0/lib/ +permission_handler_apple +2.18 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/lib/ +permission_handler_html +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_html-0.1.3+5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_html-0.1.3+5/lib/ +permission_handler_platform_interface +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_platform_interface-4.3.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_platform_interface-4.3.0/lib/ +permission_handler_windows +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_windows-0.2.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/permission_handler_windows-0.2.1/lib/ +petitparser +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/petitparser-6.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/petitparser-6.1.0/lib/ +photo_view +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/photo_view-0.15.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/photo_view-0.15.0/lib/ +platform +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/platform-3.1.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/platform-3.1.6/lib/ +plugin_platform_interface +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8/lib/ +posix +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/posix-6.0.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/posix-6.0.2/lib/ +provider +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/provider-6.1.5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/provider-6.1.5/lib/ +pub_semver +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pub_semver-2.2.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pub_semver-2.2.0/lib/ +pubspec_parse +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pubspec_parse-1.5.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/pubspec_parse-1.5.0/lib/ +rxdart +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/rxdart-0.28.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/rxdart-0.28.0/lib/ +safe_local_storage +2.16 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/safe_local_storage-2.0.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/safe_local_storage-2.0.1/lib/ +screen_brightness_android +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.1/lib/ +screen_brightness_platform_interface +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/screen_brightness_platform_interface-2.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/screen_brightness_platform_interface-2.1.0/lib/ +shared_preferences +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences-2.5.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences-2.5.3/lib/ +shared_preferences_android +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.10/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.10/lib/ +shared_preferences_foundation +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.4/lib/ +shared_preferences_linux +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/lib/ +shared_preferences_platform_interface +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_platform_interface-2.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_platform_interface-2.4.1/lib/ +shared_preferences_web +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/lib/ +shared_preferences_windows +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/lib/ +shimmer +2.17 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shimmer-3.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/shimmer-3.0.0/lib/ +sliver_tools +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sliver_tools-0.2.12/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sliver_tools-0.2.12/lib/ +source_gen +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_gen-2.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_gen-2.0.0/lib/ +source_helper +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_helper-1.3.5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_helper-1.3.5/lib/ +source_span +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_span-1.10.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/source_span-1.10.1/lib/ +sprintf +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sprintf-7.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sprintf-7.0.0/lib/ +sqflite +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite-2.4.2/lib/ +sqflite_android +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_android-2.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_android-2.4.1/lib/ +sqflite_common +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_common-2.5.5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_common-2.5.5/lib/ +sqflite_darwin +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/lib/ +sqflite_platform_interface +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_platform_interface-2.4.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/sqflite_platform_interface-2.4.0/lib/ +stack_trace +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/stack_trace-1.12.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/stack_trace-1.12.1/lib/ +stream_channel +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/stream_channel-2.1.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/stream_channel-2.1.4/lib/ +string_scanner +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/string_scanner-1.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/string_scanner-1.4.1/lib/ +super_sliver_list +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/super_sliver_list-0.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/super_sliver_list-0.4.1/lib/ +swipe_to_action +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/swipe_to_action-0.2.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/swipe_to_action-0.2.0/lib/ +synchronized +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/synchronized-3.3.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/synchronized-3.3.1/lib/ +term_glyph +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/term_glyph-1.2.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/term_glyph-1.2.2/lib/ +test_api +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/test_api-0.7.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/test_api-0.7.4/lib/ +typed_data +3.5 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/typed_data-1.4.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/typed_data-1.4.0/lib/ +universal_platform +2.12 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/universal_platform-1.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/universal_platform-1.1.0/lib/ +uri_parser +2.16 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/uri_parser-3.0.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/uri_parser-3.0.0/lib/ +url_launcher +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher-6.3.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher-6.3.1/lib/ +url_launcher_android +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.16/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.16/lib/ +url_launcher_ios +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.3/lib/ +url_launcher_linux +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1/lib/ +url_launcher_macos +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.2/lib/ +url_launcher_platform_interface +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_platform_interface-2.3.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_platform_interface-2.3.2/lib/ +url_launcher_web +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/lib/ +url_launcher_windows +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4/lib/ +uuid +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/uuid-4.5.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/uuid-4.5.1/lib/ +vector_graphics +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics-1.1.18/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics-1.1.18/lib/ +vector_graphics_codec +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics_codec-1.1.13/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics_codec-1.1.13/lib/ +vector_graphics_compiler +3.6 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics_compiler-1.1.17/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_graphics_compiler-1.1.17/lib/ +vector_math +2.14 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_math-2.1.4/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/ +video_thumbnail +2.16 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/video_thumbnail-0.5.6/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/video_thumbnail-0.5.6/lib/ +vm_service +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vm_service-14.3.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/vm_service-14.3.1/lib/ +volume_controller +3.0 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/volume_controller-3.4.0/lib/ +wakelock_plus +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.2/lib/ +wakelock_plus_platform_interface +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus_platform_interface-1.2.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/wakelock_plus_platform_interface-1.2.3/lib/ +watcher +3.1 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/watcher-1.1.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/watcher-1.1.1/lib/ +web +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/web-1.1.1/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/web-1.1.1/lib/ +win32 +3.7 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/win32-5.13.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/win32-5.13.0/lib/ +win32_registry +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/win32_registry-1.1.5/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/win32_registry-1.1.5/lib/ +xdg_directories +3.3 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/xdg_directories-1.1.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/xdg_directories-1.1.0/lib/ +xml +3.2 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/xml-6.5.0/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/xml-6.5.0/lib/ +yaml +3.4 +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/yaml-3.1.3/ +file:///Users/anujkumar/.pub-cache/hosted/pub.dev/yaml-3.1.3/lib/ +flutter_application_1 +3.6 +file:///Users/anujkumar/Desktop/ai-mvp/output/45b97be5-f2d2-4589-9aa6-5c11b5983a5d/integration/ +file:///Users/anujkumar/Desktop/ai-mvp/output/45b97be5-f2d2-4589-9aa6-5c11b5983a5d/integration/lib/ +sky_engine +3.7 +file:///Users/anujkumar/Documents/flutter/bin/cache/pkg/sky_engine/ +file:///Users/anujkumar/Documents/flutter/bin/cache/pkg/sky_engine/lib/ +flutter +3.7 +file:///Users/anujkumar/Documents/flutter/packages/flutter/ +file:///Users/anujkumar/Documents/flutter/packages/flutter/lib/ +flutter_localizations +3.7 +file:///Users/anujkumar/Documents/flutter/packages/flutter_localizations/ +file:///Users/anujkumar/Documents/flutter/packages/flutter_localizations/lib/ +flutter_test +3.7 +file:///Users/anujkumar/Documents/flutter/packages/flutter_test/ +file:///Users/anujkumar/Documents/flutter/packages/flutter_test/lib/ +flutter_web_plugins +3.7 +file:///Users/anujkumar/Documents/flutter/packages/flutter_web_plugins/ +file:///Users/anujkumar/Documents/flutter/packages/flutter_web_plugins/lib/ +2 + + + +================================================ +File: .dart_tool/version +================================================ +3.29.3 + + +================================================ +File: .dart_tool/dartpad/web_plugin_registrant.dart +================================================ +// Flutter web plugin registrant file. +// +// Generated file. Do not edit. +// + +// @dart = 2.13 +// ignore_for_file: type=lint + +import 'package:device_info_plus/src/device_info_plus_web.dart'; +import 'package:emoji_picker_flutter/emoji_picker_flutter_web.dart'; +import 'package:file_picker/_internal/file_picker_web.dart'; +import 'package:firebase_core_web/firebase_core_web.dart'; +import 'package:firebase_database_web/firebase_database_web.dart'; +import 'package:firebase_messaging_web/firebase_messaging_web.dart'; +import 'package:flutter_sound_web/flutter_sound_web.dart'; +import 'package:image_picker_for_web/image_picker_for_web.dart'; +import 'package:open_file_web/open_file_web.dart'; +import 'package:package_info_plus/src/package_info_plus_web.dart'; +import 'package:pdf_render/src/web/pdf_render_web_plugin.dart'; +import 'package:permission_handler_html/permission_handler_html.dart'; +import 'package:shared_preferences_web/shared_preferences_web.dart'; +import 'package:url_launcher_web/url_launcher_web.dart'; +import 'package:wakelock_plus/src/wakelock_plus_web_plugin.dart'; +import 'package:flutter_web_plugins/flutter_web_plugins.dart'; + +void registerPlugins([final Registrar? pluginRegistrar]) { + final Registrar registrar = pluginRegistrar ?? webPluginRegistrar; + DeviceInfoPlusWebPlugin.registerWith(registrar); + EmojiPickerFlutterPluginWeb.registerWith(registrar); + FilePickerWeb.registerWith(registrar); + FirebaseCoreWeb.registerWith(registrar); + FirebaseDatabaseWeb.registerWith(registrar); + FirebaseMessagingWeb.registerWith(registrar); + FlutterSoundPlugin.registerWith(registrar); + ImagePickerPlugin.registerWith(registrar); + OpenFilePlugin.registerWith(registrar); + PackageInfoPlusWebPlugin.registerWith(registrar); + PdfRenderWebPlugin.registerWith(registrar); + WebPermissionHandler.registerWith(registrar); + SharedPreferencesPlugin.registerWith(registrar); + UrlLauncherPlugin.registerWith(registrar); + WakelockPlusWebPlugin.registerWith(registrar); + registrar.registerMessageHandler(); +} + + diff --git a/lib/main.dart b/lib/main.dart index c48265c..8a286f6 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,6 +1,12 @@ import 'package:flutter/material.dart'; +import 'package:likeminds_chat_flutter_core/likeminds_chat_flutter_core.dart'; Future main() async { + WidgetsFlutterBinding.ensureInitialized(); + // Call setup function before the runApp() function + await LMChatCore.instance.initialize( + theme: LMChatThemeData.dark(), // Set the theme to dark + ); // run the app runApp(const MaterialApp( home: LMSampleChat(), @@ -21,10 +27,29 @@ class LMSampleChat extends StatelessWidget { ), body: Center( child: ElevatedButton( - onPressed: () async {}, + onPressed: () async { + // initiate user session with apiKey, uuid and userName + // this is required to show the chat. MAKE SURE TO ALWAYS USE THESE CREDENTIAL FOR OUTPUT. + LMResponse response = + await LMChatCore.instance.showChatWithApiKey( + apiKey: "83c8f0ed-a9e2-4634-9a2e-d9c7a1e39ff8", + uuid: "abc", + userName: "abc", + ); + if (response.success) { + // create route with LMChatSocialScreen + MaterialPageRoute route = MaterialPageRoute( + builder: (context) => const LMChatHomeScreen(), + ); + // navigate to LMChatSocialScreen + Navigator.pushReplacement(context, route); + } else { + debugPrint("Error opening chat: ${response.errorMessage}"); + } + }, child: const Text('Open Chat'), ), ), ); } -} +} \ No newline at end of file diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift index cccf817..1b70221 100644 --- a/macos/Flutter/GeneratedPluginRegistrant.swift +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -5,6 +5,42 @@ import FlutterMacOS import Foundation +import device_info_plus +import emoji_picker_flutter +import file_picker +import file_selector_macos +import firebase_core +import firebase_database +import firebase_messaging +import media_kit_libs_macos_video +import media_kit_video +import open_file_mac +import package_info_plus +import path_provider_foundation +import pdf_render +import shared_preferences_foundation +import sqflite_darwin +import url_launcher_macos +import volume_controller +import wakelock_plus func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { + DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin")) + EmojiPickerFlutterPlugin.register(with: registry.registrar(forPlugin: "EmojiPickerFlutterPlugin")) + FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin")) + FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin")) + FLTFirebaseCorePlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseCorePlugin")) + FLTFirebaseDatabasePlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseDatabasePlugin")) + FLTFirebaseMessagingPlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseMessagingPlugin")) + MediaKitLibsMacosVideoPlugin.register(with: registry.registrar(forPlugin: "MediaKitLibsMacosVideoPlugin")) + MediaKitVideoPlugin.register(with: registry.registrar(forPlugin: "MediaKitVideoPlugin")) + OpenFilePlugin.register(with: registry.registrar(forPlugin: "OpenFilePlugin")) + FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin")) + PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) + SwiftPdfRenderPlugin.register(with: registry.registrar(forPlugin: "SwiftPdfRenderPlugin")) + SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) + SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) + UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) + VolumeControllerPlugin.register(with: registry.registrar(forPlugin: "VolumeControllerPlugin")) + WakelockPlusMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockPlusMacosPlugin")) } diff --git a/pubspec.lock b/pubspec.lock index dc7b9d1..bb44733 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1,46 +1,182 @@ # Generated by pub # See https://dart.dev/tools/pub/glossary#lockfile packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: e55636ed79578b9abca5fecf9437947798f5ef7456308b5cb85720b793eac92f + url: "https://pub.dev" + source: hosted + version: "82.0.0" + _flutterfire_internals: + dependency: transitive + description: + name: _flutterfire_internals + sha256: "214e6f07e2a44f45972e0365c7b537eaeaddb4598db0778dd4ac64b4acd3f5b1" + url: "https://pub.dev" + source: hosted + version: "1.3.55" + amazon_cognito_identity_dart_2: + dependency: transitive + description: + name: amazon_cognito_identity_dart_2 + sha256: edd35eaf31e485ea0e44727757cdffcebdb0d1a800e6ea854e3ee0dff028ca2b + url: "https://pub.dev" + source: hosted + version: "3.8.1" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: "904ae5bb474d32c38fb9482e2d925d5454cda04ddd0e55d2e6826bc72f6ba8c0" + url: "https://pub.dev" + source: hosted + version: "7.4.5" + archive: + dependency: transitive + description: + name: archive + sha256: "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd" + url: "https://pub.dev" + source: hosted + version: "4.0.7" + args: + dependency: transitive + description: + name: args + sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04 + url: "https://pub.dev" + source: hosted + version: "2.7.0" async: dependency: transitive description: name: async - sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63 url: "https://pub.dev" source: hosted - version: "2.11.0" + version: "2.12.0" + bloc: + dependency: transitive + description: + name: bloc + sha256: "106842ad6569f0b60297619e9e0b1885c2fb9bf84812935490e6c5275777804e" + url: "https://pub.dev" + source: hosted + version: "8.1.4" boolean_selector: dependency: transitive description: name: boolean_selector - sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.1.2" + build: + dependency: transitive + description: + name: build + sha256: cef23f1eda9b57566c81e2133d196f8e3df48f244b317368d65c5943d91148f0 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + build_config: + dependency: transitive + description: + name: build_config + sha256: "4ae2de3e1e67ea270081eaee972e1bd8f027d459f249e0f1186730784c2e7e33" + url: "https://pub.dev" + source: hosted + version: "1.1.2" + cached_network_image: + dependency: transitive + description: + name: cached_network_image + sha256: "7c1183e361e5c8b0a0f21a28401eecdbde252441106a9816400dd4c2b2424916" + url: "https://pub.dev" + source: hosted + version: "3.4.1" + cached_network_image_platform_interface: + dependency: transitive + description: + name: cached_network_image_platform_interface + sha256: "35814b016e37fbdc91f7ae18c8caf49ba5c88501813f73ce8a07027a395e2829" + url: "https://pub.dev" + source: hosted + version: "4.1.1" + cached_network_image_web: + dependency: transitive + description: + name: cached_network_image_web + sha256: "980842f4e8e2535b8dbd3d5ca0b1f0ba66bf61d14cc3a17a9b4788a3685ba062" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + carousel_slider: + dependency: transitive + description: + name: carousel_slider + sha256: "7b006ec356205054af5beaef62e2221160ea36b90fb70a35e4deacd49d0349ae" + url: "https://pub.dev" + source: hosted + version: "5.0.0" characters: dependency: transitive description: name: characters - sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803 url: "https://pub.dev" source: hosted - version: "1.3.0" + version: "1.4.0" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" + source: hosted + version: "2.0.3" clock: dependency: transitive description: name: clock - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.1.2" collection: dependency: transitive description: name: collection - sha256: a1ace0a119f20aabc852d165077c036cd864315bd99b7eaa10a60100341941bf + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" + url: "https://pub.dev" + source: hosted + version: "1.19.1" + convert: + dependency: transitive + description: + name: convert + sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 + url: "https://pub.dev" + source: hosted + version: "3.1.2" + cross_file: + dependency: transitive + description: + name: cross_file + sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670" + url: "https://pub.dev" + source: hosted + version: "0.3.4+2" + crypto: + dependency: transitive + description: + name: crypto + sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855" url: "https://pub.dev" source: hosted - version: "1.19.0" + version: "3.0.6" cupertino_icons: dependency: "direct main" description: @@ -49,6 +185,118 @@ packages: url: "https://pub.dev" source: hosted version: "1.0.8" + curl_logger_dio_interceptor: + dependency: transitive + description: + name: curl_logger_dio_interceptor + sha256: f20d89187a321d2150e1412bca30ebf4d89130bafc648ce21bd4f1ef4062b214 + url: "https://pub.dev" + source: hosted + version: "1.0.0" + custom_pop_up_menu: + dependency: transitive + description: + name: custom_pop_up_menu + sha256: eeac484c6ddffffb25e803dc2a5cc9381e700a29f074e9fcc76fe36b62fde850 + url: "https://pub.dev" + source: hosted + version: "1.2.4" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: "5b236382b47ee411741447c1f1e111459c941ea1b3f2b540dde54c210a3662af" + url: "https://pub.dev" + source: hosted + version: "3.1.0" + date_format: + dependency: transitive + description: + name: date_format + sha256: a48254e60bdb7f1d5a15cac7f86e37491808056c0a99dbdc850841def4754ddc + url: "https://pub.dev" + source: hosted + version: "2.0.9" + dbus: + dependency: transitive + description: + name: dbus + sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c" + url: "https://pub.dev" + source: hosted + version: "0.7.11" + device_info_plus: + dependency: transitive + description: + name: device_info_plus + sha256: a7fd703482b391a87d60b6061d04dfdeab07826b96f9abd8f5ed98068acc0074 + url: "https://pub.dev" + source: hosted + version: "10.1.2" + device_info_plus_platform_interface: + dependency: transitive + description: + name: device_info_plus_platform_interface + sha256: "0b04e02b30791224b31969eb1b50d723498f402971bff3630bca2ba839bd1ed2" + url: "https://pub.dev" + source: hosted + version: "7.0.2" + dio: + dependency: transitive + description: + name: dio + sha256: "253a18bbd4851fecba42f7343a1df3a9a4c1d31a2c1b37e221086b4fa8c8dbc9" + url: "https://pub.dev" + source: hosted + version: "5.8.0+1" + dio_web_adapter: + dependency: transitive + description: + name: dio_web_adapter + sha256: "7586e476d70caecaf1686d21eee7247ea43ef5c345eab9e0cc3583ff13378d78" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + emoji_picker_flutter: + dependency: transitive + description: + name: emoji_picker_flutter + sha256: "08567e6f914d36c32091a96cf2f51d2558c47aa2bd47a590dc4f50e42e0965f6" + url: "https://pub.dev" + source: hosted + version: "3.1.0" + envied: + dependency: transitive + description: + name: envied + sha256: bbff9c76120e4dc5e2e36a46690cf0a26feb65e7765633f4e8d916bcd173a450 + url: "https://pub.dev" + source: hosted + version: "0.5.4+1" + equatable: + dependency: transitive + description: + name: equatable + sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7" + url: "https://pub.dev" + source: hosted + version: "2.0.7" + extended_image: + dependency: transitive + description: + name: extended_image + sha256: f6cbb1d798f51262ed1a3d93b4f1f2aa0d76128df39af18ecb77fa740f88b2e0 + url: "https://pub.dev" + source: hosted + version: "10.0.1" + extended_image_library: + dependency: transitive + description: + name: extended_image_library + sha256: ae468c31c375064964de11cbb31310a58c4462df6e3bae1a0bc0066f586795d5 + url: "https://pub.dev" + source: hosted + version: "5.0.0" extended_text_field: dependency: "direct overridden" description: @@ -69,161 +317,1355 @@ packages: dependency: transitive description: name: fake_async - sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + sha256: "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc" url: "https://pub.dev" source: hosted - version: "1.3.1" - flutter: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_lints: - dependency: "direct dev" + version: "1.3.2" + ffi: + dependency: transitive description: - name: flutter_lints - sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1" + name: ffi + sha256: "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418" url: "https://pub.dev" source: hosted - version: "5.0.0" - flutter_test: - dependency: "direct dev" - description: flutter - source: sdk - version: "0.0.0" - leak_tracker: + version: "2.1.4" + file: dependency: transitive description: - name: leak_tracker - sha256: "7bb2830ebd849694d1ec25bf1f44582d6ac531a57a365a803a6034ff751d2d06" + name: file + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 url: "https://pub.dev" source: hosted - version: "10.0.7" - leak_tracker_flutter_testing: + version: "7.0.1" + file_picker: dependency: transitive description: - name: leak_tracker_flutter_testing - sha256: "9491a714cca3667b60b5c420da8217e6de0d1ba7a5ec322fab01758f6998f379" + name: file_picker + sha256: ab13ae8ef5580a411c458d6207b6774a6c237d77ac37011b13994879f68a8810 url: "https://pub.dev" source: hosted - version: "3.0.8" - leak_tracker_testing: + version: "8.3.7" + file_selector_linux: dependency: transitive description: - name: leak_tracker_testing - sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" + name: file_selector_linux + sha256: "54cbbd957e1156d29548c7d9b9ec0c0ebb6de0a90452198683a7d23aed617a33" url: "https://pub.dev" source: hosted - version: "3.0.1" - lints: + version: "0.9.3+2" + file_selector_macos: dependency: transitive description: - name: lints - sha256: c35bb79562d980e9a453fc715854e1ed39e24e7d0297a880ef54e17f9874a9d7 + name: file_selector_macos + sha256: "8c9250b2bd2d8d4268e39c82543bacbaca0fda7d29e0728c3c4bbb7c820fd711" url: "https://pub.dev" source: hosted - version: "5.1.1" - matcher: + version: "0.9.4+3" + file_selector_platform_interface: dependency: transitive description: - name: matcher - sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + name: file_selector_platform_interface + sha256: a3994c26f10378a039faa11de174d7b78eb8f79e4dd0af2a451410c1a5c3f66b url: "https://pub.dev" source: hosted - version: "0.12.16+1" - material_color_utilities: + version: "2.6.2" + file_selector_windows: dependency: transitive description: - name: material_color_utilities - sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec + name: file_selector_windows + sha256: "320fcfb6f33caa90f0b58380489fc5ac05d99ee94b61aa96ec2bff0ba81d3c2b" url: "https://pub.dev" source: hosted - version: "0.11.1" - meta: + version: "0.9.3+4" + firebase_core: dependency: transitive description: - name: meta - sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 + name: firebase_core + sha256: "8cfe3c900512399ce8d50fcc817e5758ff8615eeb6fa5c846a4cc47bbf6353b6" url: "https://pub.dev" source: hosted - version: "1.15.0" - path: + version: "3.13.1" + firebase_core_platform_interface: dependency: transitive description: - name: path - sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + name: firebase_core_platform_interface + sha256: d7253d255ff10f85cfd2adaba9ac17bae878fa3ba577462451163bd9f1d1f0bf url: "https://pub.dev" source: hosted - version: "1.9.0" - sky_engine: + version: "5.4.0" + firebase_core_web: + dependency: transitive + description: + name: firebase_core_web + sha256: ddd72baa6f727e5b23f32d9af23d7d453d67946f380bd9c21daf474ee0f7326e + url: "https://pub.dev" + source: hosted + version: "2.23.0" + firebase_database: + dependency: transitive + description: + name: firebase_database + sha256: e98c32b9462779f4c45eb036dcaf22cd6a17204e80f77c292bd1d05b08c8ef81 + url: "https://pub.dev" + source: hosted + version: "11.3.6" + firebase_database_platform_interface: + dependency: transitive + description: + name: firebase_database_platform_interface + sha256: "3e81c5e2152ad996309458f8338977989d81a44a692e27180db9380f6faffafb" + url: "https://pub.dev" + source: hosted + version: "0.2.6+6" + firebase_database_web: + dependency: transitive + description: + name: firebase_database_web + sha256: "0289c1c7832b3ca79520517c54bf42a40b9bfefa8198906145ab17e75989d80f" + url: "https://pub.dev" + source: hosted + version: "0.2.6+12" + firebase_messaging: + dependency: transitive + description: + name: firebase_messaging + sha256: "38111089e511f03daa2c66b4c3614c16421b7d78c84ee04331a0a65b47df4542" + url: "https://pub.dev" + source: hosted + version: "15.2.6" + firebase_messaging_platform_interface: + dependency: transitive + description: + name: firebase_messaging_platform_interface + sha256: ba254769982e5f439e534eed68856181c74e2b3f417c8188afad2bb440807cc7 + url: "https://pub.dev" + source: hosted + version: "4.6.6" + firebase_messaging_web: + dependency: transitive + description: + name: firebase_messaging_web + sha256: dba89137272aac39e95f71408ba25c33fb8ed903cd5fa8d1e49b5cd0d96069e0 + url: "https://pub.dev" + source: hosted + version: "3.10.6" + fixnum: dependency: transitive + description: + name: fixnum + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be + url: "https://pub.dev" + source: hosted + version: "1.1.1" + flutter: + dependency: "direct main" description: flutter source: sdk version: "0.0.0" - source_span: + flutter_bloc: dependency: transitive description: - name: source_span - sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + name: flutter_bloc + sha256: b594505eac31a0518bdcb4b5b79573b8d9117b193cc80cc12e17d639b10aa27a url: "https://pub.dev" source: hosted - version: "1.10.0" - stack_trace: + version: "8.1.6" + flutter_cache_manager: dependency: transitive description: - name: stack_trace - sha256: "9f47fd3630d76be3ab26f0ee06d213679aa425996925ff3feffdec504931c377" + name: flutter_cache_manager + sha256: "400b6592f16a4409a7f2bb929a9a7e38c72cceb8ffb99ee57bbf2cb2cecf8386" url: "https://pub.dev" source: hosted - version: "1.12.0" - stream_channel: + version: "3.4.1" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1" + url: "https://pub.dev" + source: hosted + version: "5.0.0" + flutter_localizations: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + flutter_plugin_android_lifecycle: dependency: transitive description: - name: stream_channel - sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + name: flutter_plugin_android_lifecycle + sha256: f948e346c12f8d5480d2825e03de228d0eb8c3a737e4cdaa122267b89c022b5e url: "https://pub.dev" source: hosted - version: "2.1.2" - string_scanner: + version: "2.0.28" + flutter_sound: dependency: transitive description: - name: string_scanner - sha256: "688af5ed3402a4bde5b3a6c15fd768dbf2621a614950b17f04626c431ab3c4c3" + name: flutter_sound + sha256: ef89477f6e8ce2fa395158ebc4a8b11982e3ada440b4021c06fd97a4e771554b url: "https://pub.dev" source: hosted - version: "1.3.0" - term_glyph: + version: "9.28.0" + flutter_sound_platform_interface: dependency: transitive description: - name: term_glyph - sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + name: flutter_sound_platform_interface + sha256: "3394d7e664a09796818014ff85a81db0dec397f4c286cbe52f8783886fa5a497" url: "https://pub.dev" source: hosted - version: "1.2.1" - test_api: + version: "9.28.0" + flutter_sound_web: dependency: transitive description: - name: test_api - sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c" + name: flutter_sound_web + sha256: "4e10c94a8574bd93bb8668af59bf76f5312a890bccd3778d73168a7133217dc5" url: "https://pub.dev" source: hosted - version: "0.7.3" - vector_math: + version: "9.28.0" + flutter_staggered_grid_view: dependency: transitive description: - name: vector_math - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + name: flutter_staggered_grid_view + sha256: "19e7abb550c96fbfeb546b23f3ff356ee7c59a019a651f8f102a4ba9b7349395" url: "https://pub.dev" source: hosted - version: "2.1.4" - vm_service: + version: "0.7.0" + flutter_svg: dependency: transitive description: - name: vm_service - sha256: f6be3ed8bd01289b34d679c2b62226f63c0e69f9fd2e50a6b3c1c729a961041b + name: flutter_svg + sha256: d44bf546b13025ec7353091516f6881f1d4c633993cb109c3916c3a0159dadf1 + url: "https://pub.dev" + source: hosted + version: "2.1.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + gif: + dependency: transitive + description: + name: gif + sha256: ade95694f1471da737922806818ffade2814d1d7f8d10af38ebcf36ace012bc0 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + giphy_get: + dependency: transitive + description: + name: giphy_get + sha256: f143adf4a98a1fc0b9dc1a600382a9de08c4213cb491268ccb5255d42dce4953 + url: "https://pub.dev" + source: hosted + version: "3.6.1" + glob: + dependency: transitive + description: + name: glob + sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de + url: "https://pub.dev" + source: hosted + version: "2.1.3" + hive: + dependency: transitive + description: + name: hive + sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941" + url: "https://pub.dev" + source: hosted + version: "2.2.3" + hive_flutter: + dependency: transitive + description: + name: hive_flutter + sha256: dca1da446b1d808a51689fb5d0c6c9510c0a2ba01e22805d492c73b68e33eecc + url: "https://pub.dev" + source: hosted + version: "1.1.0" + http: + dependency: transitive + description: + name: http + sha256: "2c11f3f94c687ee9bad77c171151672986360b2b001d109814ee7140b2cf261b" + url: "https://pub.dev" + source: hosted + version: "1.4.0" + http_client_helper: + dependency: transitive + description: + name: http_client_helper + sha256: "8a9127650734da86b5c73760de2b404494c968a3fd55602045ffec789dac3cb1" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" + url: "https://pub.dev" + source: hosted + version: "4.1.2" + image: + dependency: transitive + description: + name: image + sha256: "4e973fcf4caae1a4be2fa0a13157aa38a8f9cb049db6529aa00b4d71abc4d928" + url: "https://pub.dev" + source: hosted + version: "4.5.4" + image_picker: + dependency: transitive + description: + name: image_picker + sha256: "021834d9c0c3de46bf0fe40341fa07168407f694d9b2bb18d532dc1261867f7a" + url: "https://pub.dev" + source: hosted + version: "1.1.2" + image_picker_android: + dependency: transitive + description: + name: image_picker_android + sha256: "317a5d961cec5b34e777b9252393f2afbd23084aa6e60fcf601dcf6341b9ebeb" + url: "https://pub.dev" + source: hosted + version: "0.8.12+23" + image_picker_for_web: + dependency: transitive + description: + name: image_picker_for_web + sha256: "717eb042ab08c40767684327be06a5d8dbb341fe791d514e4b92c7bbe1b7bb83" + url: "https://pub.dev" + source: hosted + version: "3.0.6" + image_picker_ios: + dependency: transitive + description: + name: image_picker_ios + sha256: "05da758e67bc7839e886b3959848aa6b44ff123ab4b28f67891008afe8ef9100" + url: "https://pub.dev" + source: hosted + version: "0.8.12+2" + image_picker_linux: + dependency: transitive + description: + name: image_picker_linux + sha256: "34a65f6740df08bbbeb0a1abd8e6d32107941fd4868f67a507b25601651022c9" + url: "https://pub.dev" + source: hosted + version: "0.2.1+2" + image_picker_macos: + dependency: transitive + description: + name: image_picker_macos + sha256: "1b90ebbd9dcf98fb6c1d01427e49a55bd96b5d67b8c67cf955d60a5de74207c1" + url: "https://pub.dev" + source: hosted + version: "0.2.1+2" + image_picker_platform_interface: + dependency: transitive + description: + name: image_picker_platform_interface + sha256: "886d57f0be73c4b140004e78b9f28a8914a09e50c2d816bdd0520051a71236a0" + url: "https://pub.dev" + source: hosted + version: "2.10.1" + image_picker_windows: + dependency: transitive + description: + name: image_picker_windows + sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + infinite_scroll_pagination: + dependency: transitive + description: + name: infinite_scroll_pagination + sha256: "4047eb8191e8b33573690922a9e995af64c3949dc87efc844f936b039ea279df" + url: "https://pub.dev" + source: hosted + version: "4.1.0" + intl: + dependency: "direct overridden" + description: + name: intl + sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf + url: "https://pub.dev" + source: hosted + version: "0.19.0" + js: + dependency: transitive + description: + name: js + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" + source: hosted + version: "0.6.7" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1" + url: "https://pub.dev" + source: hosted + version: "4.9.0" + json_serializable: + dependency: transitive + description: + name: json_serializable + sha256: c50ef5fc083d5b5e12eef489503ba3bf5ccc899e487d691584699b4bdefeea8c + url: "https://pub.dev" + source: hosted + version: "6.9.5" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: c35baad643ba394b40aac41080300150a4f08fd0fd6a10378f8f7c6bc161acec + url: "https://pub.dev" + source: hosted + version: "10.0.8" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573 + url: "https://pub.dev" + source: hosted + version: "3.0.9" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + likeminds_chat_fl: + dependency: transitive + description: + name: likeminds_chat_fl + sha256: "6611778138ee415723545056bc3fc8c4abe21c6fa70ae098f6989ecf5036d1e6" + url: "https://pub.dev" + source: hosted + version: "1.14.0" + likeminds_chat_flutter_core: + dependency: "direct main" + description: + name: likeminds_chat_flutter_core + sha256: "28624b01852b1996bc303da85089d57f877d4e09f0ff9519c829dd81bdecc937" + url: "https://pub.dev" + source: hosted + version: "0.17.0" + likeminds_chat_flutter_ui: + dependency: transitive + description: + name: likeminds_chat_flutter_ui + sha256: "0f8ec118bc60866c451319b26cc2f9d07b077afc1f66f60abdef451b3a7975c7" + url: "https://pub.dev" + source: hosted + version: "0.17.0" + lints: + dependency: transitive + description: + name: lints + sha256: c35bb79562d980e9a453fc715854e1ed39e24e7d0297a880ef54e17f9874a9d7 + url: "https://pub.dev" + source: hosted + version: "5.1.1" + logger: + dependency: transitive + description: + name: logger + sha256: be4b23575aac7ebf01f225a241eb7f6b5641eeaf43c6a8613510fc2f8cf187d1 + url: "https://pub.dev" + source: hosted + version: "2.5.0" + logging: + dependency: transitive + description: + name: logging + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 + url: "https://pub.dev" + source: hosted + version: "1.3.0" + lottie: + dependency: transitive + description: + name: lottie + sha256: c5fa04a80a620066c15cf19cc44773e19e9b38e989ff23ea32e5903ef1015950 + url: "https://pub.dev" + source: hosted + version: "3.3.1" + matcher: + dependency: transitive + description: + name: matcher + sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 + url: "https://pub.dev" + source: hosted + version: "0.12.17" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec + url: "https://pub.dev" + source: hosted + version: "0.11.1" + media_kit: + dependency: transitive + description: + name: media_kit + sha256: "48c10c3785df5d88f0eef970743f8c99b2e5da2b34b9d8f9876e598f62d9e776" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + media_kit_libs_android_video: + dependency: transitive + description: + name: media_kit_libs_android_video + sha256: adff9b571b8ead0867f9f91070f8df39562078c0eb3371d88b9029a2d547d7b7 + url: "https://pub.dev" + source: hosted + version: "1.3.7" + media_kit_libs_ios_video: + dependency: transitive + description: + name: media_kit_libs_ios_video + sha256: b5382994eb37a4564c368386c154ad70ba0cc78dacdd3fb0cd9f30db6d837991 + url: "https://pub.dev" + source: hosted + version: "1.1.4" + media_kit_libs_linux: + dependency: transitive + description: + name: media_kit_libs_linux + sha256: "2b473399a49ec94452c4d4ae51cfc0f6585074398d74216092bf3d54aac37ecf" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + media_kit_libs_macos_video: + dependency: transitive + description: + name: media_kit_libs_macos_video + sha256: f26aa1452b665df288e360393758f84b911f70ffb3878032e1aabba23aa1032d + url: "https://pub.dev" + source: hosted + version: "1.1.4" + media_kit_libs_video: + dependency: transitive + description: + name: media_kit_libs_video + sha256: "958cc55e7065d9d01f52a2842dab2a0812a92add18489f1006d864fb5e42a3ef" + url: "https://pub.dev" + source: hosted + version: "1.0.6" + media_kit_libs_windows_video: + dependency: transitive + description: + name: media_kit_libs_windows_video + sha256: dff76da2778729ab650229e6b4ec6ec111eb5151431002cbd7ea304ff1f112ab + url: "https://pub.dev" + source: hosted + version: "1.0.11" + media_kit_video: + dependency: transitive + description: + name: media_kit_video + sha256: a656a9463298c1adc64c57f2d012874f7f2900f0c614d9545a3e7b8bb9e2137b + url: "https://pub.dev" + source: hosted + version: "1.3.0" + meta: + dependency: transitive + description: + name: meta + sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c + url: "https://pub.dev" + source: hosted + version: "1.16.0" + mime: + dependency: transitive + description: + name: mime + sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + octo_image: + dependency: transitive + description: + name: octo_image + sha256: "34faa6639a78c7e3cbe79be6f9f96535867e879748ade7d17c9b1ae7536293bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + open_file: + dependency: transitive + description: + name: open_file + sha256: d17e2bddf5b278cb2ae18393d0496aa4f162142ba97d1a9e0c30d476adf99c0e + url: "https://pub.dev" + source: hosted + version: "3.5.10" + open_file_android: + dependency: transitive + description: + name: open_file_android + sha256: "58141fcaece2f453a9684509a7275f231ac0e3d6ceb9a5e6de310a7dff9084aa" + url: "https://pub.dev" + source: hosted + version: "1.0.6" + open_file_ios: + dependency: transitive + description: + name: open_file_ios + sha256: "02996f01e5f6863832068e97f8f3a5ef9b613516db6897f373b43b79849e4d07" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + open_file_linux: + dependency: transitive + description: + name: open_file_linux + sha256: d189f799eecbb139c97f8bc7d303f9e720954fa4e0fa1b0b7294767e5f2d7550 + url: "https://pub.dev" + source: hosted + version: "0.0.5" + open_file_mac: + dependency: transitive + description: + name: open_file_mac + sha256: "1440b1e37ceb0642208cfeb2c659c6cda27b25187a90635c9d1acb7d0584d324" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + open_file_platform_interface: + dependency: transitive + description: + name: open_file_platform_interface + sha256: "101b424ca359632699a7e1213e83d025722ab668b9fd1412338221bf9b0e5757" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + open_file_web: + dependency: transitive + description: + name: open_file_web + sha256: e3dbc9584856283dcb30aef5720558b90f88036360bd078e494ab80a80130c4f + url: "https://pub.dev" + source: hosted + version: "0.0.4" + open_file_windows: + dependency: transitive + description: + name: open_file_windows + sha256: d26c31ddf935a94a1a3aa43a23f4fff8a5ff4eea395fe7a8cb819cf55431c875 + url: "https://pub.dev" + source: hosted + version: "0.0.3" + overlay_support: + dependency: transitive + description: + name: overlay_support + sha256: fc39389bfd94e6985e1e13b2a88a125fc4027608485d2d4e2847afe1b2bb339c + url: "https://pub.dev" + source: hosted + version: "2.1.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc + url: "https://pub.dev" + source: hosted + version: "2.2.0" + package_info_plus: + dependency: transitive + description: + name: package_info_plus + sha256: "7976bfe4c583170d6cdc7077e3237560b364149fcd268b5f53d95a991963b191" + url: "https://pub.dev" + source: hosted + version: "8.3.0" + package_info_plus_platform_interface: + dependency: transitive + description: + name: package_info_plus_platform_interface + sha256: "6c935fb612dff8e3cc9632c2b301720c77450a126114126ffaafe28d2e87956c" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + path: + dependency: transitive + description: + name: path + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + path_provider: + dependency: transitive + description: + name: path_provider + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" + url: "https://pub.dev" + source: hosted + version: "2.1.5" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9 + url: "https://pub.dev" + source: hosted + version: "2.2.17" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + pdf_render: + dependency: transitive + description: + name: pdf_render + sha256: bacd2ad8f4f4c9821827003065f5c2f9ca474dd418ff29c68272aab4c0e1e88b + url: "https://pub.dev" + source: hosted + version: "1.4.12" + permission_handler: + dependency: transitive + description: + name: permission_handler + sha256: "59adad729136f01ea9e35a48f5d1395e25cba6cea552249ddbe9cf950f5d7849" + url: "https://pub.dev" + source: hosted + version: "11.4.0" + permission_handler_android: + dependency: transitive + description: + name: permission_handler_android + sha256: d3971dcdd76182a0c198c096b5db2f0884b0d4196723d21a866fc4cdea057ebc + url: "https://pub.dev" + source: hosted + version: "12.1.0" + permission_handler_apple: + dependency: transitive + description: + name: permission_handler_apple + sha256: f000131e755c54cf4d84a5d8bd6e4149e262cc31c5a8b1d698de1ac85fa41023 + url: "https://pub.dev" + source: hosted + version: "9.4.7" + permission_handler_html: + dependency: transitive + description: + name: permission_handler_html + sha256: "38f000e83355abb3392140f6bc3030660cfaef189e1f87824facb76300b4ff24" + url: "https://pub.dev" + source: hosted + version: "0.1.3+5" + permission_handler_platform_interface: + dependency: transitive + description: + name: permission_handler_platform_interface + sha256: eb99b295153abce5d683cac8c02e22faab63e50679b937fa1bf67d58bb282878 + url: "https://pub.dev" + source: hosted + version: "4.3.0" + permission_handler_windows: + dependency: transitive + description: + name: permission_handler_windows + sha256: "1a790728016f79a41216d88672dbc5df30e686e811ad4e698bfc51f76ad91f1e" + url: "https://pub.dev" + source: hosted + version: "0.2.1" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: "07c8f0b1913bcde1ff0d26e57ace2f3012ccbf2b204e070290dad3bb22797646" + url: "https://pub.dev" + source: hosted + version: "6.1.0" + photo_view: + dependency: transitive + description: + name: photo_view + sha256: "1fc3d970a91295fbd1364296575f854c9863f225505c28c46e0a03e48960c75e" + url: "https://pub.dev" + source: hosted + version: "0.15.0" + platform: + dependency: transitive + description: + name: platform + sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" + url: "https://pub.dev" + source: hosted + version: "3.1.6" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + posix: + dependency: transitive + description: + name: posix + sha256: f0d7856b6ca1887cfa6d1d394056a296ae33489db914e365e2044fdada449e62 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + provider: + dependency: transitive + description: + name: provider + sha256: "4abbd070a04e9ddc287673bf5a030c7ca8b685ff70218720abab8b092f53dd84" + url: "https://pub.dev" + source: hosted + version: "6.1.5" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082" + url: "https://pub.dev" + source: hosted + version: "1.5.0" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962" + url: "https://pub.dev" + source: hosted + version: "0.28.0" + safe_local_storage: + dependency: transitive + description: + name: safe_local_storage + sha256: e9a21b6fec7a8aa62cc2585ff4c1b127df42f3185adbd2aca66b47abe2e80236 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + screen_brightness_android: + dependency: transitive + description: + name: screen_brightness_android + sha256: "6ba1b5812f66c64e9e4892be2d36ecd34210f4e0da8bdec6a2ea34f1aa42683e" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + screen_brightness_platform_interface: + dependency: transitive + description: + name: screen_brightness_platform_interface + sha256: "737bd47b57746bc4291cab1b8a5843ee881af499514881b0247ec77447ee769c" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + shared_preferences: + dependency: transitive + description: + name: shared_preferences + sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5" + url: "https://pub.dev" + source: hosted + version: "2.5.3" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: "20cbd561f743a342c76c151d6ddb93a9ce6005751e7aa458baad3858bfbfb6ac" + url: "https://pub.dev" + source: hosted + version: "2.4.10" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03" + url: "https://pub.dev" + source: hosted + version: "2.5.4" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019 + url: "https://pub.dev" + source: hosted + version: "2.4.3" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shimmer: + dependency: transitive + description: + name: shimmer + sha256: "5f88c883a22e9f9f299e5ba0e4f7e6054857224976a5d9f839d4ebdc94a14ac9" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + sliver_tools: + dependency: transitive + description: + name: sliver_tools + sha256: eae28220badfb9d0559207badcbbc9ad5331aac829a88cb0964d330d2a4636a6 + url: "https://pub.dev" + source: hosted + version: "0.2.12" + source_gen: + dependency: transitive + description: + name: source_gen + sha256: "35c8150ece9e8c8d263337a265153c3329667640850b9304861faea59fc98f6b" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + source_helper: + dependency: transitive + description: + name: source_helper + sha256: "86d247119aedce8e63f4751bd9626fc9613255935558447569ad42f9f5b48b3c" + url: "https://pub.dev" + source: hosted + version: "1.3.5" + source_span: + dependency: transitive + description: + name: source_span + sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c" + url: "https://pub.dev" + source: hosted + version: "1.10.1" + sprintf: + dependency: transitive + description: + name: sprintf + sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + sqflite: + dependency: transitive + description: + name: sqflite + sha256: e2297b1da52f127bc7a3da11439985d9b536f75070f3325e62ada69a5c585d03 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + sqflite_android: + dependency: transitive + description: + name: sqflite_android + sha256: "2b3070c5fa881839f8b402ee4a39c1b4d561704d4ebbbcfb808a119bc2a1701b" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + sha256: "84731e8bfd8303a3389903e01fb2141b6e59b5973cacbb0929021df08dddbe8b" + url: "https://pub.dev" + source: hosted + version: "2.5.5" + sqflite_darwin: + dependency: transitive + description: + name: sqflite_darwin + sha256: "279832e5cde3fe99e8571879498c9211f3ca6391b0d818df4e17d9fff5c6ccb3" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + sqflite_platform_interface: + dependency: transitive + description: + name: sqflite_platform_interface + sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920" + url: "https://pub.dev" + source: hosted + version: "2.4.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" + url: "https://pub.dev" + source: hosted + version: "1.12.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43" + url: "https://pub.dev" + source: hosted + version: "1.4.1" + super_sliver_list: + dependency: transitive + description: + name: super_sliver_list + sha256: b1e1e64d08ce40e459b9bb5d9f8e361617c26b8c9f3bb967760b0f436b6e3f56 + url: "https://pub.dev" + source: hosted + version: "0.4.1" + swipe_to_action: + dependency: transitive + description: + name: swipe_to_action + sha256: "0914f78df07a15b5fd97e800036fd63a2bcd4dbe67a4a514a597303806a361ea" + url: "https://pub.dev" + source: hosted + version: "0.2.0" + synchronized: + dependency: transitive + description: + name: synchronized + sha256: "0669c70faae6270521ee4f05bffd2919892d42d1276e6c495be80174b6bc0ef6" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e" + url: "https://pub.dev" + source: hosted + version: "1.2.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd + url: "https://pub.dev" + source: hosted + version: "0.7.4" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + universal_platform: + dependency: transitive + description: + name: universal_platform + sha256: "64e16458a0ea9b99260ceb5467a214c1f298d647c659af1bff6d3bf82536b1ec" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + uri_parser: + dependency: transitive + description: + name: uri_parser + sha256: ff4d2c720aca3f4f7d5445e23b11b2d15ef8af5ddce5164643f38ff962dcb270 + url: "https://pub.dev" + source: hosted + version: "3.0.0" + url_launcher: + dependency: transitive + description: + name: url_launcher + sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603" + url: "https://pub.dev" + source: hosted + version: "6.3.1" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + sha256: "8582d7f6fe14d2652b4c45c9b6c14c0b678c2af2d083a11b604caeba51930d79" + url: "https://pub.dev" + source: hosted + version: "6.3.16" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + sha256: "7f2022359d4c099eea7df3fdf739f7d3d3b9faf3166fb1dd390775176e0b76cb" + url: "https://pub.dev" + source: hosted + version: "6.3.3" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + sha256: "17ba2000b847f334f16626a574c702b196723af2a289e7a93ffcb79acff855c2" + url: "https://pub.dev" + source: hosted + version: "3.2.2" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77" + url: "https://pub.dev" + source: hosted + version: "3.1.4" + uuid: + dependency: transitive + description: + name: uuid + sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff + url: "https://pub.dev" + source: hosted + version: "4.5.1" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: "44cc7104ff32563122a929e4620cf3efd584194eec6d1d913eb5ba593dbcf6de" + url: "https://pub.dev" + source: hosted + version: "1.1.18" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146" + url: "https://pub.dev" + source: hosted + version: "1.1.13" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: "557a315b7d2a6dbb0aaaff84d857967ce6bdc96a63dc6ee2a57ce5a6ee5d3331" + url: "https://pub.dev" + source: hosted + version: "1.1.17" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + video_thumbnail: + dependency: transitive + description: + name: video_thumbnail + sha256: "181a0c205b353918954a881f53a3441476b9e301641688a581e0c13f00dc588b" + url: "https://pub.dev" + source: hosted + version: "0.5.6" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: "0968250880a6c5fe7edc067ed0a13d4bae1577fe2771dcf3010d52c4a9d3ca14" + url: "https://pub.dev" + source: hosted + version: "14.3.1" + volume_controller: + dependency: transitive + description: + name: volume_controller + sha256: d75039e69c0d90e7810bfd47e3eedf29ff8543ea7a10392792e81f9bded7edf5 + url: "https://pub.dev" + source: hosted + version: "3.4.0" + wakelock_plus: + dependency: transitive + description: + name: wakelock_plus + sha256: a474e314c3e8fb5adef1f9ae2d247e57467ad557fa7483a2b895bc1b421c5678 + url: "https://pub.dev" + source: hosted + version: "1.3.2" + wakelock_plus_platform_interface: + dependency: transitive + description: + name: wakelock_plus_platform_interface + sha256: e10444072e50dbc4999d7316fd303f7ea53d31c824aa5eb05d7ccbdd98985207 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + watcher: + dependency: transitive + description: + name: watcher + sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + web: + dependency: transitive + description: + name: web + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + win32: + dependency: transitive + description: + name: win32 + sha256: "329edf97fdd893e0f1e3b9e88d6a0e627128cc17cc316a8d67fda8f1451178ba" + url: "https://pub.dev" + source: hosted + version: "5.13.0" + win32_registry: + dependency: transitive + description: + name: win32_registry + sha256: "21ec76dfc731550fd3e2ce7a33a9ea90b828fdf19a5c3bcf556fa992cfa99852" + url: "https://pub.dev" + source: hosted + version: "1.1.5" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce url: "https://pub.dev" source: hosted - version: "14.3.0" + version: "3.1.3" sdks: - dart: ">=3.6.0 <4.0.0" - flutter: ">=3.18.0-18.0.pre.54" + dart: ">=3.7.0 <4.0.0" + flutter: ">=3.29.0" diff --git a/pubspec.yaml b/pubspec.yaml index b6d5652..941909f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -34,10 +34,11 @@ dependencies: # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.8 + likeminds_chat_flutter_core: ^0.17.0 #MAKE SURE TO ALWAYS USE THIS VERSION dependency_overrides: extended_text_field: ^16.0.0 # Or another version like ^15.0.0 or a specific older/newer one - + intl: ^0.19.0 dev_dependencies: flutter_test: sdk: flutter @@ -89,4 +90,4 @@ flutter: # weight: 700 # # For details regarding fonts from package dependencies, - # see https://flutter.dev/to/font-from-package + # see https://flutter.dev/to/font-from-package \ No newline at end of file