From c277f9e4dc8fdc9328db7a4e6d963fec3f09153c Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Tue, 2 Jan 2024 20:19:04 +0530 Subject: [PATCH 01/17] test for individual post screen written --- pubspec.lock | 40 ++- .../feed/individual_post_test.dart | 266 ++++++++++++++++++ 2 files changed, 298 insertions(+), 8 deletions(-) create mode 100644 test/views/after_auth_screens/feed/individual_post_test.dart diff --git a/pubspec.lock b/pubspec.lock index d8d0d720c5..eaa73413a1 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1013,6 +1013,30 @@ packages: url: "https://pub.dev" source: hosted version: "6.7.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "41b90ceaec6d79819f31e975e61d479516efe701dea35f891b2f986c1b031422" + url: "https://pub.dev" + source: hosted + version: "9.0.17" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "54808cfcfa87dbc0d74c61ac063d624adf1bd5c0407301f32b06c783c60dc4ca" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "7e71be3c161472f6c9158ac8875dd8de575060d60b5d159ebca3600ea32c9116" + url: "https://pub.dev" + source: hosted + version: "1.0.6" lint: dependency: "direct dev" description: @@ -1033,26 +1057,26 @@ packages: dependency: transitive description: name: matcher - sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb url: "https://pub.dev" source: hosted - version: "0.12.16" + version: "0.12.16+1" material_color_utilities: dependency: transitive description: name: material_color_utilities - sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" url: "https://pub.dev" source: hosted - version: "0.5.0" + version: "0.8.0" meta: dependency: transitive description: name: meta - sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 url: "https://pub.dev" source: hosted - version: "1.10.0" + version: "1.11.0" mime: dependency: transitive description: @@ -1137,10 +1161,10 @@ packages: dependency: transitive description: name: path - sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" url: "https://pub.dev" source: hosted - version: "1.8.3" + version: "1.9.0" path_parsing: dependency: transitive description: diff --git a/test/views/after_auth_screens/feed/individual_post_test.dart b/test/views/after_auth_screens/feed/individual_post_test.dart new file mode 100644 index 0000000000..2751718211 --- /dev/null +++ b/test/views/after_auth_screens/feed/individual_post_test.dart @@ -0,0 +1,266 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_localizations/flutter_localizations.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:talawa/models/comment/comment_model.dart'; +import 'package:talawa/models/organization/org_info.dart'; +import 'package:talawa/models/post/post_model.dart'; +import 'package:talawa/models/user/user_info.dart'; +import 'package:talawa/services/size_config.dart'; +import 'package:talawa/utils/app_localization.dart'; +import 'package:talawa/view_model/lang_view_model.dart'; +import 'package:talawa/views/after_auth_screens/feed/individual_post.dart'; +import 'package:talawa/views/base_view.dart'; +import 'package:talawa/widgets/post_widget.dart'; + +import '../../../helpers/test_helpers.dart'; +import '../../../helpers/test_locator.dart'; + +Widget createIndividualPostViewWidget(Post post) { + return BaseView( + onModelReady: (model) => model.initialize(), + builder: (context, model, child) { + return MaterialApp( + locale: const Locale('en'), + localizationsDelegates: const [ + AppLocalizationsDelegate(isTest: true), + GlobalMaterialLocalizations.delegate, + GlobalWidgetsLocalizations.delegate, + ], + home: IndividualPostView(post: post), + navigatorKey: navigationService.navigatorKey, + ); + }, + ); +} + +final LikedBy user = LikedBy(sId: "test_id"); + +final u1 = User( + id: '123', + firstName: 'Lakshay', + lastName: 'Gupta', + email: 'test@test.com', +); +final u2 = User( + id: '123', + firstName: 'Ankit', + lastName: 'Varshney', + email: 'test@test.com', +); +final List users = [u1, u2]; +List comments = [ + Comments(sId: 'comment1'), + Comments(sId: 'comment2'), + Comments(sId: 'comment3'), + Comments(sId: 'comment4'), + Comments(sId: 'comment5'), + Comments(sId: 'comment6'), +]; +final comment = Comment( + creator: User( + id: '123', + firstName: 'Ankit', + lastName: 'Varshney', + email: 'test@test.com', + ), + createdAt: '123456', + text: 'test text', + post: 'test post', + likeCount: 'test count', +); + +final LikedBy l1 = LikedBy(sId: 'test1'); +final LikedBy l2 = LikedBy(sId: 'test2'); +final List likeby = [l1, l2]; + +final comment1 = Comments(sId: 'comment1'); +final comment2 = Comments(sId: 'comment2'); +final comment3 = Comments(sId: 'comment3'); +final List comments1 = [comment1, comment2, comment3]; + +final myBirthday = DateTime.utc(2004, DateTime.june, 16, 5, 30, 0, 0, 0); +final post = Post( + creator: User( + id: '123', + firstName: 'John', + lastName: 'Doe', + email: 'test@test.com', + ), + sId: "sid", + createdAt: myBirthday, + description: 'test description', + organization: OrgInfo(admins: users), + likedBy: likeby, + comments: comments1, +); +Widget createLikedUserCircleAvatar(LikedBy user) { + return BaseView( + onModelReady: (model) => model.initialize(), + builder: (context, model, child) { + return MaterialApp( + locale: const Locale('en'), + localizationsDelegates: const [ + AppLocalizationsDelegate(isTest: true), + GlobalMaterialLocalizations.delegate, + GlobalWidgetsLocalizations.delegate, + ], + home: likedUserCircleAvatar(user), + navigatorKey: navigationService.navigatorKey, + ); + }, + ); +} + +Widget createIndividualPageLikeSection() { + return BaseView( + onModelReady: (model) => model.initialize(), + builder: (context, model, child) { + return MaterialApp( + locale: const Locale('en'), + localizationsDelegates: const [ + AppLocalizationsDelegate(isTest: true), + GlobalMaterialLocalizations.delegate, + GlobalWidgetsLocalizations.delegate, + ], + home: IndividualPageLikeSection( + usersLiked: [ + LikedBy(sId: 'test1'), + LikedBy(sId: 'test2'), + LikedBy(sId: 'test3'), + LikedBy(sId: 'test4'), + ], + ), + navigatorKey: navigationService.navigatorKey, + ); + }, + ); +} + +Widget createIndividualPostCommentSectionWidget() { + return MaterialApp( + locale: const Locale('en'), + localizationsDelegates: const [ + AppLocalizationsDelegate(isTest: true), + GlobalMaterialLocalizations.delegate, + GlobalWidgetsLocalizations.delegate, + ], + home: BaseView( + onModelReady: (model) { + model.initialize(); + }, + builder: (context, model, child) { + return IndividualPostCommentSection( + comments: comments, + postID: 'test post id', + ); + }, + ), + ); +} + +Widget createCommentTemplateWidget(Comment comment) { + return MaterialApp( + locale: const Locale('en'), + localizationsDelegates: const [ + AppLocalizationsDelegate(isTest: true), + GlobalMaterialLocalizations.delegate, + GlobalWidgetsLocalizations.delegate, + ], + home: BaseView( + onModelReady: (model) { + model.initialize(); + }, + builder: (context, model, child) { + return CommentTemplate(comment: comment); + }, + ), + ); +} + +void main() { + SizeConfig().test(); + testSetupLocator(); + + setUp(() { + registerServices(); + }); + + group("testing Individual Post View ", () { + testWidgets("test IndividualPostWidget", (WidgetTester tester) async { + await tester.pumpWidget(createIndividualPostViewWidget(post)); + await tester.pumpAndSettle(); + + expect(find.byKey(const Key('indi_post_tf_key')), findsOneWidget); + await tester.enterText( + find.byKey(const Key('indi_post_tf_key')), + 'Test Comment', + ); + await tester.pumpAndSettle(); + + //verify that the text is entered in the text field + expect(find.text('Test Comment'), findsOneWidget); + + // Tap the send button. + await tester.tap(find.byType(TextButton)); + await tester.pumpAndSettle(); + + expect(find.byType(NewsPost), findsOneWidget); + expect(find.byType(IndividualPageLikeSection), findsOneWidget); + expect(find.byType(IndividualPostCommentSection), findsOneWidget); + }); + }); + + group("Test for likedUserCircleAvatar", () { + testWidgets("checking if likedUserCircleAvatar widget correctly shows up", + (WidgetTester tester) async { + await tester.pumpWidget(createLikedUserCircleAvatar(user)); + await tester.pumpAndSettle(); + + expect(find.byType(CircleAvatar), findsOneWidget); + }); + }); + group("Test for IndividualPageLikeSection", () { + testWidgets( + "checking if IndividualPageLikeSection widget correctly shows up", + (WidgetTester tester) async { + await tester.pumpWidget(createIndividualPageLikeSection()); + await tester.pumpAndSettle(); + expect(find.text("Liked by"), findsOneWidget); + + expect(find.byType(Row), findsOneWidget); + expect( + find.byWidget(likedUserCircleAvatar(user)), + findsNWidgets(4), + ); + }); + }); + + group("Test for IndividualPostCommentSection", () { + testWidgets( + "checking if IndividualPostCommentSection widget correctly shows up", + (WidgetTester tester) async { + await tester.pumpWidget(createIndividualPostCommentSectionWidget()); + await tester.pumpAndSettle(); + + expect(find.text("Comments"), findsOneWidget); + }); + }); + group("Test for CommentTemplate", () { + testWidgets("checking the comment template widgets", + (WidgetTester tester) async { + await tester.pumpWidget(createCommentTemplateWidget(comment)); + await tester.pumpAndSettle(); + + expect(find.byType(Row), findsOneWidget); + expect(find.byType(CircleAvatar), findsOneWidget); + expect(find.byType(Column), findsOneWidget); + expect( + find.text( + "${comment.creator!.firstName!} ${comment.creator!.lastName!}", + ), + findsOneWidget, + ); + expect(find.text(comment.text!), findsOneWidget); + }); + }); +} From b45b2b1b2e56e7bb862b8923d1d9ea7399af40f3 Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Tue, 2 Jan 2024 23:47:16 +0530 Subject: [PATCH 02/17] removed pubspec.lock --- pubspec.lock | 1862 -------------------------------------------------- 1 file changed, 1862 deletions(-) delete mode 100644 pubspec.lock diff --git a/pubspec.lock b/pubspec.lock deleted file mode 100644 index eaa73413a1..0000000000 --- a/pubspec.lock +++ /dev/null @@ -1,1862 +0,0 @@ -# Generated by pub -# See https://dart.dev/tools/pub/glossary#lockfile -packages: - _discoveryapis_commons: - dependency: transitive - description: - name: _discoveryapis_commons - sha256: f8bb1fdbd77f3d5c1d62b5b0eca75fbf1e41bf4f6c62628f880582e2182ae45d - url: "https://pub.dev" - source: hosted - version: "1.0.6" - _fe_analyzer_shared: - dependency: transitive - description: - name: _fe_analyzer_shared - sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a - url: "https://pub.dev" - source: hosted - version: "61.0.0" - _flutterfire_internals: - dependency: transitive - description: - name: _flutterfire_internals - sha256: f5628cd9c92ed11083f425fd1f8f1bc60ecdda458c81d73b143aeda036c35fe7 - url: "https://pub.dev" - source: hosted - version: "1.3.16" - analyzer: - dependency: transitive - description: - name: analyzer - sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562 - url: "https://pub.dev" - source: hosted - version: "5.13.0" - analyzer_plugin: - dependency: transitive - description: - name: analyzer_plugin - sha256: c1d5f167683de03d5ab6c3b53fc9aeefc5d59476e7810ba7bbddff50c6f4392d - url: "https://pub.dev" - source: hosted - version: "0.11.2" - args: - dependency: transitive - description: - name: args - sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 - url: "https://pub.dev" - source: hosted - version: "2.4.2" - async: - dependency: transitive - description: - name: async - sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" - url: "https://pub.dev" - source: hosted - version: "2.11.0" - auto_size_text: - dependency: "direct main" - description: - name: auto_size_text - sha256: "3f5261cd3fb5f2a9ab4e2fc3fba84fd9fcaac8821f20a1d4e71f557521b22599" - url: "https://pub.dev" - source: hosted - version: "3.0.0" - boolean_selector: - dependency: transitive - description: - name: boolean_selector - sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - build: - dependency: transitive - description: - name: build - sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" - url: "https://pub.dev" - source: hosted - version: "2.4.1" - build_config: - dependency: transitive - description: - name: build_config - sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 - url: "https://pub.dev" - source: hosted - version: "1.1.1" - build_daemon: - dependency: transitive - description: - name: build_daemon - sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" - url: "https://pub.dev" - source: hosted - version: "4.0.1" - build_resolvers: - dependency: transitive - description: - name: build_resolvers - sha256: "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8" - url: "https://pub.dev" - source: hosted - version: "2.4.1" - build_runner: - dependency: "direct dev" - description: - name: build_runner - sha256: "67d591d602906ef9201caf93452495ad1812bea2074f04e25dbd7c133785821b" - url: "https://pub.dev" - source: hosted - version: "2.4.7" - build_runner_core: - dependency: transitive - description: - name: build_runner_core - sha256: c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185 - url: "https://pub.dev" - source: hosted - version: "7.2.11" - built_collection: - dependency: transitive - description: - name: built_collection - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" - url: "https://pub.dev" - source: hosted - version: "5.1.1" - built_value: - dependency: transitive - description: - name: built_value - sha256: "69acb7007eb2a31dc901512bfe0f7b767168be34cb734835d54c070bfa74c1b2" - url: "https://pub.dev" - source: hosted - version: "8.8.0" - cached_network_image: - dependency: "direct main" - description: - name: cached_network_image - sha256: "28ea9690a8207179c319965c13cd8df184d5ee721ae2ce60f398ced1219cea1f" - url: "https://pub.dev" - source: hosted - version: "3.3.1" - cached_network_image_platform_interface: - dependency: transitive - description: - name: cached_network_image_platform_interface - sha256: "9e90e78ae72caa874a323d78fa6301b3fb8fa7ea76a8f96dc5b5bf79f283bf2f" - url: "https://pub.dev" - source: hosted - version: "4.0.0" - cached_network_image_web: - dependency: transitive - description: - name: cached_network_image_web - sha256: "42a835caa27c220d1294311ac409a43361088625a4f23c820b006dd9bffb3316" - url: "https://pub.dev" - source: hosted - version: "1.1.1" - characters: - dependency: transitive - description: - name: characters - sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" - url: "https://pub.dev" - source: hosted - version: "1.3.0" - checked_yaml: - dependency: transitive - description: - name: checked_yaml - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff - url: "https://pub.dev" - source: hosted - version: "2.0.3" - ci: - dependency: transitive - description: - name: ci - sha256: "145d095ce05cddac4d797a158bc4cf3b6016d1fe63d8c3d2fbd7212590adca13" - url: "https://pub.dev" - source: hosted - version: "0.1.0" - cli_util: - dependency: transitive - description: - name: cli_util - sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7 - url: "https://pub.dev" - source: hosted - version: "0.4.0" - clock: - dependency: transitive - description: - name: clock - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf - url: "https://pub.dev" - source: hosted - version: "1.1.1" - code_builder: - dependency: transitive - description: - name: code_builder - sha256: b2151ce26a06171005b379ecff6e08d34c470180ffe16b8e14b6d52be292b55f - url: "https://pub.dev" - source: hosted - version: "4.8.0" - collection: - dependency: transitive - description: - name: collection - sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a - url: "https://pub.dev" - source: hosted - version: "1.18.0" - connectivity_plus: - dependency: "direct main" - description: - name: connectivity_plus - sha256: "224a77051d52a11fbad53dd57827594d3bd24f945af28bd70bab376d68d437f0" - url: "https://pub.dev" - source: hosted - version: "5.0.2" - connectivity_plus_platform_interface: - dependency: transitive - description: - name: connectivity_plus_platform_interface - sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a - url: "https://pub.dev" - source: hosted - version: "1.2.4" - contained_tab_bar_view: - dependency: "direct main" - description: - name: contained_tab_bar_view - sha256: "87e35f47992764e45ab6205493f2f90c1e3fac4ad84f2b2285b73414727b756e" - url: "https://pub.dev" - source: hosted - version: "0.8.0" - container_tab_indicator: - dependency: transitive - description: - name: container_tab_indicator - sha256: b0bdd73bb495c31c5711cefa363511b10bb3ebcfc007b603a2599401ebe6b2d9 - url: "https://pub.dev" - source: hosted - version: "0.3.0" - convert: - dependency: transitive - description: - name: convert - sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" - url: "https://pub.dev" - source: hosted - version: "3.1.1" - cross_file: - dependency: transitive - description: - name: cross_file - sha256: "2f9d2cbccb76127ba28528cb3ae2c2326a122446a83de5a056aaa3880d3882c5" - url: "https://pub.dev" - source: hosted - version: "0.3.3+7" - crypto: - dependency: "direct main" - description: - name: crypto - sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab - url: "https://pub.dev" - source: hosted - version: "3.0.3" - csslib: - dependency: transitive - description: - name: csslib - sha256: "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - cupertino_icons: - dependency: "direct main" - description: - name: cupertino_icons - sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d - url: "https://pub.dev" - source: hosted - version: "1.0.6" - currency_picker: - dependency: "direct main" - description: - name: currency_picker - sha256: eb75deb7bc92e3f31e1b8ad4efacf71371e8e49d7a0eebd1c1a8e9fae58cc23d - url: "https://pub.dev" - source: hosted - version: "2.0.20" - custom_lint: - dependency: "direct dev" - description: - name: custom_lint - sha256: "198ec6b8e084d22f508a76556c9afcfb71706ad3f42b083fe0ee923351a96d90" - url: "https://pub.dev" - source: hosted - version: "0.5.7" - custom_lint_builder: - dependency: transitive - description: - name: custom_lint_builder - sha256: dfcfa987d2bd9d0ba751ef4bdef0f6c1aa0062f2a67fe716fd5f3f8b709d6418 - url: "https://pub.dev" - source: hosted - version: "0.5.7" - custom_lint_core: - dependency: transitive - description: - name: custom_lint_core - sha256: f84c3fe2f27ef3b8831953e477e59d4a29c2952623f9eac450d7b40d9cdd94cc - url: "https://pub.dev" - source: hosted - version: "0.5.7" - dart_style: - dependency: transitive - description: - name: dart_style - sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" - url: "https://pub.dev" - source: hosted - version: "2.3.2" - dbus: - dependency: transitive - description: - name: dbus - sha256: "365c771ac3b0e58845f39ec6deebc76e3276aa9922b0cc60840712094d9047ac" - url: "https://pub.dev" - source: hosted - version: "0.7.10" - device_info_plus: - dependency: transitive - description: - name: device_info_plus - sha256: "093b02a284b4969bb641a6236bbb8e626e4035c6ec9e30c20b65d505c24b3080" - url: "https://pub.dev" - source: hosted - version: "10.0.0" - device_info_plus_platform_interface: - dependency: transitive - description: - name: device_info_plus_platform_interface - sha256: d3b01d5868b50ae571cd1dc6e502fc94d956b665756180f7b16ead09e836fd64 - url: "https://pub.dev" - source: hosted - version: "7.0.0" - fake_async: - dependency: transitive - description: - name: fake_async - sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" - url: "https://pub.dev" - source: hosted - version: "1.3.1" - ffi: - dependency: transitive - description: - name: ffi - sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - file: - dependency: "direct main" - description: - name: file - sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" - url: "https://pub.dev" - source: hosted - version: "7.0.0" - file_selector_linux: - dependency: transitive - description: - name: file_selector_linux - sha256: "045d372bf19b02aeb69cacf8b4009555fb5f6f0b7ad8016e5f46dd1387ddd492" - url: "https://pub.dev" - source: hosted - version: "0.9.2+1" - file_selector_macos: - dependency: transitive - description: - name: file_selector_macos - sha256: b15c3da8bd4908b9918111fa486903f5808e388b8d1c559949f584725a6594d6 - url: "https://pub.dev" - source: hosted - version: "0.9.3+3" - file_selector_platform_interface: - dependency: transitive - description: - name: file_selector_platform_interface - sha256: "0aa47a725c346825a2bd396343ce63ac00bda6eff2fbc43eabe99737dede8262" - url: "https://pub.dev" - source: hosted - version: "2.6.1" - file_selector_windows: - dependency: transitive - description: - name: file_selector_windows - sha256: d3547240c20cabf205c7c7f01a50ecdbc413755814d6677f3cb366f04abcead0 - url: "https://pub.dev" - source: hosted - version: "0.9.3+1" - firebase_core: - dependency: "direct main" - description: - name: firebase_core - sha256: "96607c0e829a581c2a483c658f04e8b159964c3bae2730f73297070bc85d40bb" - url: "https://pub.dev" - source: hosted - version: "2.24.2" - firebase_core_platform_interface: - dependency: "direct main" - description: - name: firebase_core_platform_interface - sha256: c437ae5d17e6b5cc7981cf6fd458a5db4d12979905f9aafd1fea930428a9fe63 - url: "https://pub.dev" - source: hosted - version: "5.0.0" - firebase_core_web: - dependency: transitive - description: - name: firebase_core_web - sha256: d585bdf3c656c3f7821ba1bd44da5f13365d22fcecaf5eb75c4295246aaa83c0 - url: "https://pub.dev" - source: hosted - version: "2.10.0" - firebase_messaging: - dependency: "direct main" - description: - name: firebase_messaging - sha256: "199fe8186a5370d1cf5ce0819191079afc305914e8f38715f5e23943940dfe2d" - url: "https://pub.dev" - source: hosted - version: "14.7.9" - firebase_messaging_platform_interface: - dependency: "direct main" - description: - name: firebase_messaging_platform_interface - sha256: "54e283a0e41d81d854636ad0dad73066adc53407a60a7c3189c9656e2f1b6107" - url: "https://pub.dev" - source: hosted - version: "4.5.18" - firebase_messaging_web: - dependency: transitive - description: - name: firebase_messaging_web - sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4" - url: "https://pub.dev" - source: hosted - version: "3.5.18" - fixnum: - dependency: transitive - description: - name: fixnum - sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" - url: "https://pub.dev" - source: hosted - version: "1.1.0" - flutter: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_braintree: - dependency: "direct main" - description: - name: flutter_braintree - sha256: d364251cf57c028e8481869222d571c90df819ae234d9fb349713c4ffa25ba96 - url: "https://pub.dev" - source: hosted - version: "3.0.0" - flutter_cache_manager: - dependency: "direct main" - description: - name: flutter_cache_manager - sha256: "8207f27539deb83732fdda03e259349046a39a4c767269285f449ade355d54ba" - url: "https://pub.dev" - source: hosted - version: "3.3.1" - flutter_hooks: - dependency: transitive - description: - name: flutter_hooks - sha256: "7c8db779c2d1010aa7f9ea3fbefe8f86524fcb87b69e8b0af31e1a4b55422dec" - url: "https://pub.dev" - source: hosted - version: "0.20.3" - flutter_local_notifications: - dependency: "direct main" - description: - name: flutter_local_notifications - sha256: "892ada16046d641263f30c72e7432397088810a84f34479f6677494802a2b535" - url: "https://pub.dev" - source: hosted - version: "16.3.0" - flutter_local_notifications_linux: - dependency: transitive - description: - name: flutter_local_notifications_linux - sha256: "33f741ef47b5f63cc7f78fe75eeeac7e19f171ff3c3df054d84c1e38bedb6a03" - url: "https://pub.dev" - source: hosted - version: "4.0.0+1" - flutter_local_notifications_platform_interface: - dependency: transitive - description: - name: flutter_local_notifications_platform_interface - sha256: "7cf643d6d5022f3baed0be777b0662cce5919c0a7b86e700299f22dc4ae660ef" - url: "https://pub.dev" - source: hosted - version: "7.0.0+1" - flutter_localizations: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_plugin_android_lifecycle: - dependency: transitive - description: - name: flutter_plugin_android_lifecycle - sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da - url: "https://pub.dev" - source: hosted - version: "2.0.17" - flutter_reaction_button: - dependency: "direct main" - description: - name: flutter_reaction_button - sha256: "9fe67f6e6dac65c5ee864c2ab03550b25e7fc82b9a800c885a87f85abe2c03c6" - url: "https://pub.dev" - source: hosted - version: "3.0.0+3" - flutter_speed_dial: - dependency: "direct main" - description: - name: flutter_speed_dial - sha256: "698a037274a66dbae8697c265440e6acb6ab6cae9ac5f95c749e7944d8f28d41" - url: "https://pub.dev" - source: hosted - version: "7.0.0" - flutter_svg: - dependency: "direct main" - description: - name: flutter_svg - sha256: d39e7f95621fc84376bc0f7d504f05c3a41488c562f4a8ad410569127507402c - url: "https://pub.dev" - source: hosted - version: "2.0.9" - 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" - font_awesome_flutter: - dependency: "direct main" - description: - name: font_awesome_flutter - sha256: "52671aea66da73b58d42ec6d0912b727a42248dd9a7c76d6c20f275783c48c08" - url: "https://pub.dev" - source: hosted - version: "10.6.0" - freezed_annotation: - dependency: transitive - description: - name: freezed_annotation - sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d - url: "https://pub.dev" - source: hosted - version: "2.4.1" - frontend_server_client: - dependency: transitive - description: - name: frontend_server_client - sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" - url: "https://pub.dev" - source: hosted - version: "3.2.0" - geocoding: - dependency: "direct main" - description: - name: geocoding - sha256: e1dc0ac56666d9ed1d5a9ae5543ce9eb5986db6209cc7600103487d09192059c - url: "https://pub.dev" - source: hosted - version: "2.1.1" - geocoding_android: - dependency: transitive - description: - name: geocoding_android - sha256: "609db1d71bc364dd9d0616f72a41c01e0c74f3a3807efb85e0d5a67e57baf50f" - url: "https://pub.dev" - source: hosted - version: "2.1.2" - geocoding_ios: - dependency: transitive - description: - name: geocoding_ios - sha256: "8f79e380abb640ef4d88baee8bb65390058c802601158d0813dc990b36b189d2" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - geocoding_platform_interface: - dependency: transitive - description: - name: geocoding_platform_interface - sha256: "8848605d307d844d89937cdb4b8ad7dfa880552078f310fa24d8a460f6dddab4" - url: "https://pub.dev" - source: hosted - version: "2.0.1" - geolocator: - dependency: "direct main" - description: - name: geolocator - sha256: e946395fc608842bb2f6c914807e9183f86f3cb787f6b8f832753e5251036f02 - url: "https://pub.dev" - source: hosted - version: "10.1.0" - geolocator_android: - dependency: transitive - description: - name: geolocator_android - sha256: "93906636752ea4d4e778afa981fdfe7409f545b3147046300df194330044d349" - url: "https://pub.dev" - source: hosted - version: "4.3.1" - geolocator_apple: - dependency: transitive - description: - name: geolocator_apple - sha256: ab90ae811c42ec2f6021e01eca71df00dee6ff1e69d2c2dafd4daeb0b793f73d - url: "https://pub.dev" - source: hosted - version: "2.3.2" - geolocator_platform_interface: - dependency: transitive - description: - name: geolocator_platform_interface - sha256: "6c8d494d6948757c56720b778af742f6973f31fca1f702a7539b8917e4a2468a" - url: "https://pub.dev" - source: hosted - version: "4.2.0" - geolocator_web: - dependency: transitive - description: - name: geolocator_web - sha256: "59083f7e0871b78299918d92bf930a14377f711d2d1156c558cd5ebae6c20d58" - url: "https://pub.dev" - source: hosted - version: "2.2.0" - geolocator_windows: - dependency: transitive - description: - name: geolocator_windows - sha256: a92fae29779d5c6dc60e8411302f5221ade464968fe80a36d330e80a71f087af - url: "https://pub.dev" - source: hosted - version: "0.2.2" - get_it: - dependency: "direct main" - description: - name: get_it - sha256: f79870884de16d689cf9a7d15eedf31ed61d750e813c538a6efb92660fea83c3 - url: "https://pub.dev" - source: hosted - version: "7.6.4" - glob: - dependency: transitive - description: - name: glob - sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" - url: "https://pub.dev" - source: hosted - version: "2.1.2" - google_maps: - dependency: transitive - description: - name: google_maps - sha256: "555d5d736339b0478e821167ac521c810d7b51c3b2734e6802a9f046b64ea37a" - url: "https://pub.dev" - source: hosted - version: "6.3.0" - google_maps_flutter: - dependency: "direct main" - description: - name: google_maps_flutter - sha256: d4914cb38b3dcb62c39c085d968d434de0f8050f00f4d9f5ba4a7c7e004934cb - url: "https://pub.dev" - source: hosted - version: "2.5.0" - google_maps_flutter_android: - dependency: transitive - description: - name: google_maps_flutter_android - sha256: "4023e79184c762e63efe04da629d876085e0c296a7ca26745fb5750d4acd0aa2" - url: "https://pub.dev" - source: hosted - version: "2.5.3" - google_maps_flutter_ios: - dependency: transitive - description: - name: google_maps_flutter_ios - sha256: "2aa28eb9b9d5dfdce6932a7b7f096430bf83a1a09b4e21e81939351f407c787f" - url: "https://pub.dev" - source: hosted - version: "2.3.2" - google_maps_flutter_platform_interface: - dependency: transitive - description: - name: google_maps_flutter_platform_interface - sha256: a3e9e6896501e566d902c6c69f010834d410ef4b7b5c18b90c77e871c86b7907 - url: "https://pub.dev" - source: hosted - version: "2.4.1" - google_maps_flutter_web: - dependency: transitive - description: - name: google_maps_flutter_web - sha256: f893d1542c6562bc8299ef768fbbe92ade83c220ab3209b9477ec9f81ad585e4 - url: "https://pub.dev" - source: hosted - version: "0.5.4+2" - googleapis: - dependency: "direct main" - description: - name: googleapis - sha256: "8a8c311723162af077ca73f94b823b97ff68770d966e29614d20baca9fdb490a" - url: "https://pub.dev" - source: hosted - version: "12.0.0" - gql: - dependency: transitive - description: - name: gql - sha256: aa3e0be4548353007b6e6fd24fcad0ce8c1179f9cb2ae5239d392fddb84a5ce5 - url: "https://pub.dev" - source: hosted - version: "1.0.1-alpha+1700868214564" - gql_dedupe_link: - dependency: transitive - description: - name: gql_dedupe_link - sha256: e97e3f9490add43ba96cf5cc02d9d10a3723965c0bcc7bb1e04ef4f2e7a31a00 - url: "https://pub.dev" - source: hosted - version: "2.0.4-alpha+1700868214643" - gql_error_link: - dependency: transitive - description: - name: gql_error_link - sha256: "93901458f3c050e33386dedb0ca7173e08cebd7078e4e0deca4bf23ab7a71f63" - url: "https://pub.dev" - source: hosted - version: "1.0.0+1" - gql_exec: - dependency: transitive - description: - name: gql_exec - sha256: "394944626fae900f1d34343ecf2d62e44eb984826189c8979d305f0ae5846e38" - url: "https://pub.dev" - source: hosted - version: "1.1.1-alpha+1699813812660" - gql_http_link: - dependency: transitive - description: - name: gql_http_link - sha256: "1f922eed1b7078fdbfd602187663026f9f659fe9a9499e2207b5d5e01617f658" - url: "https://pub.dev" - source: hosted - version: "1.0.1+1" - gql_link: - dependency: transitive - description: - name: gql_link - sha256: "48dbf63b4831d800a2ce9675c9fecea3c9f2801de92072c7644a4bc52aa26c13" - url: "https://pub.dev" - source: hosted - version: "1.0.1-alpha+1700868214578" - gql_transform_link: - dependency: transitive - description: - name: gql_transform_link - sha256: "0645fdd874ca1be695fd327271fdfb24c0cd6fa40774a64b946062f321a59709" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - graphql: - dependency: transitive - description: - name: graphql - sha256: "4ac531068107dffef188c74e7ff662777b729e9d5e0686f71623d4af1e3751c8" - url: "https://pub.dev" - source: hosted - version: "5.2.0-beta.6" - graphql_flutter: - dependency: "direct main" - description: - name: graphql_flutter - sha256: "39b5e830bc654ab02c5b776c31675841d1a8c95840fdd284efba713b1d47e65d" - url: "https://pub.dev" - source: hosted - version: "5.2.0-beta.6" - graphs: - dependency: transitive - description: - name: graphs - sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 - url: "https://pub.dev" - source: hosted - version: "2.3.1" - hive: - dependency: "direct main" - description: - name: hive - sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941" - url: "https://pub.dev" - source: hosted - version: "2.2.3" - hive_generator: - dependency: "direct dev" - description: - name: hive_generator - sha256: "06cb8f58ace74de61f63500564931f9505368f45f98958bd7a6c35ba24159db4" - url: "https://pub.dev" - source: hosted - version: "2.0.1" - hotreloader: - dependency: transitive - description: - name: hotreloader - sha256: "94ee21a60ea2836500799f3af035dc3212b1562027f1e0031c14e087f0231449" - url: "https://pub.dev" - source: hosted - version: "4.1.0" - html: - dependency: transitive - description: - name: html - sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a" - url: "https://pub.dev" - source: hosted - version: "0.15.4" - http: - dependency: "direct main" - description: - name: http - sha256: d4872660c46d929f6b8a9ef4e7a7eff7e49bbf0c4ec3f385ee32df5119175139 - url: "https://pub.dev" - source: hosted - version: "1.1.2" - http_multi_server: - dependency: transitive - description: - name: http_multi_server - sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" - url: "https://pub.dev" - source: hosted - version: "3.2.1" - http_parser: - dependency: transitive - description: - name: http_parser - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" - url: "https://pub.dev" - source: hosted - version: "4.0.2" - image_cropper: - dependency: "direct main" - description: - name: image_cropper - sha256: f4bad5ed2dfff5a7ce0dfbad545b46a945c702bb6182a921488ef01ba7693111 - url: "https://pub.dev" - source: hosted - version: "5.0.1" - image_cropper_for_web: - dependency: transitive - description: - name: image_cropper_for_web - sha256: "865d798b5c9d826f1185b32e5d0018c4183ddb77b7b82a931e1a06aa3b74974e" - url: "https://pub.dev" - source: hosted - version: "3.0.0" - image_cropper_platform_interface: - dependency: transitive - description: - name: image_cropper_platform_interface - sha256: ee160d686422272aa306125f3b6fb1c1894d9b87a5e20ed33fa008e7285da11e - url: "https://pub.dev" - source: hosted - version: "5.0.0" - image_picker: - dependency: "direct main" - description: - name: image_picker - sha256: fc712337719239b0b6e41316aa133350b078fa39b6cbd706b61f3fd421b03c77 - url: "https://pub.dev" - source: hosted - version: "1.0.5" - image_picker_android: - dependency: transitive - description: - name: image_picker_android - sha256: d6a6e78821086b0b737009b09363018309bbc6de3fd88cc5c26bc2bb44a4957f - url: "https://pub.dev" - source: hosted - version: "0.8.8+2" - image_picker_for_web: - dependency: transitive - description: - name: image_picker_for_web - sha256: "50bc9ae6a77eea3a8b11af5eb6c661eeb858fdd2f734c2a4fd17086922347ef7" - url: "https://pub.dev" - source: hosted - version: "3.0.1" - image_picker_ios: - dependency: transitive - description: - name: image_picker_ios - sha256: "76ec722aeea419d03aa915c2c96bf5b47214b053899088c9abb4086ceecf97a7" - url: "https://pub.dev" - source: hosted - version: "0.8.8+4" - image_picker_linux: - dependency: transitive - description: - name: image_picker_linux - sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa" - url: "https://pub.dev" - source: hosted - version: "0.2.1+1" - image_picker_macos: - dependency: transitive - description: - name: image_picker_macos - sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62" - url: "https://pub.dev" - source: hosted - version: "0.2.1+1" - image_picker_platform_interface: - dependency: transitive - description: - name: image_picker_platform_interface - sha256: ed9b00e63977c93b0d2d2b343685bed9c324534ba5abafbb3dfbd6a780b1b514 - url: "https://pub.dev" - source: hosted - version: "2.9.1" - image_picker_windows: - dependency: transitive - description: - name: image_picker_windows - sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" - url: "https://pub.dev" - source: hosted - version: "0.2.1+1" - intl: - dependency: "direct main" - description: - name: intl - sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" - url: "https://pub.dev" - source: hosted - version: "0.18.1" - io: - dependency: transitive - description: - name: io - sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" - url: "https://pub.dev" - source: hosted - version: "1.0.4" - js: - dependency: transitive - description: - name: js - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 - url: "https://pub.dev" - source: hosted - version: "0.6.7" - js_wrapping: - dependency: transitive - description: - name: js_wrapping - sha256: e385980f7c76a8c1c9a560dfb623b890975841542471eade630b2871d243851c - url: "https://pub.dev" - source: hosted - version: "0.7.4" - json_annotation: - dependency: "direct main" - description: - name: json_annotation - sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 - url: "https://pub.dev" - source: hosted - version: "4.8.1" - json_serializable: - dependency: "direct dev" - description: - name: json_serializable - sha256: aa1f5a8912615733e0fdc7a02af03308933c93235bdc8d50d0b0c8a8ccb0b969 - url: "https://pub.dev" - source: hosted - version: "6.7.1" - leak_tracker: - dependency: transitive - description: - name: leak_tracker - sha256: "41b90ceaec6d79819f31e975e61d479516efe701dea35f891b2f986c1b031422" - url: "https://pub.dev" - source: hosted - version: "9.0.17" - leak_tracker_flutter_testing: - dependency: transitive - description: - name: leak_tracker_flutter_testing - sha256: "54808cfcfa87dbc0d74c61ac063d624adf1bd5c0407301f32b06c783c60dc4ca" - url: "https://pub.dev" - source: hosted - version: "2.0.0" - leak_tracker_testing: - dependency: transitive - description: - name: leak_tracker_testing - sha256: "7e71be3c161472f6c9158ac8875dd8de575060d60b5d159ebca3600ea32c9116" - url: "https://pub.dev" - source: hosted - version: "1.0.6" - lint: - dependency: "direct dev" - description: - name: lint - sha256: d758a5211fce7fd3f5e316f804daefecdc34c7e53559716125e6da7388ae8565 - url: "https://pub.dev" - source: hosted - version: "2.3.0" - logging: - dependency: transitive - description: - name: logging - sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" - url: "https://pub.dev" - source: hosted - version: "1.2.0" - 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: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" - url: "https://pub.dev" - source: hosted - version: "0.8.0" - meta: - dependency: transitive - description: - name: meta - sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 - url: "https://pub.dev" - source: hosted - version: "1.11.0" - mime: - dependency: transitive - description: - name: mime - sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e - url: "https://pub.dev" - source: hosted - version: "1.0.4" - mockito: - dependency: "direct main" - description: - name: mockito - sha256: "6841eed20a7befac0ce07df8116c8b8233ed1f4486a7647c7fc5a02ae6163917" - url: "https://pub.dev" - source: hosted - version: "5.4.4" - mocktail: - dependency: transitive - description: - name: mocktail - sha256: bac151b31e4ed78bd59ab89aa4c0928f297b1180186d5daf03734519e5f596c1 - url: "https://pub.dev" - source: hosted - version: "1.0.1" - mocktail_image_network: - dependency: "direct dev" - description: - name: mocktail_image_network - sha256: "83e6b9fa3c6b0952636719f0444752d94c0ef7caa4172ca467d9c1b682aeddbb" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - nested: - dependency: transitive - description: - name: nested - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - network_image_mock: - dependency: "direct main" - description: - name: network_image_mock - sha256: "855cdd01d42440e0cffee0d6c2370909fc31b3bcba308a59829f24f64be42db7" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - nm: - dependency: transitive - description: - name: nm - sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" - url: "https://pub.dev" - source: hosted - version: "0.5.0" - normalize: - dependency: transitive - description: - name: normalize - sha256: "8a60e37de5b608eeaf9b839273370c71ebba445e9f73b08eee7725e0d92dbc43" - url: "https://pub.dev" - source: hosted - version: "0.8.2+1" - octo_image: - dependency: transitive - description: - name: octo_image - sha256: "45b40f99622f11901238e18d48f5f12ea36426d8eced9f4cbf58479c7aa2430d" - url: "https://pub.dev" - source: hosted - version: "2.0.0" - package_config: - dependency: transitive - description: - name: package_config - sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - path: - dependency: transitive - description: - name: path - sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" - url: "https://pub.dev" - source: hosted - version: "1.9.0" - path_parsing: - dependency: transitive - description: - name: path_parsing - sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf - url: "https://pub.dev" - source: hosted - version: "1.0.1" - path_provider: - dependency: "direct main" - description: - name: path_provider - sha256: a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa - url: "https://pub.dev" - source: hosted - version: "2.1.1" - path_provider_android: - dependency: transitive - description: - name: path_provider_android - sha256: e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72 - url: "https://pub.dev" - source: hosted - version: "2.2.1" - path_provider_foundation: - dependency: transitive - description: - name: path_provider_foundation - sha256: "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d" - url: "https://pub.dev" - source: hosted - version: "2.3.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: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - path_provider_windows: - dependency: transitive - description: - name: path_provider_windows - sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" - url: "https://pub.dev" - source: hosted - version: "2.2.1" - permission_handler: - dependency: "direct main" - description: - name: permission_handler - sha256: "860c6b871c94c78e202dc69546d4d8fd84bd59faeb36f8fb9888668a53ff4f78" - url: "https://pub.dev" - source: hosted - version: "11.1.0" - permission_handler_android: - dependency: transitive - description: - name: permission_handler_android - sha256: "2f1bec180ee2f5665c22faada971a8f024761f632e93ddc23310487df52dcfa6" - url: "https://pub.dev" - source: hosted - version: "12.0.1" - permission_handler_apple: - dependency: transitive - description: - name: permission_handler_apple - sha256: "1a816084338ada8d574b1cb48390e6e8b19305d5120fe3a37c98825bacc78306" - url: "https://pub.dev" - source: hosted - version: "9.2.0" - permission_handler_html: - dependency: transitive - description: - name: permission_handler_html - sha256: "11b762a8c123dced6461933a88ea1edbbe036078c3f9f41b08886e678e7864df" - url: "https://pub.dev" - source: hosted - version: "0.1.0+2" - permission_handler_platform_interface: - dependency: transitive - description: - name: permission_handler_platform_interface - sha256: d87349312f7eaf6ce0adaf668daf700ac5b06af84338bd8b8574dfbd93ffe1a1 - url: "https://pub.dev" - source: hosted - version: "4.0.2" - permission_handler_windows: - dependency: transitive - description: - name: permission_handler_windows - sha256: "1e8640c1e39121128da6b816d236e714d2cf17fac5a105dd6acdd3403a628004" - url: "https://pub.dev" - source: hosted - version: "0.2.0" - petitparser: - dependency: transitive - description: - name: petitparser - sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750 - url: "https://pub.dev" - source: hosted - version: "5.4.0" - platform: - dependency: transitive - description: - name: platform - sha256: "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59" - url: "https://pub.dev" - source: hosted - version: "3.1.3" - plugin_platform_interface: - dependency: "direct main" - description: - name: plugin_platform_interface - sha256: f4f88d4a900933e7267e2b353594774fc0d07fb072b47eedcd5b54e1ea3269f8 - url: "https://pub.dev" - source: hosted - version: "2.1.7" - pointycastle: - dependency: "direct main" - description: - name: pointycastle - sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c" - url: "https://pub.dev" - source: hosted - version: "3.7.3" - pool: - dependency: transitive - description: - name: pool - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" - url: "https://pub.dev" - source: hosted - version: "1.5.1" - provider: - dependency: "direct main" - description: - name: provider - sha256: "9a96a0a19b594dbc5bf0f1f27d2bc67d5f95957359b461cd9feb44ed6ae75096" - url: "https://pub.dev" - source: hosted - version: "6.1.1" - pub_semver: - dependency: transitive - description: - name: pub_semver - sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - pubspec_parse: - dependency: transitive - description: - name: pubspec_parse - sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 - url: "https://pub.dev" - source: hosted - version: "1.2.3" - qr: - dependency: transitive - description: - name: qr - sha256: "64957a3930367bf97cc211a5af99551d630f2f4625e38af10edd6b19131b64b3" - url: "https://pub.dev" - source: hosted - version: "3.0.1" - qr_code_scanner: - dependency: "direct main" - description: - name: qr_code_scanner - sha256: f23b68d893505a424f0bd2e324ebea71ed88465d572d26bb8d2e78a4749591fd - url: "https://pub.dev" - source: hosted - version: "1.0.1" - qr_flutter: - dependency: "direct main" - description: - name: qr_flutter - sha256: "5095f0fc6e3f71d08adef8feccc8cea4f12eec18a2e31c2e8d82cb6019f4b097" - url: "https://pub.dev" - source: hosted - version: "4.1.0" - quick_actions: - dependency: "direct main" - description: - name: quick_actions - sha256: "3930e1cf78a0574495b4ea741ee197323c4a9081321d6ae384b3bfcd84c7ea83" - url: "https://pub.dev" - source: hosted - version: "1.0.6" - quick_actions_android: - dependency: transitive - description: - name: quick_actions_android - sha256: df67c20583e05f5038a24c47bfa1b7b2977703ec2d162663017c5f9ef8707699 - url: "https://pub.dev" - source: hosted - version: "1.0.9" - quick_actions_ios: - dependency: transitive - description: - name: quick_actions_ios - sha256: "5a13ed27b6254184fdd4294e100e3172fa6ebfd8bea03e414634a0f760d49997" - url: "https://pub.dev" - source: hosted - version: "1.0.8" - quick_actions_platform_interface: - dependency: transitive - description: - name: quick_actions_platform_interface - sha256: d2a8566b56eec49f93934528b62033906199c60f4ffaef0cba9ef02fcfed8a81 - url: "https://pub.dev" - source: hosted - version: "1.0.5" - rxdart: - dependency: transitive - description: - name: rxdart - sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" - url: "https://pub.dev" - source: hosted - version: "0.27.7" - sanitize_html: - dependency: transitive - description: - name: sanitize_html - sha256: "12669c4a913688a26555323fb9cec373d8f9fbe091f2d01c40c723b33caa8989" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - shared_preferences: - dependency: "direct main" - description: - name: shared_preferences - sha256: "81429e4481e1ccfb51ede496e916348668fd0921627779233bd24cc3ff6abd02" - url: "https://pub.dev" - source: hosted - version: "2.2.2" - shared_preferences_android: - dependency: transitive - description: - name: shared_preferences_android - sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" - url: "https://pub.dev" - source: hosted - version: "2.2.1" - shared_preferences_foundation: - dependency: transitive - description: - name: shared_preferences_foundation - sha256: "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7" - url: "https://pub.dev" - source: hosted - version: "2.3.4" - shared_preferences_linux: - dependency: transitive - description: - name: shared_preferences_linux - sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" - url: "https://pub.dev" - source: hosted - version: "2.3.2" - shared_preferences_platform_interface: - dependency: transitive - description: - name: shared_preferences_platform_interface - sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a - url: "https://pub.dev" - source: hosted - version: "2.3.1" - shared_preferences_web: - dependency: transitive - description: - name: shared_preferences_web - sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf - url: "https://pub.dev" - source: hosted - version: "2.2.1" - shared_preferences_windows: - dependency: transitive - description: - name: shared_preferences_windows - sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" - url: "https://pub.dev" - source: hosted - version: "2.3.2" - shelf: - dependency: transitive - description: - name: shelf - sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 - url: "https://pub.dev" - source: hosted - version: "1.4.1" - shelf_web_socket: - dependency: transitive - description: - name: shelf_web_socket - sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" - url: "https://pub.dev" - source: hosted - version: "1.0.4" - shimmer: - dependency: "direct main" - 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.99" - social_share: - dependency: "direct main" - description: - name: social_share - sha256: eb19a0f6f5a29c7bb71e5bb1991145eb52472184363b6e2da70695befd8be041 - url: "https://pub.dev" - source: hosted - version: "2.3.1" - source_gen: - dependency: transitive - description: - name: source_gen - sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 - url: "https://pub.dev" - source: hosted - version: "1.4.0" - source_helper: - dependency: transitive - description: - name: source_helper - sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd" - url: "https://pub.dev" - source: hosted - version: "1.3.4" - source_span: - dependency: transitive - description: - name: source_span - sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" - url: "https://pub.dev" - source: hosted - version: "1.10.0" - sqflite: - dependency: transitive - description: - name: sqflite - sha256: "591f1602816e9c31377d5f008c2d9ef7b8aca8941c3f89cc5fd9d84da0c38a9a" - url: "https://pub.dev" - source: hosted - version: "2.3.0" - sqflite_common: - dependency: transitive - description: - name: sqflite_common - sha256: bb4738f15b23352822f4c42a531677e5c6f522e079461fd240ead29d8d8a54a6 - url: "https://pub.dev" - source: hosted - version: "2.5.0+2" - stack_trace: - dependency: transitive - description: - name: stack_trace - sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" - url: "https://pub.dev" - source: hosted - version: "1.11.1" - stream_channel: - dependency: transitive - description: - name: stream_channel - sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 - url: "https://pub.dev" - source: hosted - version: "2.1.2" - stream_transform: - dependency: transitive - description: - name: stream_transform - sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - string_scanner: - dependency: transitive - description: - name: string_scanner - sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" - url: "https://pub.dev" - source: hosted - version: "1.2.0" - syncfusion_flutter_calendar: - dependency: "direct main" - description: - name: syncfusion_flutter_calendar - sha256: b31182b348742b0f2285849179490afd89e321514b8e0eadeab6d7377373c9f2 - url: "https://pub.dev" - source: hosted - version: "24.1.43" - syncfusion_flutter_core: - dependency: transitive - description: - name: syncfusion_flutter_core - sha256: "1b40729aa10a727150a6cc56e532c770f4baded83846fca8700efd908d0f4d0a" - url: "https://pub.dev" - source: hosted - version: "24.1.43" - syncfusion_flutter_datepicker: - dependency: "direct main" - description: - name: syncfusion_flutter_datepicker - sha256: "3f9a8e8b585dd992d2321c899ec8d914634fb99eba02cf7a91c48a098bf62820" - url: "https://pub.dev" - source: hosted - version: "24.1.43" - synchronized: - dependency: transitive - description: - name: synchronized - sha256: "5fcbd27688af6082f5abd611af56ee575342c30e87541d0245f7ff99faa02c60" - url: "https://pub.dev" - source: hosted - version: "3.1.0" - talawa_lint: - dependency: "direct dev" - description: - path: talawa_lint - relative: true - source: path - version: "0.0.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: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" - url: "https://pub.dev" - source: hosted - version: "0.6.1" - timelines: - dependency: "direct main" - description: - name: timelines - sha256: "40214f5ab772ff45459cb8c15e5f60505a6828af0c0eb1eec6f29ed911a4c1c5" - url: "https://pub.dev" - source: hosted - version: "0.1.0" - timezone: - dependency: transitive - description: - name: timezone - sha256: "1cfd8ddc2d1cfd836bc93e67b9be88c3adaeca6f40a00ca999104c30693cdca0" - url: "https://pub.dev" - source: hosted - version: "0.9.2" - timing: - dependency: transitive - description: - name: timing - sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" - url: "https://pub.dev" - source: hosted - version: "1.0.1" - tutorial_coach_mark: - dependency: "direct main" - description: - name: tutorial_coach_mark - sha256: "1f1fd234790afb929dec7391a4d90aa54ffe8c8e4d278d9283df8e3f5ac5d63e" - url: "https://pub.dev" - source: hosted - version: "1.2.11" - typed_data: - dependency: transitive - description: - name: typed_data - sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c - url: "https://pub.dev" - source: hosted - version: "1.3.2" - uni_links: - dependency: "direct main" - description: - name: uni_links - sha256: "051098acfc9e26a9fde03b487bef5d3d228ca8f67693480c6f33fd4fbb8e2b6e" - url: "https://pub.dev" - source: hosted - version: "0.5.1" - uni_links_platform_interface: - dependency: transitive - description: - name: uni_links_platform_interface - sha256: "929cf1a71b59e3b7c2d8a2605a9cf7e0b125b13bc858e55083d88c62722d4507" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - uni_links_web: - dependency: transitive - description: - name: uni_links_web - sha256: "7539db908e25f67de2438e33cc1020b30ab94e66720b5677ba6763b25f6394df" - url: "https://pub.dev" - source: hosted - version: "0.1.0" - uuid: - dependency: transitive - description: - name: uuid - sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313" - url: "https://pub.dev" - source: hosted - version: "3.0.7" - vector_graphics: - dependency: transitive - description: - name: vector_graphics - sha256: "0f0c746dd2d6254a0057218ff980fc7f5670fd0fcf5e4db38a490d31eed4ad43" - url: "https://pub.dev" - source: hosted - version: "1.1.9+1" - vector_graphics_codec: - dependency: transitive - description: - name: vector_graphics_codec - sha256: "0edf6d630d1bfd5589114138ed8fada3234deacc37966bec033d3047c29248b7" - url: "https://pub.dev" - source: hosted - version: "1.1.9+1" - vector_graphics_compiler: - dependency: transitive - description: - name: vector_graphics_compiler - sha256: d24333727332d9bd20990f1483af4e09abdb9b1fc7c3db940b56ab5c42790c26 - url: "https://pub.dev" - source: hosted - version: "1.1.9+1" - vector_math: - dependency: transitive - description: - name: vector_math - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - vibration: - dependency: "direct main" - description: - name: vibration - sha256: "778ace40e84852e6cf6017cdbaf6790a837d73ff3dd50b27da9ac232a19de8fc" - url: "https://pub.dev" - source: hosted - version: "1.8.4" - video_player: - dependency: "direct main" - description: - name: video_player - sha256: e16f0a83601a78d165dabc17e4dac50997604eb9e4cc76e10fa219046b70cef3 - url: "https://pub.dev" - source: hosted - version: "2.8.1" - video_player_android: - dependency: transitive - description: - name: video_player_android - sha256: "3fe89ab07fdbce786e7eb25b58532d6eaf189ceddc091cb66cba712f8d9e8e55" - url: "https://pub.dev" - source: hosted - version: "2.4.10" - video_player_avfoundation: - dependency: transitive - description: - name: video_player_avfoundation - sha256: bc923884640d6dc403050586eb40713cdb8d1d84e6886d8aca50ab04c59124c2 - url: "https://pub.dev" - source: hosted - version: "2.5.2" - video_player_platform_interface: - dependency: transitive - description: - name: video_player_platform_interface - sha256: be72301bf2c0150ab35a8c34d66e5a99de525f6de1e8d27c0672b836fe48f73a - url: "https://pub.dev" - source: hosted - version: "6.2.1" - video_player_web: - dependency: transitive - description: - name: video_player_web - sha256: ab7a462b07d9ca80bed579e30fb3bce372468f1b78642e0911b10600f2c5cb5b - url: "https://pub.dev" - source: hosted - version: "2.1.2" - visibility_detector: - dependency: "direct main" - description: - name: visibility_detector - sha256: dd5cc11e13494f432d15939c3aa8ae76844c42b723398643ce9addb88a5ed420 - url: "https://pub.dev" - source: hosted - version: "0.4.0+2" - vm_service: - dependency: transitive - description: - name: vm_service - sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 - url: "https://pub.dev" - source: hosted - version: "13.0.0" - watcher: - dependency: transitive - description: - name: watcher - sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" - url: "https://pub.dev" - source: hosted - version: "1.1.0" - web: - dependency: transitive - description: - name: web - sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 - url: "https://pub.dev" - source: hosted - version: "0.3.0" - web_socket_channel: - dependency: transitive - description: - name: web_socket_channel - sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b - url: "https://pub.dev" - source: hosted - version: "2.4.0" - win32: - dependency: transitive - description: - name: win32 - sha256: "7c99c0e1e2fa190b48d25c81ca5e42036d5cac81430ef249027d97b0935c553f" - url: "https://pub.dev" - source: hosted - version: "5.1.0" - win32_registry: - dependency: transitive - description: - name: win32_registry - sha256: "41fd8a189940d8696b1b810efb9abcf60827b6cbfab90b0c43e8439e3a39d85a" - url: "https://pub.dev" - source: hosted - version: "1.1.2" - xdg_directories: - dependency: transitive - description: - name: xdg_directories - sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2" - url: "https://pub.dev" - source: hosted - version: "1.0.3" - xml: - dependency: transitive - description: - name: xml - sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84" - url: "https://pub.dev" - source: hosted - version: "6.3.0" - yaml: - dependency: transitive - description: - name: yaml - sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" - url: "https://pub.dev" - source: hosted - version: "3.1.2" -sdks: - dart: ">=3.2.0 <3.13.0" - flutter: ">=3.16.0" From 477ec4a6eab97d2dda52faf0e4e074fbb1720087 Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Wed, 3 Jan 2024 00:44:35 +0530 Subject: [PATCH 03/17] fix falling test case" --- pubspec.lock | 1870 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1870 insertions(+) create mode 100644 pubspec.lock diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000000..038e783de4 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,1870 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _discoveryapis_commons: + dependency: transitive + description: + name: _discoveryapis_commons + sha256: f8bb1fdbd77f3d5c1d62b5b0eca75fbf1e41bf4f6c62628f880582e2182ae45d + url: "https://pub.dev" + source: hosted + version: "1.0.6" + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a + url: "https://pub.dev" + source: hosted + version: "61.0.0" + _flutterfire_internals: + dependency: transitive + description: + name: _flutterfire_internals + sha256: f5628cd9c92ed11083f425fd1f8f1bc60ecdda458c81d73b143aeda036c35fe7 + url: "https://pub.dev" + source: hosted + version: "1.3.16" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562 + url: "https://pub.dev" + source: hosted + version: "5.13.0" + analyzer_plugin: + dependency: transitive + description: + name: analyzer_plugin + sha256: c1d5f167683de03d5ab6c3b53fc9aeefc5d59476e7810ba7bbddff50c6f4392d + url: "https://pub.dev" + source: hosted + version: "0.11.2" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + auto_size_text: + dependency: "direct main" + description: + name: auto_size_text + sha256: "3f5261cd3fb5f2a9ab4e2fc3fba84fd9fcaac8821f20a1d4e71f557521b22599" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + build: + dependency: transitive + description: + name: build + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_config: + dependency: transitive + description: + name: build_config + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 + url: "https://pub.dev" + source: hosted + version: "1.1.1" + build_daemon: + dependency: transitive + description: + name: build_daemon + sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" + url: "https://pub.dev" + source: hosted + version: "4.0.1" + build_resolvers: + dependency: transitive + description: + name: build_resolvers + sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + build_runner: + dependency: "direct dev" + description: + name: build_runner + sha256: "67d591d602906ef9201caf93452495ad1812bea2074f04e25dbd7c133785821b" + url: "https://pub.dev" + source: hosted + version: "2.4.7" + build_runner_core: + dependency: transitive + description: + name: build_runner_core + sha256: c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185 + url: "https://pub.dev" + source: hosted + version: "7.2.11" + built_collection: + dependency: transitive + description: + name: built_collection + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + built_value: + dependency: transitive + description: + name: built_value + sha256: c9aabae0718ec394e5bc3c7272e6bb0dc0b32201a08fe185ec1d8401d3e39309 + url: "https://pub.dev" + source: hosted + version: "8.8.1" + cached_network_image: + dependency: "direct main" + description: + name: cached_network_image + sha256: "28ea9690a8207179c319965c13cd8df184d5ee721ae2ce60f398ced1219cea1f" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + cached_network_image_platform_interface: + dependency: transitive + description: + name: cached_network_image_platform_interface + sha256: "9e90e78ae72caa874a323d78fa6301b3fb8fa7ea76a8f96dc5b5bf79f283bf2f" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + cached_network_image_web: + dependency: transitive + description: + name: cached_network_image_web + sha256: "42a835caa27c220d1294311ac409a43361088625a4f23c820b006dd9bffb3316" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" + source: hosted + version: "2.0.3" + ci: + dependency: transitive + description: + name: ci + sha256: "145d095ce05cddac4d797a158bc4cf3b6016d1fe63d8c3d2fbd7212590adca13" + url: "https://pub.dev" + source: hosted + version: "0.1.0" + cli_util: + dependency: transitive + description: + name: cli_util + sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 + url: "https://pub.dev" + source: hosted + version: "0.4.1" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + code_builder: + dependency: transitive + description: + name: code_builder + sha256: feee43a5c05e7b3199bb375a86430b8ada1b04104f2923d0e03cc01ca87b6d84 + url: "https://pub.dev" + source: hosted + version: "4.9.0" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + connectivity_plus: + dependency: "direct main" + description: + name: connectivity_plus + sha256: "224a77051d52a11fbad53dd57827594d3bd24f945af28bd70bab376d68d437f0" + url: "https://pub.dev" + source: hosted + version: "5.0.2" + connectivity_plus_platform_interface: + dependency: transitive + description: + name: connectivity_plus_platform_interface + sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a + url: "https://pub.dev" + source: hosted + version: "1.2.4" + contained_tab_bar_view: + dependency: "direct main" + description: + name: contained_tab_bar_view + sha256: "87e35f47992764e45ab6205493f2f90c1e3fac4ad84f2b2285b73414727b756e" + url: "https://pub.dev" + source: hosted + version: "0.8.0" + container_tab_indicator: + dependency: transitive + description: + name: container_tab_indicator + sha256: b0bdd73bb495c31c5711cefa363511b10bb3ebcfc007b603a2599401ebe6b2d9 + url: "https://pub.dev" + source: hosted + version: "0.3.0" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + cross_file: + dependency: transitive + description: + name: cross_file + sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e + url: "https://pub.dev" + source: hosted + version: "0.3.3+8" + crypto: + dependency: "direct main" + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + csslib: + dependency: transitive + description: + name: csslib + sha256: "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d + url: "https://pub.dev" + source: hosted + version: "1.0.6" + currency_picker: + dependency: "direct main" + description: + name: currency_picker + sha256: eb75deb7bc92e3f31e1b8ad4efacf71371e8e49d7a0eebd1c1a8e9fae58cc23d + url: "https://pub.dev" + source: hosted + version: "2.0.20" + custom_lint: + dependency: "direct dev" + description: + name: custom_lint + sha256: "198ec6b8e084d22f508a76556c9afcfb71706ad3f42b083fe0ee923351a96d90" + url: "https://pub.dev" + source: hosted + version: "0.5.7" + custom_lint_builder: + dependency: transitive + description: + name: custom_lint_builder + sha256: dfcfa987d2bd9d0ba751ef4bdef0f6c1aa0062f2a67fe716fd5f3f8b709d6418 + url: "https://pub.dev" + source: hosted + version: "0.5.7" + custom_lint_core: + dependency: transitive + description: + name: custom_lint_core + sha256: f84c3fe2f27ef3b8831953e477e59d4a29c2952623f9eac450d7b40d9cdd94cc + url: "https://pub.dev" + source: hosted + version: "0.5.7" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + dbus: + dependency: transitive + description: + name: dbus + sha256: "365c771ac3b0e58845f39ec6deebc76e3276aa9922b0cc60840712094d9047ac" + url: "https://pub.dev" + source: hosted + version: "0.7.10" + device_info_plus: + dependency: transitive + description: + name: device_info_plus + sha256: "0042cb3b2a76413ea5f8a2b40cec2a33e01d0c937e91f0f7c211fde4f7739ba6" + url: "https://pub.dev" + source: hosted + version: "9.1.1" + device_info_plus_platform_interface: + dependency: transitive + description: + name: device_info_plus_platform_interface + sha256: d3b01d5868b50ae571cd1dc6e502fc94d956b665756180f7b16ead09e836fd64 + url: "https://pub.dev" + source: hosted + version: "7.0.0" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + ffi: + dependency: transitive + description: + name: ffi + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + file: + dependency: "direct main" + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + file_selector_linux: + dependency: transitive + description: + name: file_selector_linux + sha256: "045d372bf19b02aeb69cacf8b4009555fb5f6f0b7ad8016e5f46dd1387ddd492" + url: "https://pub.dev" + source: hosted + version: "0.9.2+1" + file_selector_macos: + dependency: transitive + description: + name: file_selector_macos + sha256: b15c3da8bd4908b9918111fa486903f5808e388b8d1c559949f584725a6594d6 + url: "https://pub.dev" + source: hosted + version: "0.9.3+3" + file_selector_platform_interface: + dependency: transitive + description: + name: file_selector_platform_interface + sha256: "0aa47a725c346825a2bd396343ce63ac00bda6eff2fbc43eabe99737dede8262" + url: "https://pub.dev" + source: hosted + version: "2.6.1" + file_selector_windows: + dependency: transitive + description: + name: file_selector_windows + sha256: d3547240c20cabf205c7c7f01a50ecdbc413755814d6677f3cb366f04abcead0 + url: "https://pub.dev" + source: hosted + version: "0.9.3+1" + firebase_core: + dependency: "direct main" + description: + name: firebase_core + sha256: "96607c0e829a581c2a483c658f04e8b159964c3bae2730f73297070bc85d40bb" + url: "https://pub.dev" + source: hosted + version: "2.24.2" + firebase_core_platform_interface: + dependency: "direct main" + description: + name: firebase_core_platform_interface + sha256: c437ae5d17e6b5cc7981cf6fd458a5db4d12979905f9aafd1fea930428a9fe63 + url: "https://pub.dev" + source: hosted + version: "5.0.0" + firebase_core_web: + dependency: transitive + description: + name: firebase_core_web + sha256: d585bdf3c656c3f7821ba1bd44da5f13365d22fcecaf5eb75c4295246aaa83c0 + url: "https://pub.dev" + source: hosted + version: "2.10.0" + firebase_messaging: + dependency: "direct main" + description: + name: firebase_messaging + sha256: "199fe8186a5370d1cf5ce0819191079afc305914e8f38715f5e23943940dfe2d" + url: "https://pub.dev" + source: hosted + version: "14.7.9" + firebase_messaging_platform_interface: + dependency: "direct main" + description: + name: firebase_messaging_platform_interface + sha256: "54e283a0e41d81d854636ad0dad73066adc53407a60a7c3189c9656e2f1b6107" + url: "https://pub.dev" + source: hosted + version: "4.5.18" + firebase_messaging_web: + dependency: transitive + description: + name: firebase_messaging_web + sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4" + url: "https://pub.dev" + source: hosted + version: "3.5.18" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_braintree: + dependency: "direct main" + description: + name: flutter_braintree + sha256: d364251cf57c028e8481869222d571c90df819ae234d9fb349713c4ffa25ba96 + url: "https://pub.dev" + source: hosted + version: "3.0.0" + flutter_cache_manager: + dependency: "direct main" + description: + name: flutter_cache_manager + sha256: "8207f27539deb83732fdda03e259349046a39a4c767269285f449ade355d54ba" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + flutter_hooks: + dependency: transitive + description: + name: flutter_hooks + sha256: "09f64db63fee3b2ab8b9038a1346be7d8986977fae3fec601275bf32455ccfc0" + url: "https://pub.dev" + source: hosted + version: "0.20.4" + flutter_local_notifications: + dependency: "direct main" + description: + name: flutter_local_notifications + sha256: "892ada16046d641263f30c72e7432397088810a84f34479f6677494802a2b535" + url: "https://pub.dev" + source: hosted + version: "16.3.0" + flutter_local_notifications_linux: + dependency: transitive + description: + name: flutter_local_notifications_linux + sha256: "33f741ef47b5f63cc7f78fe75eeeac7e19f171ff3c3df054d84c1e38bedb6a03" + url: "https://pub.dev" + source: hosted + version: "4.0.0+1" + flutter_local_notifications_platform_interface: + dependency: transitive + description: + name: flutter_local_notifications_platform_interface + sha256: "7cf643d6d5022f3baed0be777b0662cce5919c0a7b86e700299f22dc4ae660ef" + url: "https://pub.dev" + source: hosted + version: "7.0.0+1" + flutter_localizations: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_plugin_android_lifecycle: + dependency: transitive + description: + name: flutter_plugin_android_lifecycle + sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da + url: "https://pub.dev" + source: hosted + version: "2.0.17" + flutter_reaction_button: + dependency: "direct main" + description: + name: flutter_reaction_button + sha256: "9fe67f6e6dac65c5ee864c2ab03550b25e7fc82b9a800c885a87f85abe2c03c6" + url: "https://pub.dev" + source: hosted + version: "3.0.0+3" + flutter_speed_dial: + dependency: "direct main" + description: + name: flutter_speed_dial + sha256: "698a037274a66dbae8697c265440e6acb6ab6cae9ac5f95c749e7944d8f28d41" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + flutter_svg: + dependency: "direct main" + description: + name: flutter_svg + sha256: d39e7f95621fc84376bc0f7d504f05c3a41488c562f4a8ad410569127507402c + url: "https://pub.dev" + source: hosted + version: "2.0.9" + 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" + font_awesome_flutter: + dependency: "direct main" + description: + name: font_awesome_flutter + sha256: "52671aea66da73b58d42ec6d0912b727a42248dd9a7c76d6c20f275783c48c08" + url: "https://pub.dev" + source: hosted + version: "10.6.0" + freezed_annotation: + dependency: transitive + description: + name: freezed_annotation + sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d + url: "https://pub.dev" + source: hosted + version: "2.4.1" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + geocoding: + dependency: "direct main" + description: + name: geocoding + sha256: e1dc0ac56666d9ed1d5a9ae5543ce9eb5986db6209cc7600103487d09192059c + url: "https://pub.dev" + source: hosted + version: "2.1.1" + geocoding_android: + dependency: transitive + description: + name: geocoding_android + sha256: "609db1d71bc364dd9d0616f72a41c01e0c74f3a3807efb85e0d5a67e57baf50f" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + geocoding_ios: + dependency: transitive + description: + name: geocoding_ios + sha256: "8f79e380abb640ef4d88baee8bb65390058c802601158d0813dc990b36b189d2" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + geocoding_platform_interface: + dependency: transitive + description: + name: geocoding_platform_interface + sha256: "8848605d307d844d89937cdb4b8ad7dfa880552078f310fa24d8a460f6dddab4" + url: "https://pub.dev" + source: hosted + version: "2.0.1" + geolocator: + dependency: "direct main" + description: + name: geolocator + sha256: e946395fc608842bb2f6c914807e9183f86f3cb787f6b8f832753e5251036f02 + url: "https://pub.dev" + source: hosted + version: "10.1.0" + geolocator_android: + dependency: transitive + description: + name: geolocator_android + sha256: "741579fa6c9e412984d2bdb2fbaa54e3c3f7587c60aeacfe6e058358a11f40f8" + url: "https://pub.dev" + source: hosted + version: "4.4.0" + geolocator_apple: + dependency: transitive + description: + name: geolocator_apple + sha256: "1d938e2462cc5145c1402f89d49e70b60a2a51b89fb57414ced71417f1f479b1" + url: "https://pub.dev" + source: hosted + version: "2.3.3" + geolocator_platform_interface: + dependency: transitive + description: + name: geolocator_platform_interface + sha256: "6c8d494d6948757c56720b778af742f6973f31fca1f702a7539b8917e4a2468a" + url: "https://pub.dev" + source: hosted + version: "4.2.0" + geolocator_web: + dependency: transitive + description: + name: geolocator_web + sha256: "59083f7e0871b78299918d92bf930a14377f711d2d1156c558cd5ebae6c20d58" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + geolocator_windows: + dependency: transitive + description: + name: geolocator_windows + sha256: a92fae29779d5c6dc60e8411302f5221ade464968fe80a36d330e80a71f087af + url: "https://pub.dev" + source: hosted + version: "0.2.2" + get_it: + dependency: "direct main" + description: + name: get_it + sha256: f79870884de16d689cf9a7d15eedf31ed61d750e813c538a6efb92660fea83c3 + url: "https://pub.dev" + source: hosted + version: "7.6.4" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + google_maps: + dependency: transitive + description: + name: google_maps + sha256: "555d5d736339b0478e821167ac521c810d7b51c3b2734e6802a9f046b64ea37a" + url: "https://pub.dev" + source: hosted + version: "6.3.0" + google_maps_flutter: + dependency: "direct main" + description: + name: google_maps_flutter + sha256: d4914cb38b3dcb62c39c085d968d434de0f8050f00f4d9f5ba4a7c7e004934cb + url: "https://pub.dev" + source: hosted + version: "2.5.0" + google_maps_flutter_android: + dependency: transitive + description: + name: google_maps_flutter_android + sha256: "4279a338b79288fad5c8b03e5ae6ec30888bff210e0bab10b1f31f31e5a90558" + url: "https://pub.dev" + source: hosted + version: "2.6.0" + google_maps_flutter_ios: + dependency: transitive + description: + name: google_maps_flutter_ios + sha256: "6ad65362aeeeda44b7c2c807e36bf578ef4b1c163882e085bdb040bf2934b246" + url: "https://pub.dev" + source: hosted + version: "2.3.3" + google_maps_flutter_platform_interface: + dependency: transitive + description: + name: google_maps_flutter_platform_interface + sha256: a3e9e6896501e566d902c6c69f010834d410ef4b7b5c18b90c77e871c86b7907 + url: "https://pub.dev" + source: hosted + version: "2.4.1" + google_maps_flutter_web: + dependency: transitive + description: + name: google_maps_flutter_web + sha256: f893d1542c6562bc8299ef768fbbe92ade83c220ab3209b9477ec9f81ad585e4 + url: "https://pub.dev" + source: hosted + version: "0.5.4+2" + googleapis: + dependency: "direct main" + description: + name: googleapis + sha256: "8a8c311723162af077ca73f94b823b97ff68770d966e29614d20baca9fdb490a" + url: "https://pub.dev" + source: hosted + version: "12.0.0" + gql: + dependency: transitive + description: + name: gql + sha256: f57eb635aa2f134ced585584f3d53006816f1fdd909480bb7626a1d41063ce25 + url: "https://pub.dev" + source: hosted + version: "1.0.1-alpha+1704118137418" + gql_dedupe_link: + dependency: transitive + description: + name: gql_dedupe_link + sha256: d0ba6388a52dab95e7e9a9fa3fec43c11172d3d3feda21bf88df39427c8e282f + url: "https://pub.dev" + source: hosted + version: "2.0.4-alpha+1704118137496" + gql_error_link: + dependency: transitive + description: + name: gql_error_link + sha256: "93901458f3c050e33386dedb0ca7173e08cebd7078e4e0deca4bf23ab7a71f63" + url: "https://pub.dev" + source: hosted + version: "1.0.0+1" + gql_exec: + dependency: transitive + description: + name: gql_exec + sha256: "394944626fae900f1d34343ecf2d62e44eb984826189c8979d305f0ae5846e38" + url: "https://pub.dev" + source: hosted + version: "1.1.1-alpha+1699813812660" + gql_http_link: + dependency: transitive + description: + name: gql_http_link + sha256: "1f922eed1b7078fdbfd602187663026f9f659fe9a9499e2207b5d5e01617f658" + url: "https://pub.dev" + source: hosted + version: "1.0.1+1" + gql_link: + dependency: transitive + description: + name: gql_link + sha256: "4cce5019a2ce727023a5e5f9763a9ff85b2770801b10a51738a10472ae779786" + url: "https://pub.dev" + source: hosted + version: "1.0.1-alpha+1704118137432" + gql_transform_link: + dependency: transitive + description: + name: gql_transform_link + sha256: "0645fdd874ca1be695fd327271fdfb24c0cd6fa40774a64b946062f321a59709" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + graphql: + dependency: transitive + description: + name: graphql + sha256: d066e53446166c12537458386b507f7426f2b8801ebafc184576aab3cbc64d56 + url: "https://pub.dev" + source: hosted + version: "5.2.0-beta.7" + graphql_flutter: + dependency: "direct main" + description: + name: graphql_flutter + sha256: "39b5e830bc654ab02c5b776c31675841d1a8c95840fdd284efba713b1d47e65d" + url: "https://pub.dev" + source: hosted + version: "5.2.0-beta.6" + graphs: + dependency: transitive + description: + name: graphs + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + hive: + dependency: "direct main" + description: + name: hive + sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941" + url: "https://pub.dev" + source: hosted + version: "2.2.3" + hive_generator: + dependency: "direct dev" + description: + name: hive_generator + sha256: "06cb8f58ace74de61f63500564931f9505368f45f98958bd7a6c35ba24159db4" + url: "https://pub.dev" + source: hosted + version: "2.0.1" + hotreloader: + dependency: transitive + description: + name: hotreloader + sha256: "94ee21a60ea2836500799f3af035dc3212b1562027f1e0031c14e087f0231449" + url: "https://pub.dev" + source: hosted + version: "4.1.0" + html: + dependency: transitive + description: + name: html + sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a" + url: "https://pub.dev" + source: hosted + version: "0.15.4" + http: + dependency: "direct main" + description: + name: http + sha256: d4872660c46d929f6b8a9ef4e7a7eff7e49bbf0c4ec3f385ee32df5119175139 + url: "https://pub.dev" + source: hosted + version: "1.1.2" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + image_cropper: + dependency: "direct main" + description: + name: image_cropper + sha256: f4bad5ed2dfff5a7ce0dfbad545b46a945c702bb6182a921488ef01ba7693111 + url: "https://pub.dev" + source: hosted + version: "5.0.1" + image_cropper_for_web: + dependency: transitive + description: + name: image_cropper_for_web + sha256: "865d798b5c9d826f1185b32e5d0018c4183ddb77b7b82a931e1a06aa3b74974e" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + image_cropper_platform_interface: + dependency: transitive + description: + name: image_cropper_platform_interface + sha256: ee160d686422272aa306125f3b6fb1c1894d9b87a5e20ed33fa008e7285da11e + url: "https://pub.dev" + source: hosted + version: "5.0.0" + image_picker: + dependency: "direct main" + description: + name: image_picker + sha256: fc712337719239b0b6e41316aa133350b078fa39b6cbd706b61f3fd421b03c77 + url: "https://pub.dev" + source: hosted + version: "1.0.5" + image_picker_android: + dependency: transitive + description: + name: image_picker_android + sha256: ecdc963d2aa67af5195e723a40580f802d4392e31457a12a562b3e2bd6a396fe + url: "https://pub.dev" + source: hosted + version: "0.8.9+1" + image_picker_for_web: + dependency: transitive + description: + name: image_picker_for_web + sha256: "50bc9ae6a77eea3a8b11af5eb6c661eeb858fdd2f734c2a4fd17086922347ef7" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + image_picker_ios: + dependency: transitive + description: + name: image_picker_ios + sha256: eac0a62104fa12feed213596df0321f57ce5a572562f72a68c4ff81e9e4caacf + url: "https://pub.dev" + source: hosted + version: "0.8.9" + image_picker_linux: + dependency: transitive + description: + name: image_picker_linux + sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + image_picker_macos: + dependency: transitive + description: + name: image_picker_macos + sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + image_picker_platform_interface: + dependency: transitive + description: + name: image_picker_platform_interface + sha256: ed9b00e63977c93b0d2d2b343685bed9c324534ba5abafbb3dfbd6a780b1b514 + url: "https://pub.dev" + source: hosted + version: "2.9.1" + image_picker_windows: + dependency: transitive + description: + name: image_picker_windows + sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + intl: + dependency: "direct main" + description: + name: intl + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + url: "https://pub.dev" + source: hosted + version: "0.18.1" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + js: + dependency: transitive + description: + name: js + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" + source: hosted + version: "0.6.7" + js_wrapping: + dependency: transitive + description: + name: js_wrapping + sha256: e385980f7c76a8c1c9a560dfb623b890975841542471eade630b2871d243851c + url: "https://pub.dev" + source: hosted + version: "0.7.4" + json_annotation: + dependency: "direct main" + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + json_serializable: + dependency: "direct dev" + description: + name: json_serializable + sha256: aa1f5a8912615733e0fdc7a02af03308933c93235bdc8d50d0b0c8a8ccb0b969 + url: "https://pub.dev" + source: hosted + version: "6.7.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "41b90ceaec6d79819f31e975e61d479516efe701dea35f891b2f986c1b031422" + url: "https://pub.dev" + source: hosted + version: "9.0.17" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "54808cfcfa87dbc0d74c61ac063d624adf1bd5c0407301f32b06c783c60dc4ca" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "7e71be3c161472f6c9158ac8875dd8de575060d60b5d159ebca3600ea32c9116" + url: "https://pub.dev" + source: hosted + version: "1.0.6" + lint: + dependency: "direct dev" + description: + name: lint + sha256: d758a5211fce7fd3f5e316f804daefecdc34c7e53559716125e6da7388ae8565 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + logging: + dependency: transitive + description: + name: logging + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + 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: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + url: "https://pub.dev" + source: hosted + version: "0.8.0" + meta: + dependency: transitive + description: + name: meta + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + mime: + dependency: transitive + description: + name: mime + sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e + url: "https://pub.dev" + source: hosted + version: "1.0.4" + mockito: + dependency: "direct main" + description: + name: mockito + sha256: "6841eed20a7befac0ce07df8116c8b8233ed1f4486a7647c7fc5a02ae6163917" + url: "https://pub.dev" + source: hosted + version: "5.4.4" + mocktail: + dependency: transitive + description: + name: mocktail + sha256: f603ebd85a576e5914870b02e5839fc5d0243b867bf710651cf239a28ebb365e + url: "https://pub.dev" + source: hosted + version: "1.0.2" + mocktail_image_network: + dependency: "direct dev" + description: + name: mocktail_image_network + sha256: "83e6b9fa3c6b0952636719f0444752d94c0ef7caa4172ca467d9c1b682aeddbb" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + network_image_mock: + dependency: "direct main" + description: + name: network_image_mock + sha256: "855cdd01d42440e0cffee0d6c2370909fc31b3bcba308a59829f24f64be42db7" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + nm: + dependency: transitive + description: + name: nm + sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + normalize: + dependency: transitive + description: + name: normalize + sha256: "8a60e37de5b608eeaf9b839273370c71ebba445e9f73b08eee7725e0d92dbc43" + url: "https://pub.dev" + source: hosted + version: "0.8.2+1" + octo_image: + dependency: transitive + description: + name: octo_image + sha256: "45b40f99622f11901238e18d48f5f12ea36426d8eced9f4cbf58479c7aa2430d" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" + source: hosted + version: "1.9.0" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf + url: "https://pub.dev" + source: hosted + version: "1.0.1" + path_provider: + dependency: "direct main" + description: + name: path_provider + sha256: a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa + url: "https://pub.dev" + source: hosted + version: "2.1.1" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d" + url: "https://pub.dev" + source: hosted + version: "2.3.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: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + permission_handler: + dependency: "direct main" + description: + name: permission_handler + sha256: "860c6b871c94c78e202dc69546d4d8fd84bd59faeb36f8fb9888668a53ff4f78" + url: "https://pub.dev" + source: hosted + version: "11.1.0" + permission_handler_android: + dependency: transitive + description: + name: permission_handler_android + sha256: "2f1bec180ee2f5665c22faada971a8f024761f632e93ddc23310487df52dcfa6" + url: "https://pub.dev" + source: hosted + version: "12.0.1" + permission_handler_apple: + dependency: transitive + description: + name: permission_handler_apple + sha256: "1a816084338ada8d574b1cb48390e6e8b19305d5120fe3a37c98825bacc78306" + url: "https://pub.dev" + source: hosted + version: "9.2.0" + permission_handler_html: + dependency: transitive + description: + name: permission_handler_html + sha256: "11b762a8c123dced6461933a88ea1edbbe036078c3f9f41b08886e678e7864df" + url: "https://pub.dev" + source: hosted + version: "0.1.0+2" + permission_handler_platform_interface: + dependency: transitive + description: + name: permission_handler_platform_interface + sha256: d87349312f7eaf6ce0adaf668daf700ac5b06af84338bd8b8574dfbd93ffe1a1 + url: "https://pub.dev" + source: hosted + version: "4.0.2" + permission_handler_windows: + dependency: transitive + description: + name: permission_handler_windows + sha256: "1e8640c1e39121128da6b816d236e714d2cf17fac5a105dd6acdd3403a628004" + url: "https://pub.dev" + source: hosted + version: "0.2.0" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + platform: + dependency: transitive + description: + name: platform + sha256: "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59" + url: "https://pub.dev" + source: hosted + version: "3.1.3" + plugin_platform_interface: + dependency: "direct main" + description: + name: plugin_platform_interface + sha256: f4f88d4a900933e7267e2b353594774fc0d07fb072b47eedcd5b54e1ea3269f8 + url: "https://pub.dev" + source: hosted + version: "2.1.7" + pointycastle: + dependency: "direct main" + description: + name: pointycastle + sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c" + url: "https://pub.dev" + source: hosted + version: "3.7.3" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + provider: + dependency: "direct main" + description: + name: provider + sha256: "9a96a0a19b594dbc5bf0f1f27d2bc67d5f95957359b461cd9feb44ed6ae75096" + url: "https://pub.dev" + source: hosted + version: "6.1.1" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + qr: + dependency: transitive + description: + name: qr + sha256: "64957a3930367bf97cc211a5af99551d630f2f4625e38af10edd6b19131b64b3" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + qr_code_scanner: + dependency: "direct main" + description: + name: qr_code_scanner + sha256: f23b68d893505a424f0bd2e324ebea71ed88465d572d26bb8d2e78a4749591fd + url: "https://pub.dev" + source: hosted + version: "1.0.1" + qr_flutter: + dependency: "direct main" + description: + name: qr_flutter + sha256: "5095f0fc6e3f71d08adef8feccc8cea4f12eec18a2e31c2e8d82cb6019f4b097" + url: "https://pub.dev" + source: hosted + version: "4.1.0" + quick_actions: + dependency: "direct main" + description: + name: quick_actions + sha256: "3930e1cf78a0574495b4ea741ee197323c4a9081321d6ae384b3bfcd84c7ea83" + url: "https://pub.dev" + source: hosted + version: "1.0.6" + quick_actions_android: + dependency: transitive + description: + name: quick_actions_android + sha256: df67c20583e05f5038a24c47bfa1b7b2977703ec2d162663017c5f9ef8707699 + url: "https://pub.dev" + source: hosted + version: "1.0.9" + quick_actions_ios: + dependency: transitive + description: + name: quick_actions_ios + sha256: "5a13ed27b6254184fdd4294e100e3172fa6ebfd8bea03e414634a0f760d49997" + url: "https://pub.dev" + source: hosted + version: "1.0.8" + quick_actions_platform_interface: + dependency: transitive + description: + name: quick_actions_platform_interface + sha256: d2a8566b56eec49f93934528b62033906199c60f4ffaef0cba9ef02fcfed8a81 + url: "https://pub.dev" + source: hosted + version: "1.0.5" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" + url: "https://pub.dev" + source: hosted + version: "0.27.7" + sanitize_html: + dependency: transitive + description: + name: sanitize_html + sha256: "12669c4a913688a26555323fb9cec373d8f9fbe091f2d01c40c723b33caa8989" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + sha256: "81429e4481e1ccfb51ede496e916348668fd0921627779233bd24cc3ff6abd02" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7" + url: "https://pub.dev" + source: hosted + version: "2.3.4" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a + url: "https://pub.dev" + source: hosted + version: "2.3.1" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + shimmer: + dependency: "direct main" + 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.99" + social_share: + dependency: "direct main" + description: + name: social_share + sha256: eb19a0f6f5a29c7bb71e5bb1991145eb52472184363b6e2da70695befd8be041 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + source_gen: + dependency: transitive + description: + name: source_gen + sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" + url: "https://pub.dev" + source: hosted + version: "1.5.0" + source_helper: + dependency: transitive + description: + name: source_helper + sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd" + url: "https://pub.dev" + source: hosted + version: "1.3.4" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + 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: "591f1602816e9c31377d5f008c2d9ef7b8aca8941c3f89cc5fd9d84da0c38a9a" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + sha256: bb4738f15b23352822f4c42a531677e5c6f522e079461fd240ead29d8d8a54a6 + url: "https://pub.dev" + source: hosted + version: "2.5.0+2" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + syncfusion_flutter_calendar: + dependency: "direct main" + description: + name: syncfusion_flutter_calendar + sha256: b31182b348742b0f2285849179490afd89e321514b8e0eadeab6d7377373c9f2 + url: "https://pub.dev" + source: hosted + version: "24.1.43" + syncfusion_flutter_core: + dependency: transitive + description: + name: syncfusion_flutter_core + sha256: "1b40729aa10a727150a6cc56e532c770f4baded83846fca8700efd908d0f4d0a" + url: "https://pub.dev" + source: hosted + version: "24.1.43" + syncfusion_flutter_datepicker: + dependency: "direct main" + description: + name: syncfusion_flutter_datepicker + sha256: "3f9a8e8b585dd992d2321c899ec8d914634fb99eba02cf7a91c48a098bf62820" + url: "https://pub.dev" + source: hosted + version: "24.1.43" + synchronized: + dependency: transitive + description: + name: synchronized + sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" + url: "https://pub.dev" + source: hosted + version: "3.1.0+1" + talawa_lint: + dependency: "direct dev" + description: + path: talawa_lint + relative: true + source: path + version: "0.0.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: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" + source: hosted + version: "0.6.1" + timelines: + dependency: "direct main" + description: + name: timelines + sha256: "40214f5ab772ff45459cb8c15e5f60505a6828af0c0eb1eec6f29ed911a4c1c5" + url: "https://pub.dev" + source: hosted + version: "0.1.0" + timezone: + dependency: transitive + description: + name: timezone + sha256: "1cfd8ddc2d1cfd836bc93e67b9be88c3adaeca6f40a00ca999104c30693cdca0" + url: "https://pub.dev" + source: hosted + version: "0.9.2" + timing: + dependency: transitive + description: + name: timing + sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + tutorial_coach_mark: + dependency: "direct main" + description: + name: tutorial_coach_mark + sha256: "1f1fd234790afb929dec7391a4d90aa54ffe8c8e4d278d9283df8e3f5ac5d63e" + url: "https://pub.dev" + source: hosted + version: "1.2.11" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + uni_links: + dependency: "direct main" + description: + name: uni_links + sha256: "051098acfc9e26a9fde03b487bef5d3d228ca8f67693480c6f33fd4fbb8e2b6e" + url: "https://pub.dev" + source: hosted + version: "0.5.1" + uni_links_platform_interface: + dependency: transitive + description: + name: uni_links_platform_interface + sha256: "929cf1a71b59e3b7c2d8a2605a9cf7e0b125b13bc858e55083d88c62722d4507" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + uni_links_web: + dependency: transitive + description: + name: uni_links_web + sha256: "7539db908e25f67de2438e33cc1020b30ab94e66720b5677ba6763b25f6394df" + url: "https://pub.dev" + source: hosted + version: "0.1.0" + uuid: + dependency: transitive + description: + name: uuid + sha256: bb55f38968b9427ce5dcdb8aaaa41049282195e0cfa4cf48593572fa3d1f36bc + url: "https://pub.dev" + source: hosted + version: "4.3.1" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: "0f0c746dd2d6254a0057218ff980fc7f5670fd0fcf5e4db38a490d31eed4ad43" + url: "https://pub.dev" + source: hosted + version: "1.1.9+1" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: "0edf6d630d1bfd5589114138ed8fada3234deacc37966bec033d3047c29248b7" + url: "https://pub.dev" + source: hosted + version: "1.1.9+1" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: d24333727332d9bd20990f1483af4e09abdb9b1fc7c3db940b56ab5c42790c26 + url: "https://pub.dev" + source: hosted + version: "1.1.9+1" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + vibration: + dependency: "direct main" + description: + name: vibration + sha256: "778ace40e84852e6cf6017cdbaf6790a837d73ff3dd50b27da9ac232a19de8fc" + url: "https://pub.dev" + source: hosted + version: "1.8.4" + video_player: + dependency: "direct main" + description: + name: video_player + sha256: e16f0a83601a78d165dabc17e4dac50997604eb9e4cc76e10fa219046b70cef3 + url: "https://pub.dev" + source: hosted + version: "2.8.1" + video_player_android: + dependency: transitive + description: + name: video_player_android + sha256: "3fe89ab07fdbce786e7eb25b58532d6eaf189ceddc091cb66cba712f8d9e8e55" + url: "https://pub.dev" + source: hosted + version: "2.4.10" + video_player_avfoundation: + dependency: transitive + description: + name: video_player_avfoundation + sha256: "01a57940e1dabc8769ccd457c4ae9ea50274e7d5a7617f7820dae5fe1d8436ae" + url: "https://pub.dev" + source: hosted + version: "2.5.3" + video_player_platform_interface: + dependency: transitive + description: + name: video_player_platform_interface + sha256: be72301bf2c0150ab35a8c34d66e5a99de525f6de1e8d27c0672b836fe48f73a + url: "https://pub.dev" + source: hosted + version: "6.2.1" + video_player_web: + dependency: transitive + description: + name: video_player_web + sha256: ab7a462b07d9ca80bed579e30fb3bce372468f1b78642e0911b10600f2c5cb5b + url: "https://pub.dev" + source: hosted + version: "2.1.2" + visibility_detector: + dependency: "direct main" + description: + name: visibility_detector + sha256: dd5cc11e13494f432d15939c3aa8ae76844c42b723398643ce9addb88a5ed420 + url: "https://pub.dev" + source: hosted + version: "0.4.0+2" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + url: "https://pub.dev" + source: hosted + version: "13.0.0" + watcher: + dependency: transitive + description: + name: watcher + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web: + dependency: transitive + description: + name: web + sha256: edc8a9573dd8c5a83a183dae1af2b6fd4131377404706ca4e5420474784906fa + url: "https://pub.dev" + source: hosted + version: "0.4.0" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: "045ec2137c27bf1a32e6ffa0e734d532a6677bf9016a0d1a406c54e499ff945b" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + win32: + dependency: transitive + description: + name: win32 + sha256: b0f37db61ba2f2e9b7a78a1caece0052564d1bc70668156cf3a29d676fe4e574 + url: "https://pub.dev" + source: hosted + version: "5.1.1" + win32_registry: + dependency: transitive + description: + name: win32_registry + sha256: "41fd8a189940d8696b1b810efb9abcf60827b6cbfab90b0c43e8439e3a39d85a" + url: "https://pub.dev" + source: hosted + version: "1.1.2" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + 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: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" +sdks: + dart: ">=3.2.0 <3.13.0" + flutter: ">=3.16.0" From 0b81dfb27f6c96bab76bc3e3178ca8db6bcc408b Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Wed, 3 Jan 2024 17:53:49 +0530 Subject: [PATCH 04/17] removed pubspec.lock --- pubspec.lock | 1870 -------------------------------------------------- 1 file changed, 1870 deletions(-) delete mode 100644 pubspec.lock diff --git a/pubspec.lock b/pubspec.lock deleted file mode 100644 index 038e783de4..0000000000 --- a/pubspec.lock +++ /dev/null @@ -1,1870 +0,0 @@ -# Generated by pub -# See https://dart.dev/tools/pub/glossary#lockfile -packages: - _discoveryapis_commons: - dependency: transitive - description: - name: _discoveryapis_commons - sha256: f8bb1fdbd77f3d5c1d62b5b0eca75fbf1e41bf4f6c62628f880582e2182ae45d - url: "https://pub.dev" - source: hosted - version: "1.0.6" - _fe_analyzer_shared: - dependency: transitive - description: - name: _fe_analyzer_shared - sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a - url: "https://pub.dev" - source: hosted - version: "61.0.0" - _flutterfire_internals: - dependency: transitive - description: - name: _flutterfire_internals - sha256: f5628cd9c92ed11083f425fd1f8f1bc60ecdda458c81d73b143aeda036c35fe7 - url: "https://pub.dev" - source: hosted - version: "1.3.16" - analyzer: - dependency: transitive - description: - name: analyzer - sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562 - url: "https://pub.dev" - source: hosted - version: "5.13.0" - analyzer_plugin: - dependency: transitive - description: - name: analyzer_plugin - sha256: c1d5f167683de03d5ab6c3b53fc9aeefc5d59476e7810ba7bbddff50c6f4392d - url: "https://pub.dev" - source: hosted - version: "0.11.2" - args: - dependency: transitive - description: - name: args - sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 - url: "https://pub.dev" - source: hosted - version: "2.4.2" - async: - dependency: transitive - description: - name: async - sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" - url: "https://pub.dev" - source: hosted - version: "2.11.0" - auto_size_text: - dependency: "direct main" - description: - name: auto_size_text - sha256: "3f5261cd3fb5f2a9ab4e2fc3fba84fd9fcaac8821f20a1d4e71f557521b22599" - url: "https://pub.dev" - source: hosted - version: "3.0.0" - boolean_selector: - dependency: transitive - description: - name: boolean_selector - sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - build: - dependency: transitive - description: - name: build - sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" - url: "https://pub.dev" - source: hosted - version: "2.4.1" - build_config: - dependency: transitive - description: - name: build_config - sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 - url: "https://pub.dev" - source: hosted - version: "1.1.1" - build_daemon: - dependency: transitive - description: - name: build_daemon - sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" - url: "https://pub.dev" - source: hosted - version: "4.0.1" - build_resolvers: - dependency: transitive - description: - name: build_resolvers - sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" - url: "https://pub.dev" - source: hosted - version: "2.4.2" - build_runner: - dependency: "direct dev" - description: - name: build_runner - sha256: "67d591d602906ef9201caf93452495ad1812bea2074f04e25dbd7c133785821b" - url: "https://pub.dev" - source: hosted - version: "2.4.7" - build_runner_core: - dependency: transitive - description: - name: build_runner_core - sha256: c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185 - url: "https://pub.dev" - source: hosted - version: "7.2.11" - built_collection: - dependency: transitive - description: - name: built_collection - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" - url: "https://pub.dev" - source: hosted - version: "5.1.1" - built_value: - dependency: transitive - description: - name: built_value - sha256: c9aabae0718ec394e5bc3c7272e6bb0dc0b32201a08fe185ec1d8401d3e39309 - url: "https://pub.dev" - source: hosted - version: "8.8.1" - cached_network_image: - dependency: "direct main" - description: - name: cached_network_image - sha256: "28ea9690a8207179c319965c13cd8df184d5ee721ae2ce60f398ced1219cea1f" - url: "https://pub.dev" - source: hosted - version: "3.3.1" - cached_network_image_platform_interface: - dependency: transitive - description: - name: cached_network_image_platform_interface - sha256: "9e90e78ae72caa874a323d78fa6301b3fb8fa7ea76a8f96dc5b5bf79f283bf2f" - url: "https://pub.dev" - source: hosted - version: "4.0.0" - cached_network_image_web: - dependency: transitive - description: - name: cached_network_image_web - sha256: "42a835caa27c220d1294311ac409a43361088625a4f23c820b006dd9bffb3316" - url: "https://pub.dev" - source: hosted - version: "1.1.1" - characters: - dependency: transitive - description: - name: characters - sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" - url: "https://pub.dev" - source: hosted - version: "1.3.0" - checked_yaml: - dependency: transitive - description: - name: checked_yaml - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff - url: "https://pub.dev" - source: hosted - version: "2.0.3" - ci: - dependency: transitive - description: - name: ci - sha256: "145d095ce05cddac4d797a158bc4cf3b6016d1fe63d8c3d2fbd7212590adca13" - url: "https://pub.dev" - source: hosted - version: "0.1.0" - cli_util: - dependency: transitive - description: - name: cli_util - sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 - url: "https://pub.dev" - source: hosted - version: "0.4.1" - clock: - dependency: transitive - description: - name: clock - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf - url: "https://pub.dev" - source: hosted - version: "1.1.1" - code_builder: - dependency: transitive - description: - name: code_builder - sha256: feee43a5c05e7b3199bb375a86430b8ada1b04104f2923d0e03cc01ca87b6d84 - url: "https://pub.dev" - source: hosted - version: "4.9.0" - collection: - dependency: transitive - description: - name: collection - sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a - url: "https://pub.dev" - source: hosted - version: "1.18.0" - connectivity_plus: - dependency: "direct main" - description: - name: connectivity_plus - sha256: "224a77051d52a11fbad53dd57827594d3bd24f945af28bd70bab376d68d437f0" - url: "https://pub.dev" - source: hosted - version: "5.0.2" - connectivity_plus_platform_interface: - dependency: transitive - description: - name: connectivity_plus_platform_interface - sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a - url: "https://pub.dev" - source: hosted - version: "1.2.4" - contained_tab_bar_view: - dependency: "direct main" - description: - name: contained_tab_bar_view - sha256: "87e35f47992764e45ab6205493f2f90c1e3fac4ad84f2b2285b73414727b756e" - url: "https://pub.dev" - source: hosted - version: "0.8.0" - container_tab_indicator: - dependency: transitive - description: - name: container_tab_indicator - sha256: b0bdd73bb495c31c5711cefa363511b10bb3ebcfc007b603a2599401ebe6b2d9 - url: "https://pub.dev" - source: hosted - version: "0.3.0" - convert: - dependency: transitive - description: - name: convert - sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" - url: "https://pub.dev" - source: hosted - version: "3.1.1" - cross_file: - dependency: transitive - description: - name: cross_file - sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e - url: "https://pub.dev" - source: hosted - version: "0.3.3+8" - crypto: - dependency: "direct main" - description: - name: crypto - sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab - url: "https://pub.dev" - source: hosted - version: "3.0.3" - csslib: - dependency: transitive - description: - name: csslib - sha256: "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - cupertino_icons: - dependency: "direct main" - description: - name: cupertino_icons - sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d - url: "https://pub.dev" - source: hosted - version: "1.0.6" - currency_picker: - dependency: "direct main" - description: - name: currency_picker - sha256: eb75deb7bc92e3f31e1b8ad4efacf71371e8e49d7a0eebd1c1a8e9fae58cc23d - url: "https://pub.dev" - source: hosted - version: "2.0.20" - custom_lint: - dependency: "direct dev" - description: - name: custom_lint - sha256: "198ec6b8e084d22f508a76556c9afcfb71706ad3f42b083fe0ee923351a96d90" - url: "https://pub.dev" - source: hosted - version: "0.5.7" - custom_lint_builder: - dependency: transitive - description: - name: custom_lint_builder - sha256: dfcfa987d2bd9d0ba751ef4bdef0f6c1aa0062f2a67fe716fd5f3f8b709d6418 - url: "https://pub.dev" - source: hosted - version: "0.5.7" - custom_lint_core: - dependency: transitive - description: - name: custom_lint_core - sha256: f84c3fe2f27ef3b8831953e477e59d4a29c2952623f9eac450d7b40d9cdd94cc - url: "https://pub.dev" - source: hosted - version: "0.5.7" - dart_style: - dependency: transitive - description: - name: dart_style - sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" - url: "https://pub.dev" - source: hosted - version: "2.3.2" - dbus: - dependency: transitive - description: - name: dbus - sha256: "365c771ac3b0e58845f39ec6deebc76e3276aa9922b0cc60840712094d9047ac" - url: "https://pub.dev" - source: hosted - version: "0.7.10" - device_info_plus: - dependency: transitive - description: - name: device_info_plus - sha256: "0042cb3b2a76413ea5f8a2b40cec2a33e01d0c937e91f0f7c211fde4f7739ba6" - url: "https://pub.dev" - source: hosted - version: "9.1.1" - device_info_plus_platform_interface: - dependency: transitive - description: - name: device_info_plus_platform_interface - sha256: d3b01d5868b50ae571cd1dc6e502fc94d956b665756180f7b16ead09e836fd64 - url: "https://pub.dev" - source: hosted - version: "7.0.0" - fake_async: - dependency: transitive - description: - name: fake_async - sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" - url: "https://pub.dev" - source: hosted - version: "1.3.1" - ffi: - dependency: transitive - description: - name: ffi - sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - file: - dependency: "direct main" - description: - name: file - sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" - url: "https://pub.dev" - source: hosted - version: "7.0.0" - file_selector_linux: - dependency: transitive - description: - name: file_selector_linux - sha256: "045d372bf19b02aeb69cacf8b4009555fb5f6f0b7ad8016e5f46dd1387ddd492" - url: "https://pub.dev" - source: hosted - version: "0.9.2+1" - file_selector_macos: - dependency: transitive - description: - name: file_selector_macos - sha256: b15c3da8bd4908b9918111fa486903f5808e388b8d1c559949f584725a6594d6 - url: "https://pub.dev" - source: hosted - version: "0.9.3+3" - file_selector_platform_interface: - dependency: transitive - description: - name: file_selector_platform_interface - sha256: "0aa47a725c346825a2bd396343ce63ac00bda6eff2fbc43eabe99737dede8262" - url: "https://pub.dev" - source: hosted - version: "2.6.1" - file_selector_windows: - dependency: transitive - description: - name: file_selector_windows - sha256: d3547240c20cabf205c7c7f01a50ecdbc413755814d6677f3cb366f04abcead0 - url: "https://pub.dev" - source: hosted - version: "0.9.3+1" - firebase_core: - dependency: "direct main" - description: - name: firebase_core - sha256: "96607c0e829a581c2a483c658f04e8b159964c3bae2730f73297070bc85d40bb" - url: "https://pub.dev" - source: hosted - version: "2.24.2" - firebase_core_platform_interface: - dependency: "direct main" - description: - name: firebase_core_platform_interface - sha256: c437ae5d17e6b5cc7981cf6fd458a5db4d12979905f9aafd1fea930428a9fe63 - url: "https://pub.dev" - source: hosted - version: "5.0.0" - firebase_core_web: - dependency: transitive - description: - name: firebase_core_web - sha256: d585bdf3c656c3f7821ba1bd44da5f13365d22fcecaf5eb75c4295246aaa83c0 - url: "https://pub.dev" - source: hosted - version: "2.10.0" - firebase_messaging: - dependency: "direct main" - description: - name: firebase_messaging - sha256: "199fe8186a5370d1cf5ce0819191079afc305914e8f38715f5e23943940dfe2d" - url: "https://pub.dev" - source: hosted - version: "14.7.9" - firebase_messaging_platform_interface: - dependency: "direct main" - description: - name: firebase_messaging_platform_interface - sha256: "54e283a0e41d81d854636ad0dad73066adc53407a60a7c3189c9656e2f1b6107" - url: "https://pub.dev" - source: hosted - version: "4.5.18" - firebase_messaging_web: - dependency: transitive - description: - name: firebase_messaging_web - sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4" - url: "https://pub.dev" - source: hosted - version: "3.5.18" - fixnum: - dependency: transitive - description: - name: fixnum - sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" - url: "https://pub.dev" - source: hosted - version: "1.1.0" - flutter: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_braintree: - dependency: "direct main" - description: - name: flutter_braintree - sha256: d364251cf57c028e8481869222d571c90df819ae234d9fb349713c4ffa25ba96 - url: "https://pub.dev" - source: hosted - version: "3.0.0" - flutter_cache_manager: - dependency: "direct main" - description: - name: flutter_cache_manager - sha256: "8207f27539deb83732fdda03e259349046a39a4c767269285f449ade355d54ba" - url: "https://pub.dev" - source: hosted - version: "3.3.1" - flutter_hooks: - dependency: transitive - description: - name: flutter_hooks - sha256: "09f64db63fee3b2ab8b9038a1346be7d8986977fae3fec601275bf32455ccfc0" - url: "https://pub.dev" - source: hosted - version: "0.20.4" - flutter_local_notifications: - dependency: "direct main" - description: - name: flutter_local_notifications - sha256: "892ada16046d641263f30c72e7432397088810a84f34479f6677494802a2b535" - url: "https://pub.dev" - source: hosted - version: "16.3.0" - flutter_local_notifications_linux: - dependency: transitive - description: - name: flutter_local_notifications_linux - sha256: "33f741ef47b5f63cc7f78fe75eeeac7e19f171ff3c3df054d84c1e38bedb6a03" - url: "https://pub.dev" - source: hosted - version: "4.0.0+1" - flutter_local_notifications_platform_interface: - dependency: transitive - description: - name: flutter_local_notifications_platform_interface - sha256: "7cf643d6d5022f3baed0be777b0662cce5919c0a7b86e700299f22dc4ae660ef" - url: "https://pub.dev" - source: hosted - version: "7.0.0+1" - flutter_localizations: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_plugin_android_lifecycle: - dependency: transitive - description: - name: flutter_plugin_android_lifecycle - sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da - url: "https://pub.dev" - source: hosted - version: "2.0.17" - flutter_reaction_button: - dependency: "direct main" - description: - name: flutter_reaction_button - sha256: "9fe67f6e6dac65c5ee864c2ab03550b25e7fc82b9a800c885a87f85abe2c03c6" - url: "https://pub.dev" - source: hosted - version: "3.0.0+3" - flutter_speed_dial: - dependency: "direct main" - description: - name: flutter_speed_dial - sha256: "698a037274a66dbae8697c265440e6acb6ab6cae9ac5f95c749e7944d8f28d41" - url: "https://pub.dev" - source: hosted - version: "7.0.0" - flutter_svg: - dependency: "direct main" - description: - name: flutter_svg - sha256: d39e7f95621fc84376bc0f7d504f05c3a41488c562f4a8ad410569127507402c - url: "https://pub.dev" - source: hosted - version: "2.0.9" - 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" - font_awesome_flutter: - dependency: "direct main" - description: - name: font_awesome_flutter - sha256: "52671aea66da73b58d42ec6d0912b727a42248dd9a7c76d6c20f275783c48c08" - url: "https://pub.dev" - source: hosted - version: "10.6.0" - freezed_annotation: - dependency: transitive - description: - name: freezed_annotation - sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d - url: "https://pub.dev" - source: hosted - version: "2.4.1" - frontend_server_client: - dependency: transitive - description: - name: frontend_server_client - sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" - url: "https://pub.dev" - source: hosted - version: "3.2.0" - geocoding: - dependency: "direct main" - description: - name: geocoding - sha256: e1dc0ac56666d9ed1d5a9ae5543ce9eb5986db6209cc7600103487d09192059c - url: "https://pub.dev" - source: hosted - version: "2.1.1" - geocoding_android: - dependency: transitive - description: - name: geocoding_android - sha256: "609db1d71bc364dd9d0616f72a41c01e0c74f3a3807efb85e0d5a67e57baf50f" - url: "https://pub.dev" - source: hosted - version: "2.1.2" - geocoding_ios: - dependency: transitive - description: - name: geocoding_ios - sha256: "8f79e380abb640ef4d88baee8bb65390058c802601158d0813dc990b36b189d2" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - geocoding_platform_interface: - dependency: transitive - description: - name: geocoding_platform_interface - sha256: "8848605d307d844d89937cdb4b8ad7dfa880552078f310fa24d8a460f6dddab4" - url: "https://pub.dev" - source: hosted - version: "2.0.1" - geolocator: - dependency: "direct main" - description: - name: geolocator - sha256: e946395fc608842bb2f6c914807e9183f86f3cb787f6b8f832753e5251036f02 - url: "https://pub.dev" - source: hosted - version: "10.1.0" - geolocator_android: - dependency: transitive - description: - name: geolocator_android - sha256: "741579fa6c9e412984d2bdb2fbaa54e3c3f7587c60aeacfe6e058358a11f40f8" - url: "https://pub.dev" - source: hosted - version: "4.4.0" - geolocator_apple: - dependency: transitive - description: - name: geolocator_apple - sha256: "1d938e2462cc5145c1402f89d49e70b60a2a51b89fb57414ced71417f1f479b1" - url: "https://pub.dev" - source: hosted - version: "2.3.3" - geolocator_platform_interface: - dependency: transitive - description: - name: geolocator_platform_interface - sha256: "6c8d494d6948757c56720b778af742f6973f31fca1f702a7539b8917e4a2468a" - url: "https://pub.dev" - source: hosted - version: "4.2.0" - geolocator_web: - dependency: transitive - description: - name: geolocator_web - sha256: "59083f7e0871b78299918d92bf930a14377f711d2d1156c558cd5ebae6c20d58" - url: "https://pub.dev" - source: hosted - version: "2.2.0" - geolocator_windows: - dependency: transitive - description: - name: geolocator_windows - sha256: a92fae29779d5c6dc60e8411302f5221ade464968fe80a36d330e80a71f087af - url: "https://pub.dev" - source: hosted - version: "0.2.2" - get_it: - dependency: "direct main" - description: - name: get_it - sha256: f79870884de16d689cf9a7d15eedf31ed61d750e813c538a6efb92660fea83c3 - url: "https://pub.dev" - source: hosted - version: "7.6.4" - glob: - dependency: transitive - description: - name: glob - sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" - url: "https://pub.dev" - source: hosted - version: "2.1.2" - google_maps: - dependency: transitive - description: - name: google_maps - sha256: "555d5d736339b0478e821167ac521c810d7b51c3b2734e6802a9f046b64ea37a" - url: "https://pub.dev" - source: hosted - version: "6.3.0" - google_maps_flutter: - dependency: "direct main" - description: - name: google_maps_flutter - sha256: d4914cb38b3dcb62c39c085d968d434de0f8050f00f4d9f5ba4a7c7e004934cb - url: "https://pub.dev" - source: hosted - version: "2.5.0" - google_maps_flutter_android: - dependency: transitive - description: - name: google_maps_flutter_android - sha256: "4279a338b79288fad5c8b03e5ae6ec30888bff210e0bab10b1f31f31e5a90558" - url: "https://pub.dev" - source: hosted - version: "2.6.0" - google_maps_flutter_ios: - dependency: transitive - description: - name: google_maps_flutter_ios - sha256: "6ad65362aeeeda44b7c2c807e36bf578ef4b1c163882e085bdb040bf2934b246" - url: "https://pub.dev" - source: hosted - version: "2.3.3" - google_maps_flutter_platform_interface: - dependency: transitive - description: - name: google_maps_flutter_platform_interface - sha256: a3e9e6896501e566d902c6c69f010834d410ef4b7b5c18b90c77e871c86b7907 - url: "https://pub.dev" - source: hosted - version: "2.4.1" - google_maps_flutter_web: - dependency: transitive - description: - name: google_maps_flutter_web - sha256: f893d1542c6562bc8299ef768fbbe92ade83c220ab3209b9477ec9f81ad585e4 - url: "https://pub.dev" - source: hosted - version: "0.5.4+2" - googleapis: - dependency: "direct main" - description: - name: googleapis - sha256: "8a8c311723162af077ca73f94b823b97ff68770d966e29614d20baca9fdb490a" - url: "https://pub.dev" - source: hosted - version: "12.0.0" - gql: - dependency: transitive - description: - name: gql - sha256: f57eb635aa2f134ced585584f3d53006816f1fdd909480bb7626a1d41063ce25 - url: "https://pub.dev" - source: hosted - version: "1.0.1-alpha+1704118137418" - gql_dedupe_link: - dependency: transitive - description: - name: gql_dedupe_link - sha256: d0ba6388a52dab95e7e9a9fa3fec43c11172d3d3feda21bf88df39427c8e282f - url: "https://pub.dev" - source: hosted - version: "2.0.4-alpha+1704118137496" - gql_error_link: - dependency: transitive - description: - name: gql_error_link - sha256: "93901458f3c050e33386dedb0ca7173e08cebd7078e4e0deca4bf23ab7a71f63" - url: "https://pub.dev" - source: hosted - version: "1.0.0+1" - gql_exec: - dependency: transitive - description: - name: gql_exec - sha256: "394944626fae900f1d34343ecf2d62e44eb984826189c8979d305f0ae5846e38" - url: "https://pub.dev" - source: hosted - version: "1.1.1-alpha+1699813812660" - gql_http_link: - dependency: transitive - description: - name: gql_http_link - sha256: "1f922eed1b7078fdbfd602187663026f9f659fe9a9499e2207b5d5e01617f658" - url: "https://pub.dev" - source: hosted - version: "1.0.1+1" - gql_link: - dependency: transitive - description: - name: gql_link - sha256: "4cce5019a2ce727023a5e5f9763a9ff85b2770801b10a51738a10472ae779786" - url: "https://pub.dev" - source: hosted - version: "1.0.1-alpha+1704118137432" - gql_transform_link: - dependency: transitive - description: - name: gql_transform_link - sha256: "0645fdd874ca1be695fd327271fdfb24c0cd6fa40774a64b946062f321a59709" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - graphql: - dependency: transitive - description: - name: graphql - sha256: d066e53446166c12537458386b507f7426f2b8801ebafc184576aab3cbc64d56 - url: "https://pub.dev" - source: hosted - version: "5.2.0-beta.7" - graphql_flutter: - dependency: "direct main" - description: - name: graphql_flutter - sha256: "39b5e830bc654ab02c5b776c31675841d1a8c95840fdd284efba713b1d47e65d" - url: "https://pub.dev" - source: hosted - version: "5.2.0-beta.6" - graphs: - dependency: transitive - description: - name: graphs - sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 - url: "https://pub.dev" - source: hosted - version: "2.3.1" - hive: - dependency: "direct main" - description: - name: hive - sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941" - url: "https://pub.dev" - source: hosted - version: "2.2.3" - hive_generator: - dependency: "direct dev" - description: - name: hive_generator - sha256: "06cb8f58ace74de61f63500564931f9505368f45f98958bd7a6c35ba24159db4" - url: "https://pub.dev" - source: hosted - version: "2.0.1" - hotreloader: - dependency: transitive - description: - name: hotreloader - sha256: "94ee21a60ea2836500799f3af035dc3212b1562027f1e0031c14e087f0231449" - url: "https://pub.dev" - source: hosted - version: "4.1.0" - html: - dependency: transitive - description: - name: html - sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a" - url: "https://pub.dev" - source: hosted - version: "0.15.4" - http: - dependency: "direct main" - description: - name: http - sha256: d4872660c46d929f6b8a9ef4e7a7eff7e49bbf0c4ec3f385ee32df5119175139 - url: "https://pub.dev" - source: hosted - version: "1.1.2" - http_multi_server: - dependency: transitive - description: - name: http_multi_server - sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" - url: "https://pub.dev" - source: hosted - version: "3.2.1" - http_parser: - dependency: transitive - description: - name: http_parser - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" - url: "https://pub.dev" - source: hosted - version: "4.0.2" - image_cropper: - dependency: "direct main" - description: - name: image_cropper - sha256: f4bad5ed2dfff5a7ce0dfbad545b46a945c702bb6182a921488ef01ba7693111 - url: "https://pub.dev" - source: hosted - version: "5.0.1" - image_cropper_for_web: - dependency: transitive - description: - name: image_cropper_for_web - sha256: "865d798b5c9d826f1185b32e5d0018c4183ddb77b7b82a931e1a06aa3b74974e" - url: "https://pub.dev" - source: hosted - version: "3.0.0" - image_cropper_platform_interface: - dependency: transitive - description: - name: image_cropper_platform_interface - sha256: ee160d686422272aa306125f3b6fb1c1894d9b87a5e20ed33fa008e7285da11e - url: "https://pub.dev" - source: hosted - version: "5.0.0" - image_picker: - dependency: "direct main" - description: - name: image_picker - sha256: fc712337719239b0b6e41316aa133350b078fa39b6cbd706b61f3fd421b03c77 - url: "https://pub.dev" - source: hosted - version: "1.0.5" - image_picker_android: - dependency: transitive - description: - name: image_picker_android - sha256: ecdc963d2aa67af5195e723a40580f802d4392e31457a12a562b3e2bd6a396fe - url: "https://pub.dev" - source: hosted - version: "0.8.9+1" - image_picker_for_web: - dependency: transitive - description: - name: image_picker_for_web - sha256: "50bc9ae6a77eea3a8b11af5eb6c661eeb858fdd2f734c2a4fd17086922347ef7" - url: "https://pub.dev" - source: hosted - version: "3.0.1" - image_picker_ios: - dependency: transitive - description: - name: image_picker_ios - sha256: eac0a62104fa12feed213596df0321f57ce5a572562f72a68c4ff81e9e4caacf - url: "https://pub.dev" - source: hosted - version: "0.8.9" - image_picker_linux: - dependency: transitive - description: - name: image_picker_linux - sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa" - url: "https://pub.dev" - source: hosted - version: "0.2.1+1" - image_picker_macos: - dependency: transitive - description: - name: image_picker_macos - sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62" - url: "https://pub.dev" - source: hosted - version: "0.2.1+1" - image_picker_platform_interface: - dependency: transitive - description: - name: image_picker_platform_interface - sha256: ed9b00e63977c93b0d2d2b343685bed9c324534ba5abafbb3dfbd6a780b1b514 - url: "https://pub.dev" - source: hosted - version: "2.9.1" - image_picker_windows: - dependency: transitive - description: - name: image_picker_windows - sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" - url: "https://pub.dev" - source: hosted - version: "0.2.1+1" - intl: - dependency: "direct main" - description: - name: intl - sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" - url: "https://pub.dev" - source: hosted - version: "0.18.1" - io: - dependency: transitive - description: - name: io - sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" - url: "https://pub.dev" - source: hosted - version: "1.0.4" - js: - dependency: transitive - description: - name: js - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 - url: "https://pub.dev" - source: hosted - version: "0.6.7" - js_wrapping: - dependency: transitive - description: - name: js_wrapping - sha256: e385980f7c76a8c1c9a560dfb623b890975841542471eade630b2871d243851c - url: "https://pub.dev" - source: hosted - version: "0.7.4" - json_annotation: - dependency: "direct main" - description: - name: json_annotation - sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 - url: "https://pub.dev" - source: hosted - version: "4.8.1" - json_serializable: - dependency: "direct dev" - description: - name: json_serializable - sha256: aa1f5a8912615733e0fdc7a02af03308933c93235bdc8d50d0b0c8a8ccb0b969 - url: "https://pub.dev" - source: hosted - version: "6.7.1" - leak_tracker: - dependency: transitive - description: - name: leak_tracker - sha256: "41b90ceaec6d79819f31e975e61d479516efe701dea35f891b2f986c1b031422" - url: "https://pub.dev" - source: hosted - version: "9.0.17" - leak_tracker_flutter_testing: - dependency: transitive - description: - name: leak_tracker_flutter_testing - sha256: "54808cfcfa87dbc0d74c61ac063d624adf1bd5c0407301f32b06c783c60dc4ca" - url: "https://pub.dev" - source: hosted - version: "2.0.0" - leak_tracker_testing: - dependency: transitive - description: - name: leak_tracker_testing - sha256: "7e71be3c161472f6c9158ac8875dd8de575060d60b5d159ebca3600ea32c9116" - url: "https://pub.dev" - source: hosted - version: "1.0.6" - lint: - dependency: "direct dev" - description: - name: lint - sha256: d758a5211fce7fd3f5e316f804daefecdc34c7e53559716125e6da7388ae8565 - url: "https://pub.dev" - source: hosted - version: "2.3.0" - logging: - dependency: transitive - description: - name: logging - sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" - url: "https://pub.dev" - source: hosted - version: "1.2.0" - 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: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" - url: "https://pub.dev" - source: hosted - version: "0.8.0" - meta: - dependency: transitive - description: - name: meta - sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 - url: "https://pub.dev" - source: hosted - version: "1.11.0" - mime: - dependency: transitive - description: - name: mime - sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e - url: "https://pub.dev" - source: hosted - version: "1.0.4" - mockito: - dependency: "direct main" - description: - name: mockito - sha256: "6841eed20a7befac0ce07df8116c8b8233ed1f4486a7647c7fc5a02ae6163917" - url: "https://pub.dev" - source: hosted - version: "5.4.4" - mocktail: - dependency: transitive - description: - name: mocktail - sha256: f603ebd85a576e5914870b02e5839fc5d0243b867bf710651cf239a28ebb365e - url: "https://pub.dev" - source: hosted - version: "1.0.2" - mocktail_image_network: - dependency: "direct dev" - description: - name: mocktail_image_network - sha256: "83e6b9fa3c6b0952636719f0444752d94c0ef7caa4172ca467d9c1b682aeddbb" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - nested: - dependency: transitive - description: - name: nested - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - network_image_mock: - dependency: "direct main" - description: - name: network_image_mock - sha256: "855cdd01d42440e0cffee0d6c2370909fc31b3bcba308a59829f24f64be42db7" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - nm: - dependency: transitive - description: - name: nm - sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" - url: "https://pub.dev" - source: hosted - version: "0.5.0" - normalize: - dependency: transitive - description: - name: normalize - sha256: "8a60e37de5b608eeaf9b839273370c71ebba445e9f73b08eee7725e0d92dbc43" - url: "https://pub.dev" - source: hosted - version: "0.8.2+1" - octo_image: - dependency: transitive - description: - name: octo_image - sha256: "45b40f99622f11901238e18d48f5f12ea36426d8eced9f4cbf58479c7aa2430d" - url: "https://pub.dev" - source: hosted - version: "2.0.0" - package_config: - dependency: transitive - description: - name: package_config - sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - path: - dependency: transitive - description: - name: path - sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" - url: "https://pub.dev" - source: hosted - version: "1.9.0" - path_parsing: - dependency: transitive - description: - name: path_parsing - sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf - url: "https://pub.dev" - source: hosted - version: "1.0.1" - path_provider: - dependency: "direct main" - description: - name: path_provider - sha256: a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa - url: "https://pub.dev" - source: hosted - version: "2.1.1" - path_provider_android: - dependency: transitive - description: - name: path_provider_android - sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" - url: "https://pub.dev" - source: hosted - version: "2.2.2" - path_provider_foundation: - dependency: transitive - description: - name: path_provider_foundation - sha256: "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d" - url: "https://pub.dev" - source: hosted - version: "2.3.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: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - path_provider_windows: - dependency: transitive - description: - name: path_provider_windows - sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" - url: "https://pub.dev" - source: hosted - version: "2.2.1" - permission_handler: - dependency: "direct main" - description: - name: permission_handler - sha256: "860c6b871c94c78e202dc69546d4d8fd84bd59faeb36f8fb9888668a53ff4f78" - url: "https://pub.dev" - source: hosted - version: "11.1.0" - permission_handler_android: - dependency: transitive - description: - name: permission_handler_android - sha256: "2f1bec180ee2f5665c22faada971a8f024761f632e93ddc23310487df52dcfa6" - url: "https://pub.dev" - source: hosted - version: "12.0.1" - permission_handler_apple: - dependency: transitive - description: - name: permission_handler_apple - sha256: "1a816084338ada8d574b1cb48390e6e8b19305d5120fe3a37c98825bacc78306" - url: "https://pub.dev" - source: hosted - version: "9.2.0" - permission_handler_html: - dependency: transitive - description: - name: permission_handler_html - sha256: "11b762a8c123dced6461933a88ea1edbbe036078c3f9f41b08886e678e7864df" - url: "https://pub.dev" - source: hosted - version: "0.1.0+2" - permission_handler_platform_interface: - dependency: transitive - description: - name: permission_handler_platform_interface - sha256: d87349312f7eaf6ce0adaf668daf700ac5b06af84338bd8b8574dfbd93ffe1a1 - url: "https://pub.dev" - source: hosted - version: "4.0.2" - permission_handler_windows: - dependency: transitive - description: - name: permission_handler_windows - sha256: "1e8640c1e39121128da6b816d236e714d2cf17fac5a105dd6acdd3403a628004" - url: "https://pub.dev" - source: hosted - version: "0.2.0" - petitparser: - dependency: transitive - description: - name: petitparser - sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 - url: "https://pub.dev" - source: hosted - version: "6.0.2" - platform: - dependency: transitive - description: - name: platform - sha256: "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59" - url: "https://pub.dev" - source: hosted - version: "3.1.3" - plugin_platform_interface: - dependency: "direct main" - description: - name: plugin_platform_interface - sha256: f4f88d4a900933e7267e2b353594774fc0d07fb072b47eedcd5b54e1ea3269f8 - url: "https://pub.dev" - source: hosted - version: "2.1.7" - pointycastle: - dependency: "direct main" - description: - name: pointycastle - sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c" - url: "https://pub.dev" - source: hosted - version: "3.7.3" - pool: - dependency: transitive - description: - name: pool - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" - url: "https://pub.dev" - source: hosted - version: "1.5.1" - provider: - dependency: "direct main" - description: - name: provider - sha256: "9a96a0a19b594dbc5bf0f1f27d2bc67d5f95957359b461cd9feb44ed6ae75096" - url: "https://pub.dev" - source: hosted - version: "6.1.1" - pub_semver: - dependency: transitive - description: - name: pub_semver - sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - pubspec_parse: - dependency: transitive - description: - name: pubspec_parse - sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 - url: "https://pub.dev" - source: hosted - version: "1.2.3" - qr: - dependency: transitive - description: - name: qr - sha256: "64957a3930367bf97cc211a5af99551d630f2f4625e38af10edd6b19131b64b3" - url: "https://pub.dev" - source: hosted - version: "3.0.1" - qr_code_scanner: - dependency: "direct main" - description: - name: qr_code_scanner - sha256: f23b68d893505a424f0bd2e324ebea71ed88465d572d26bb8d2e78a4749591fd - url: "https://pub.dev" - source: hosted - version: "1.0.1" - qr_flutter: - dependency: "direct main" - description: - name: qr_flutter - sha256: "5095f0fc6e3f71d08adef8feccc8cea4f12eec18a2e31c2e8d82cb6019f4b097" - url: "https://pub.dev" - source: hosted - version: "4.1.0" - quick_actions: - dependency: "direct main" - description: - name: quick_actions - sha256: "3930e1cf78a0574495b4ea741ee197323c4a9081321d6ae384b3bfcd84c7ea83" - url: "https://pub.dev" - source: hosted - version: "1.0.6" - quick_actions_android: - dependency: transitive - description: - name: quick_actions_android - sha256: df67c20583e05f5038a24c47bfa1b7b2977703ec2d162663017c5f9ef8707699 - url: "https://pub.dev" - source: hosted - version: "1.0.9" - quick_actions_ios: - dependency: transitive - description: - name: quick_actions_ios - sha256: "5a13ed27b6254184fdd4294e100e3172fa6ebfd8bea03e414634a0f760d49997" - url: "https://pub.dev" - source: hosted - version: "1.0.8" - quick_actions_platform_interface: - dependency: transitive - description: - name: quick_actions_platform_interface - sha256: d2a8566b56eec49f93934528b62033906199c60f4ffaef0cba9ef02fcfed8a81 - url: "https://pub.dev" - source: hosted - version: "1.0.5" - rxdart: - dependency: transitive - description: - name: rxdart - sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" - url: "https://pub.dev" - source: hosted - version: "0.27.7" - sanitize_html: - dependency: transitive - description: - name: sanitize_html - sha256: "12669c4a913688a26555323fb9cec373d8f9fbe091f2d01c40c723b33caa8989" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - shared_preferences: - dependency: "direct main" - description: - name: shared_preferences - sha256: "81429e4481e1ccfb51ede496e916348668fd0921627779233bd24cc3ff6abd02" - url: "https://pub.dev" - source: hosted - version: "2.2.2" - shared_preferences_android: - dependency: transitive - description: - name: shared_preferences_android - sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" - url: "https://pub.dev" - source: hosted - version: "2.2.1" - shared_preferences_foundation: - dependency: transitive - description: - name: shared_preferences_foundation - sha256: "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7" - url: "https://pub.dev" - source: hosted - version: "2.3.4" - shared_preferences_linux: - dependency: transitive - description: - name: shared_preferences_linux - sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" - url: "https://pub.dev" - source: hosted - version: "2.3.2" - shared_preferences_platform_interface: - dependency: transitive - description: - name: shared_preferences_platform_interface - sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a - url: "https://pub.dev" - source: hosted - version: "2.3.1" - shared_preferences_web: - dependency: transitive - description: - name: shared_preferences_web - sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" - url: "https://pub.dev" - source: hosted - version: "2.2.2" - shared_preferences_windows: - dependency: transitive - description: - name: shared_preferences_windows - sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" - url: "https://pub.dev" - source: hosted - version: "2.3.2" - shelf: - dependency: transitive - description: - name: shelf - sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 - url: "https://pub.dev" - source: hosted - version: "1.4.1" - shelf_web_socket: - dependency: transitive - description: - name: shelf_web_socket - sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" - url: "https://pub.dev" - source: hosted - version: "1.0.4" - shimmer: - dependency: "direct main" - 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.99" - social_share: - dependency: "direct main" - description: - name: social_share - sha256: eb19a0f6f5a29c7bb71e5bb1991145eb52472184363b6e2da70695befd8be041 - url: "https://pub.dev" - source: hosted - version: "2.3.1" - source_gen: - dependency: transitive - description: - name: source_gen - sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" - url: "https://pub.dev" - source: hosted - version: "1.5.0" - source_helper: - dependency: transitive - description: - name: source_helper - sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd" - url: "https://pub.dev" - source: hosted - version: "1.3.4" - source_span: - dependency: transitive - description: - name: source_span - sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" - url: "https://pub.dev" - source: hosted - version: "1.10.0" - 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: "591f1602816e9c31377d5f008c2d9ef7b8aca8941c3f89cc5fd9d84da0c38a9a" - url: "https://pub.dev" - source: hosted - version: "2.3.0" - sqflite_common: - dependency: transitive - description: - name: sqflite_common - sha256: bb4738f15b23352822f4c42a531677e5c6f522e079461fd240ead29d8d8a54a6 - url: "https://pub.dev" - source: hosted - version: "2.5.0+2" - stack_trace: - dependency: transitive - description: - name: stack_trace - sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" - url: "https://pub.dev" - source: hosted - version: "1.11.1" - stream_channel: - dependency: transitive - description: - name: stream_channel - sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 - url: "https://pub.dev" - source: hosted - version: "2.1.2" - stream_transform: - dependency: transitive - description: - name: stream_transform - sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" - url: "https://pub.dev" - source: hosted - version: "2.1.0" - string_scanner: - dependency: transitive - description: - name: string_scanner - sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" - url: "https://pub.dev" - source: hosted - version: "1.2.0" - syncfusion_flutter_calendar: - dependency: "direct main" - description: - name: syncfusion_flutter_calendar - sha256: b31182b348742b0f2285849179490afd89e321514b8e0eadeab6d7377373c9f2 - url: "https://pub.dev" - source: hosted - version: "24.1.43" - syncfusion_flutter_core: - dependency: transitive - description: - name: syncfusion_flutter_core - sha256: "1b40729aa10a727150a6cc56e532c770f4baded83846fca8700efd908d0f4d0a" - url: "https://pub.dev" - source: hosted - version: "24.1.43" - syncfusion_flutter_datepicker: - dependency: "direct main" - description: - name: syncfusion_flutter_datepicker - sha256: "3f9a8e8b585dd992d2321c899ec8d914634fb99eba02cf7a91c48a098bf62820" - url: "https://pub.dev" - source: hosted - version: "24.1.43" - synchronized: - dependency: transitive - description: - name: synchronized - sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" - url: "https://pub.dev" - source: hosted - version: "3.1.0+1" - talawa_lint: - dependency: "direct dev" - description: - path: talawa_lint - relative: true - source: path - version: "0.0.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: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" - url: "https://pub.dev" - source: hosted - version: "0.6.1" - timelines: - dependency: "direct main" - description: - name: timelines - sha256: "40214f5ab772ff45459cb8c15e5f60505a6828af0c0eb1eec6f29ed911a4c1c5" - url: "https://pub.dev" - source: hosted - version: "0.1.0" - timezone: - dependency: transitive - description: - name: timezone - sha256: "1cfd8ddc2d1cfd836bc93e67b9be88c3adaeca6f40a00ca999104c30693cdca0" - url: "https://pub.dev" - source: hosted - version: "0.9.2" - timing: - dependency: transitive - description: - name: timing - sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" - url: "https://pub.dev" - source: hosted - version: "1.0.1" - tutorial_coach_mark: - dependency: "direct main" - description: - name: tutorial_coach_mark - sha256: "1f1fd234790afb929dec7391a4d90aa54ffe8c8e4d278d9283df8e3f5ac5d63e" - url: "https://pub.dev" - source: hosted - version: "1.2.11" - typed_data: - dependency: transitive - description: - name: typed_data - sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c - url: "https://pub.dev" - source: hosted - version: "1.3.2" - uni_links: - dependency: "direct main" - description: - name: uni_links - sha256: "051098acfc9e26a9fde03b487bef5d3d228ca8f67693480c6f33fd4fbb8e2b6e" - url: "https://pub.dev" - source: hosted - version: "0.5.1" - uni_links_platform_interface: - dependency: transitive - description: - name: uni_links_platform_interface - sha256: "929cf1a71b59e3b7c2d8a2605a9cf7e0b125b13bc858e55083d88c62722d4507" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - uni_links_web: - dependency: transitive - description: - name: uni_links_web - sha256: "7539db908e25f67de2438e33cc1020b30ab94e66720b5677ba6763b25f6394df" - url: "https://pub.dev" - source: hosted - version: "0.1.0" - uuid: - dependency: transitive - description: - name: uuid - sha256: bb55f38968b9427ce5dcdb8aaaa41049282195e0cfa4cf48593572fa3d1f36bc - url: "https://pub.dev" - source: hosted - version: "4.3.1" - vector_graphics: - dependency: transitive - description: - name: vector_graphics - sha256: "0f0c746dd2d6254a0057218ff980fc7f5670fd0fcf5e4db38a490d31eed4ad43" - url: "https://pub.dev" - source: hosted - version: "1.1.9+1" - vector_graphics_codec: - dependency: transitive - description: - name: vector_graphics_codec - sha256: "0edf6d630d1bfd5589114138ed8fada3234deacc37966bec033d3047c29248b7" - url: "https://pub.dev" - source: hosted - version: "1.1.9+1" - vector_graphics_compiler: - dependency: transitive - description: - name: vector_graphics_compiler - sha256: d24333727332d9bd20990f1483af4e09abdb9b1fc7c3db940b56ab5c42790c26 - url: "https://pub.dev" - source: hosted - version: "1.1.9+1" - vector_math: - dependency: transitive - description: - name: vector_math - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - vibration: - dependency: "direct main" - description: - name: vibration - sha256: "778ace40e84852e6cf6017cdbaf6790a837d73ff3dd50b27da9ac232a19de8fc" - url: "https://pub.dev" - source: hosted - version: "1.8.4" - video_player: - dependency: "direct main" - description: - name: video_player - sha256: e16f0a83601a78d165dabc17e4dac50997604eb9e4cc76e10fa219046b70cef3 - url: "https://pub.dev" - source: hosted - version: "2.8.1" - video_player_android: - dependency: transitive - description: - name: video_player_android - sha256: "3fe89ab07fdbce786e7eb25b58532d6eaf189ceddc091cb66cba712f8d9e8e55" - url: "https://pub.dev" - source: hosted - version: "2.4.10" - video_player_avfoundation: - dependency: transitive - description: - name: video_player_avfoundation - sha256: "01a57940e1dabc8769ccd457c4ae9ea50274e7d5a7617f7820dae5fe1d8436ae" - url: "https://pub.dev" - source: hosted - version: "2.5.3" - video_player_platform_interface: - dependency: transitive - description: - name: video_player_platform_interface - sha256: be72301bf2c0150ab35a8c34d66e5a99de525f6de1e8d27c0672b836fe48f73a - url: "https://pub.dev" - source: hosted - version: "6.2.1" - video_player_web: - dependency: transitive - description: - name: video_player_web - sha256: ab7a462b07d9ca80bed579e30fb3bce372468f1b78642e0911b10600f2c5cb5b - url: "https://pub.dev" - source: hosted - version: "2.1.2" - visibility_detector: - dependency: "direct main" - description: - name: visibility_detector - sha256: dd5cc11e13494f432d15939c3aa8ae76844c42b723398643ce9addb88a5ed420 - url: "https://pub.dev" - source: hosted - version: "0.4.0+2" - vm_service: - dependency: transitive - description: - name: vm_service - sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 - url: "https://pub.dev" - source: hosted - version: "13.0.0" - watcher: - dependency: transitive - description: - name: watcher - sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" - url: "https://pub.dev" - source: hosted - version: "1.1.0" - web: - dependency: transitive - description: - name: web - sha256: edc8a9573dd8c5a83a183dae1af2b6fd4131377404706ca4e5420474784906fa - url: "https://pub.dev" - source: hosted - version: "0.4.0" - web_socket_channel: - dependency: transitive - description: - name: web_socket_channel - sha256: "045ec2137c27bf1a32e6ffa0e734d532a6677bf9016a0d1a406c54e499ff945b" - url: "https://pub.dev" - source: hosted - version: "2.4.1" - win32: - dependency: transitive - description: - name: win32 - sha256: b0f37db61ba2f2e9b7a78a1caece0052564d1bc70668156cf3a29d676fe4e574 - url: "https://pub.dev" - source: hosted - version: "5.1.1" - win32_registry: - dependency: transitive - description: - name: win32_registry - sha256: "41fd8a189940d8696b1b810efb9abcf60827b6cbfab90b0c43e8439e3a39d85a" - url: "https://pub.dev" - source: hosted - version: "1.1.2" - xdg_directories: - dependency: transitive - description: - name: xdg_directories - sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2" - url: "https://pub.dev" - source: hosted - version: "1.0.3" - 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: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" - url: "https://pub.dev" - source: hosted - version: "3.1.2" -sdks: - dart: ">=3.2.0 <3.13.0" - flutter: ">=3.16.0" From cd18097da6b05b8280911c4dda77be1d649ca2b8 Mon Sep 17 00:00:00 2001 From: Parag Gupta <103507835+Dante291@users.noreply.github.com> Date: Tue, 2 Jan 2024 21:38:32 +0530 Subject: [PATCH 05/17] Comprehensive Language Translation Enhancement for App Globalization (#2290) * Comprehensive Language Translation Enhancement for App Globalization * adding more translations * testing * test * test * test * proper format for translation files * formating * formating * formating * fixing translation * fixing linting errors * writing test for missing lines * writing test for missing lines * writing test for missing lines * fixing translations * fixing translations * fixing translations * fixing translations --- lang/de.json | 67 +- lang/en.json | 67 +- lang/es.json | 71 +- lang/fr.json | 67 +- lang/hi.json | 67 +- lang/ja.json | 67 +- lang/pt.json | 69 +- lang/zh.json | 69 +- lib/main.dart | 1 + lib/services/navigation_service.dart | 6 +- lib/view_model/main_screen_view_model.dart | 1498 ++++++++--------- .../after_auth_screens/add_post_page.dart | 15 +- .../events/create_event_form.dart | 18 +- .../events/create_event_page.dart | 6 +- .../events/explore_events.dart | 7 +- .../feed/individual_post.dart | 24 +- .../join_organisation_after_auth.dart | 4 +- .../profile/profile_page.dart | 22 +- .../demo_screens/organization_feed_demo.dart | 3 +- .../pre_auth_screens/select_organization.dart | 10 +- lib/widgets/custom_alert_dialog.dart | 4 +- lib/widgets/task_form.dart | 12 +- test/model_tests/app_tour_test.dart | 7 +- .../navigation_service_test.dart | 39 +- .../main_screen_view_model_test.dart | 1376 +++++++-------- .../add_post_page_test.dart | 1 + .../events/create_event_form_test.dart | 153 +- 27 files changed, 2161 insertions(+), 1589 deletions(-) rename test/{widget_tests => views}/after_auth_screens/add_post_page_test.dart (99%) diff --git a/lang/de.json b/lang/de.json index a68bed5a8c..04e2ca0b25 100644 --- a/lang/de.json +++ b/lang/de.json @@ -170,8 +170,69 @@ "No organizations found Please contact your admin": "Geen organisaties gevonden! Neem contact op met uw beheerder", "Notification Feature is not installed": "Meddelelsesfunktionen er ikke installeret", "For complete access, please": "Für vollständigen Zugriff bitte", - " join an organization.": " einer Organisation beitreten.", - "JOIN":"BEITRETEN", + "join an organization.": " einer Organisation beitreten.", + "JOIN": "BEITRETEN", "Camera": "Kamera", - "Gallery": "Galerie" + "Gallery": "Galerie", + "NEXT": "NÄCHSTE", + "COMPLETE": "VOLLSTÄNDIG", + "Start app tour to know talawa functioning": "Starten Sie die App-Tour, um die Funktionsweise von Talawa zu erfahren", + "Scan QR": "QR scannen", + "Add tag": "Tag hinzufügen", + "Enter the Tag": "Geben Sie das Tag ein", + "Title": "Titel", + "Choose on map": "Auf der Karte wählen", + "Where is the event?": "Wo ist das Ereignis?", + "Add Members": "Mitglieder hinzufügen", + "All Events": "Alle Veranstaltungen", + "Created Events": "Erstellte Veranstaltungen", + "Registered Events": "Registrierte Veranstaltungen", + "Send": "Senden", + "Write your comment here..": "Schreiben Sie hier Ihren Kommentar..", + "You need access": "Sie benötigen Zugang", + "Request access, or switch to an account with access": "Fordern Sie Zugang an oder wechseln Sie zu einem Konto mit Zugang", + "Request Access": "Zugang anfordern", + "Last Name": "Nachname", + "First Name": "Vorname", + "Edit Profile": "Profil bearbeiten", + "Log Out": "Ausloggen", + "Please Select an amount": "Bitte wählen Sie einen Betrag", + "Input custom amount": "Benutzerdefinierten Betrag eingeben", + "Organisation Name": "Name der Organisation", + "Choose an Organization": "Wählen Sie eine Organisation", + "Your Report has been sent to the Admin": "Ihr Bericht wurde an den Admin gesendet", + "Report the post to the Admin": "Melden Sie den Beitrag dem Admin", + "Do you really want to delete the post?": "Möchten Sie den Beitrag wirklich löschen?", + "Liked": "Gefällt", + "Add Task Title": "Aufgabentitel hinzufügen", + "Describe the task": "Beschreiben Sie die Aufgabe", + "Looks like there aren't any events.": "Es scheint keine Veranstaltungen zu geben.", + "You have not created any event.": "Sie haben keine Veranstaltung erstellt.", + "No registered events are present": "Keine registrierten Veranstaltungen vorhanden", + "There aren't any public events.": "Es gibt keine öffentlichen Veranstaltungen.", + "There aren't any private events.": "Es gibt keine privaten Veranstaltungen.", + "Donate to the Community": "An die Gemeinschaft spenden", + "Donating to": "Spenden an", + "Are you sure you want to delete this event?": "Sind Sie sicher, dass Sie diese Veranstaltung löschen möchten?", + "Are you sure you want to exit this organization?": "Sind Sie sicher, dass Sie diese Organisation verlassen möchten?", + "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc": "Dies ist der Profil-Tab, hier können Sie alle Optionen im Zusammenhang mit dem Konto, den App-Einstellungen, der Einladung, der Hilfe usw. sehen", + "You can edit application settings like language, theme etc from here": "Sie können die Einstellungen der Anwendung wie Sprache, Thema usw. von hier aus bearbeiten", + "For any help we are always there. You can reach us from here": "Für jede Hilfe sind wir immer da. Sie können uns von hier aus erreichen", + "Current selected Organization Name": "Name der aktuell ausgewählten Organisation", + "Click this button to see options related to switching, joining and leaving organization(s)": "Klicken Sie auf diese Schaltfläche, um Optionen zum Wechseln, Beitreten und Verlassen von Organisation(en) zu sehen", + "Current selected Organization's Name appears here": "Der Name der aktuell ausgewählten Organisation erscheint hier", + "All your joined organizations appear over here you can click on them to change the current organization": "Alle beigetretenen Organisationen erscheinen hier, Sie können darauf klicken, um die aktuelle Organisation zu wechseln", + "From this button you can join other listed organizations": "Über diese Schaltfläche können Sie anderen aufgeführten Organisationen beitreten", + "To leave the current organization you can use this option": "Um die aktuelle Organisation zu verlassen, können Sie diese Option nutzen", + "This is the post card you can like and comment on the post from the options available": "Dies ist die Postkarte, Sie können den Beitrag über die verfügbaren Optionen liken und kommentieren", + "This is the Events tab here you can see all event related information of the current selected organization": "Dies ist der Veranstaltungs-Tab, hier können Sie alle ereignisbezogenen Informationen der aktuell ausgewählten Organisation sehen", + "This is the home tab here you can see the latest post from other members of the current organization": "Dies ist der Home-Tab, hier können Sie den neuesten Beitrag von anderen Mitgliedern der aktuellen Organisation sehen", + "This section displays all the important post set by the organization admin(s)": "Dieser Abschnitt zeigt alle wichtigen Beiträge, die von den Admin(s) der Organisation festgelegt wurden", + "Filter Events based on categories": "Veranstaltungen nach Kategorien filtern", + "Filter Events between selected dates": "Veranstaltungen zwischen ausgewählten Daten filtern", + "Description of event to see more details click on the card": "Beschreibung der Veranstaltung, um weitere Details zu sehen, klicken Sie auf die Karte", + "This is the Create post tab here you can add post to the current selected organization": "Dies ist der Tab 'Beitrag erstellen', hier können Sie der aktuell ausgewählten Organisation einen Beitrag hinzufügen", + "This is the Chat tab here you can see all your messages of the current selected organization": "Dies ist der Chat-Tab, hier können Sie alle Ihre Nachrichten der aktuell ausgewählten Organisation sehen", + "To help your organization grow you can support them financially from here": "Um Ihre Organisation zu unterstützen, können Sie sie finanziell von hier aus unterstützen.", + "You are all set to go let's get you in": "Sie sind bereit zu gehen, lassen Sie uns Ihnen helfen." } diff --git a/lang/en.json b/lang/en.json index 2588cffeb7..bb3239fca6 100644 --- a/lang/en.json +++ b/lang/en.json @@ -169,8 +169,69 @@ "Dark Theme": "Dark Theme", "No organizations found Please contact your admin": "No organizations found ! Please contact your admin", "For complete access, please": "For complete access, please", - " join an organization.": " join an organization.", - "JOIN":"JOIN", + "join an organization.": " join an organization.", + "JOIN": "JOIN", "Camera": "Camera", - "Gallery": "Gallery" + "Gallery": "Gallery", + "NEXT": "NEXT", + "COMPLETE": "COMPLETE", + "Start app tour to know talawa functioning": "Start app tour to know talawa functioning", + "Scan QR": "Scan QR", + "Add tag": "Add tag", + "Enter the Tag": "Enter the Tag", + "Title": "Title", + "Choose on map": "Choose on map", + "Where is the event?": "Where is the event?", + "Add Members": "Add Members", + "All Events": "All Events", + "Created Events": "Created Events", + "Registered Events": "Registered Events", + "Send": "Send", + "Write your comment here..": "Write your comment here..", + "You need access": "You need access", + "Request access, or switch to an account with access": "Request access, or switch to an account with access", + "Request Access": "Request Access", + "Last Name": "Last Name", + "First Name": "First Name", + "Edit Profile": "Edit Profile", + "Log Out": "Log Out", + "Please Select an amount": "Please Select an amount", + "Input custom amount": "Input custom amount", + "Organisation Name": "Organisation Name", + "Choose an Organization": "Choose an Organization", + "Your Report has been sent to the Admin": "Your Report has been sent to the Admin", + "Report the post to the Admin": "Report the post to the Admin", + "Do you really want to delete the post?": "Do you really want to delete the post?", + "Liked": "Liked", + "Add Task Title": "Add Task Title", + "Describe the task": "Describe the task", + "Looks like there aren't any events.": "Looks like there aren't any events.", + "You have not created any event.": "You have not created any event.", + "No registered events are present": "No registered events are present", + "There aren't any public events.": "There aren't any public events.", + "There aren't any private events.": "There aren't any private events.", + "Donate to the Community": "Donate to the Community", + "Donating to": "Donating to", + "Are you sure you want to delete this event?": "Are you sure you want to delete this event?", + "Are you sure you want to exit this organization?": "Are you sure you want to exit this organization?", + "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc": "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc.", + "You can edit application settings like language, theme etc from here": "You can edit application settings like language, theme etc from here.", + "For any help we are always there. You can reach us from here": "For any help, we are always there. You can reach us from here.", + "Current selected Organization Name": "Current selected Organization Name", + "Click this button to see options related to switching, joining and leaving organization(s)": "Click this button to see options related to switching, joining and leaving organization(s).", + "Current selected Organization's Name appears here": "Current selected Organization's Name appears here.", + "All your joined organizations appear over here you can click on them to change the current organization": "All your joined organizations appear over here you can click on them to change the current organization.", + "From this button you can join other listed organizations": "From this button you can join other listed organizations.", + "To leave the current organization you can use this option": "To leave the current organization you can use this option.", + "This is the post card you can like and comment on the post from the options available": "This is the post card you can like and comment on the post from the options available.", + "This is the Events tab here you can see all event related information of the current selected organization": "This is the Events tab here you can see all event related information of the current selected organization.", + "This is the home tab here you can see the latest post from other members of the current organization": "This is the home tab here you can see the latest post from other members of the current organization.", + "This section displays all the important post set by the organization admin(s)": "This section displays all the important post set by the organization admin(s).", + "Filter Events based on categories": "Filter Events based on categories.", + "Filter Events between selected dates": "Filter Events between selected dates.", + "Description of event to see more details click on the card": "Description of event to see more details click on the card.", + "This is the Create post tab here you can add post to the current selected organization": "This is the Create post tab here you can add post to the current selected organization.", + "This is the Chat tab here you can see all your messages of the current selected organization": "This is the Chat tab here you can see all your messages of the current selected organization.", + "To help your organization grow you can support them financially from here": "To help your organization grow you can support them financially from here.", + "You are all set to go let's get you in": "You are all set to go let's get you in." } diff --git a/lang/es.json b/lang/es.json index 6c6e705f3a..b66ea3e211 100644 --- a/lang/es.json +++ b/lang/es.json @@ -67,7 +67,7 @@ "Where is the event": "Donde es el evento", "Add Location": "Añadir lugar", "Describe the event": "Describe el evento", - "Add Description": "Agregar descripción", + "Add Description": "Añadir descripción", "Add Event": "Añadir evento", "Add": "Agregarlo", "Add Image": "Añadir imagen", @@ -104,7 +104,7 @@ "My Events": "Mis Eventos", "Public Events": "Eventos publicos", "Private Events": "Eventos privados", - "Liked by": "Apreciado por", + "Liked by": "Gustado por", "Comments": "Comentarios", "FirstName LastName": "Nombre Apellido", "Pinned Posts": "Puestos fijadas", @@ -169,8 +169,69 @@ "Dismiss": "despedir", "No organizations found Please contact your admin": "Neniuj organizoj trovitaj! Bonvolu kontakti vian administranton", "For complete access, please": "Para acceso completo, por favor", - " join an organization.": " unirse a una organización.", - "JOIN":"UNIRSE", + "join an organization.": " unirse a una organización.", + "JOIN": "UNIRSE", "Camera": "Cámara", - "Gallery": "Galería" + "Gallery": "Galería", + "NEXT": "SIGUIENTE", + "COMPLETE": "COMPLETO", + "Start app tour to know talawa functioning": "Inicie el recorrido por la aplicación para conocer el funcionamiento de talawa", + "Scan QR": "Escanear QR", + "Add tag": "Añadir etiqueta", + "Enter the Tag": "Ingrese la Etiqueta", + "Title": "Título", + "Choose on map": "Elegir en el mapa", + "Where is the event?": "¿Dónde está el evento?", + "Add Members": "Añadir miembros", + "All Events": "Todos los eventos", + "Created Events": "Eventos creados", + "Registered Events": "Eventos registrados", + "Send": "Enviar", + "Write your comment here..": "Escribe tu comentario aquí..", + "You need access": "Necesitas acceso", + "Request access, or switch to an account with access": "Solicitar acceso o cambiar a una cuenta con acceso", + "Request Access": "Solicitar acceso", + "Last Name": "Apellido", + "First Name": "Nombre", + "Edit Profile": "Editar perfil", + "Log Out": "Cerrar sesión", + "Please Select an amount": "Por favor, seleccione una cantidad", + "Input custom amount": "Ingresar cantidad personalizada", + "Organisation Name": "Nombre de la organización", + "Choose an Organization": "Elija una Organización", + "Your Report has been sent to the Admin": "Su informe ha sido enviado al Administrador", + "Report the post to the Admin": "Reportar la publicación al Administrador", + "Do you really want to delete the post?": "¿Realmente quieres eliminar la publicación?", + "Liked": "Gustado", + "Add Task Title": "Añadir título de tarea", + "Describe the task": "Describir la tarea", + "Looks like there aren't any events.": "Parece que no hay eventos.", + "You have not created any event.": "No has creado ningún evento.", + "No registered events are present": "No hay eventos registrados", + "There aren't any public events.": "No hay eventos públicos.", + "There aren't any private events.": "No hay eventos privados.", + "Donate to the Community": "Donar a la Comunidad", + "Donating to": "Donando a", + "Are you sure you want to delete this event?": "¿Estás seguro de que quieres eliminar este evento?", + "Are you sure you want to exit this organization?": "¿Estás seguro de que quieres salir de esta organización?", + "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc": "Esta es la pestaña de Perfil, aquí puedes ver todas las opciones relacionadas con la cuenta, configuración de la aplicación, invitación, ayuda, etc.", + "You can edit application settings like language, theme etc from here": "Puedes editar la configuración de la aplicación, como el idioma, el tema, etc., desde aquí", + "For any help we are always there. You can reach us from here": "Para cualquier ayuda, siempre estamos aquí. Puedes contactarnos desde aquí", + "Current selected Organization Name": "Nombre de la organización actualmente seleccionada", + "Click this button to see options related to switching, joining and leaving organization(s)": "Haz clic en este botón para ver opciones relacionadas con cambiar, unirse y salir de organizaciones", + "Current selected Organization's Name appears here": "El nombre de la organización actualmente seleccionada aparece aquí", + "All your joined organizations appear over here you can click on them to change the current organization": "Todas las organizaciones a las que te has unido aparecen aquí; puedes hacer clic en ellas para cambiar la organización actual", + "From this button you can join other listed organizations": "Desde este botón, puedes unirte a otras organizaciones enumeradas", + "To leave the current organization you can use this option": "Para salir de la organización actual, puedes usar esta opción", + "This is the post card you can like and comment on the post from the options available": "Esta es la tarjeta de la publicación; puedes darle me gusta y comentar en la publicación desde las opciones disponibles", + "This is the Events tab here you can see all event related information of the current selected organization": "Esta es la pestaña de Eventos; aquí puedes ver toda la información relacionada con eventos de la organización actualmente seleccionada", + "This is the home tab here you can see the latest post from other members of the current organization": "Esta es la pestaña de Inicio; aquí puedes ver la última publicación de otros miembros de la organización actual", + "This section displays all the important post set by the organization admin(s)": "Esta sección muestra todas las publicaciones importantes establecidas por el(los) administrador(es) de la organización", + "Filter Events based on categories": "Filtrar eventos según categorías", + "Filter Events between selected dates": "Filtrar eventos entre las fechas seleccionadas", + "Description of event to see more details click on the card": "Descripción del evento; para ver más detalles, haz clic en la tarjeta", + "This is the Create post tab here you can add post to the current selected organization": "Esta es la pestaña de Crear publicación; aquí puedes agregar una publicación a la organización actualmente seleccionada", + "This is the Chat tab here you can see all your messages of the current selected organization": "Esta es la pestaña de Chat; aquí puedes ver todos tus mensajes de la organización actualmente seleccionada", + "To help your organization grow you can support them financially from here": "Para ayudar a que tu organización crezca, puedes apoyarla financieramente desde aquí", + "You are all set to go let's get you in": "Estás listo para ir, vamos a empezar" } diff --git a/lang/fr.json b/lang/fr.json index 3ed1ff2ab6..f15f4ec01e 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -169,8 +169,69 @@ "Dark Theme": "Thème sombre", "No organizations found Please contact your admin": "Aucune organisation trouvée ! Veuillez contacter votre administrateur", "For complete access, please": "Pour un accès complet, veuillez", - " join an organization.": " rejoindre une organisation.", - "JOIN":"REJOINDRE", + "join an organization.": " rejoindre une organisation.", + "JOIN": "REJOINDRE", "Camera": "Caméra", - "Gallery": "Galerie" + "Gallery": "Galerie", + "NEXT": "SUIVANT", + "COMPLETE": "COMPLÉTER", + "Start app tour to know talawa functioning": "Démarrez la visite de l'application pour connaître le fonctionnement de talawa", + "Scan QR": "Scanner QR", + "Add tag": "Ajouter un tag", + "Enter the Tag": "Entrez le Tag", + "Title": "Titre", + "Choose on map": "Choisir sur la carte", + "Where is the event?": "Où se trouve l'événement?", + "Add Members": "Ajouter des membres", + "All Events": "Tous les événements", + "Created Events": "Événements créés", + "Registered Events": "Événements enregistrés", + "Send": "Envoyer", + "Write your comment here..": "Écrivez votre commentaire ici..", + "You need access": "Vous avez besoin d'accès", + "Request access, or switch to an account with access": "Demander un accès ou passer à un compte avec accès", + "Request Access": "Demander l'accès", + "Last Name": "Nom de famille", + "First Name": "Prénom", + "Edit Profile": "Modifier le profil", + "Log Out": "Se déconnecter", + "Please Select an amount": "Veuillez sélectionner un montant", + "Input custom amount": "Entrer un montant personnalisé", + "Organisation Name": "Nom de l'organisation", + "Choose an Organization": "Choisissez une Organisation", + "Your Report has been sent to the Admin": "Votre rapport a été envoyé à l'Admin", + "Report the post to the Admin": "Signaler le post à l'Admin", + "Do you really want to delete the post?": "Voulez-vous vraiment supprimer le post?", + "Liked": "Aimé", + "Add Task Title": "Ajouter un titre de tâche", + "Describe the task": "Décrire la tâche", + "Looks like there aren't any events.": "On dirait qu'il n'y a pas d'événements.", + "You have not created any event.": "Vous n'avez créé aucun événement.", + "No registered events are present": "Aucun événement enregistré n'est présent", + "There aren't any public events.": "Il n'y a pas d'événements publics.", + "There aren't any private events.": "Il n'y a pas d'événements privés.", + "Donate to the Community": "Faire un don à la Communauté", + "Donating to": "Don à", + "Are you sure you want to delete this event?": "Êtes-vous sûr de vouloir supprimer cet événement?", + "Are you sure you want to exit this organization?": "Êtes-vous sûr de vouloir quitter cette organisation?", + "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc": "Ceci est l'onglet Profil où vous pouvez voir toutes les options liées au compte, aux paramètres de l'application, à l'invitation, à l'aide, etc.", + "You can edit application settings like language, theme etc from here": "Vous pouvez modifier les paramètres de l'application comme la langue, le thème, etc. depuis ici", + "For any help we are always there. You can reach us from here": "Pour toute aide, nous sommes toujours là. Vous pouvez nous joindre depuis ici", + "Current selected Organization Name": "Nom de l'organisation actuellement sélectionnée", + "Click this button to see options related to switching, joining and leaving organization(s)": "Cliquez sur ce bouton pour voir les options liées au changement, à l'adhésion et au départ d'organisation(s)", + "Current selected Organization's Name appears here": "Le nom de l'organisation actuellement sélectionnée apparaît ici", + "All your joined organizations appear over here you can click on them to change the current organization": "Toutes les organisations auxquelles vous avez adhéré apparaissent ici, vous pouvez cliquer sur elles pour changer l'organisation actuelle", + "From this button you can join other listed organizations": "À partir de ce bouton, vous pouvez rejoindre d'autres organisations répertoriées", + "To leave the current organization you can use this option": "Pour quitter l'organisation actuelle, vous pouvez utiliser cette option", + "This is the post card you can like and comment on the post from the options available": "Ceci est la carte de publication, vous pouvez aimer et commenter la publication à partir des options disponibles", + "This is the Events tab here you can see all event related information of the current selected organization": "Ceci est l'onglet Événements, ici vous pouvez voir toutes les informations liées aux événements de l'organisation actuellement sélectionnée", + "This is the home tab here you can see the latest post from other members of the current organization": "Ceci est l'onglet Accueil, ici vous pouvez voir le dernier post des autres membres de l'organisation actuelle", + "This section displays all the important post set by the organization admin(s)": "Cette section affiche tous les posts importants définis par le(s) administrateur(s) de l'organisation", + "Filter Events based on categories": "Filtrer les événements en fonction des catégories", + "Filter Events between selected dates": "Filtrer les événements entre les dates sélectionnées", + "Description of event to see more details click on the card": "Description de l'événement, pour voir plus de détails, cliquez sur la carte", + "This is the Create post tab here you can add post to the current selected organization": "Ceci est l'onglet Créer une publication, ici vous pouvez ajouter une publication à l'organisation actuellement sélectionnée", + "This is the Chat tab here you can see all your messages of the current selected organization": "Ceci est l'onglet Chat, ici vous pouvez voir tous vos messages de l'organisation actuellement sélectionnée", + "To help your organization grow you can support them financially from here": "Pour aider votre organisation à se développer, vous pouvez les soutenir financièrement depuis ici.", + "You are all set to go let's get you in": "Vous êtes prêt à partir, laissez-nous vous aider." } diff --git a/lang/hi.json b/lang/hi.json index 8ae54f08e5..6a556ce4de 100644 --- a/lang/hi.json +++ b/lang/hi.json @@ -169,8 +169,69 @@ "Dismiss": "नकार", "No organizations found Please contact your admin": "कोई संगठन नहीं मिला! कृपया अपने व्यवस्थापक से संपर्क करें", "For complete access, please": "पूर्ण पहुंच के लिए, कृपया", - " join an organization.": " किसी संगठन से जुड़ें.", - "JOIN":"जोड़ना", + "join an organization.": " किसी संगठन से जुड़ें.", + "JOIN": "जोड़ना", "Camera": "कैमरा", - "Gallery": "गैलरी" + "Gallery": "गैलरी", + "NEXT": "अगला", + "COMPLETE": "पूर्ण", + "Start app tour to know talawa functioning": "Talawa कार्यप्रणाली जानने के लिए ऐप टूर शुरू करें", + "Scan QR": "QR स्कैन करें", + "Add tag": "टैग जोड़ें", + "Enter the Tag": "टैग दर्ज करें", + "Title": "शीर्षक", + "Choose on map": "नक्शे पर चुनें", + "Where is the event?": "इवेंट कहाँ है?", + "Add Members": "सदस्य जोड़ें", + "All Events": "सभी ईवेंट्स", + "Created Events": "बनाए गए ईवेंट्स", + "Registered Events": "पंजीकृत ईवेंट्स", + "Send": "भेजें", + "Write your comment here..": "यहां अपनी टिप्पणी लिखें..", + "You need access": "आपको पहुँच की आवश्यकता है", + "Request access, or switch to an account with access": "पहुँच का अनुरोध करें, या पहुँच वाले खाते में स्विच करें", + "Request Access": "पहुँच का अनुरोध करें", + "Last Name": "अंतिम नाम", + "First Name": "पहला नाम", + "Edit Profile": "प्रोफ़ाइल संपादित करें", + "Log Out": "लॉग आउट", + "Please Select an amount": "कृपया एक राशि चुनें", + "Input custom amount": "कस्टम राशि दर्ज करें", + "Organisation Name": "संगठन का नाम", + "Choose an Organization": "एक संगठन चुनें", + "Your Report has been sent to the Admin": "आपकी रिपोर्ट एडमिन को भेज दी गई है", + "Report the post to the Admin": "पोस्ट को एडमिन को रिपोर्ट करें", + "Do you really want to delete the post?": "क्या आप वाकई पोस्ट को हटाना चाहते हैं?", + "Liked": "पसंद किया", + "Add Task Title": "टास्क का शीर्षक जोड़ें", + "Describe the task": "कार्य का वर्णन करें", + "Looks like there aren't any events.": "लगता है कि कोई इवेंट नहीं हैं।", + "You have not created any event.": "आपने कोई इवेंट नहीं बनाया है।", + "No registered events are present": "कोई पंजीकृत इवेंट मौजूद नहीं हैं", + "There aren't any public events.": "कोई सार्वजनिक इवेंट नहीं हैं।", + "There aren't any private events.": "कोई निजी इवेंट नहीं हैं।", + "Donate to the Community": "समुदाय को दान करें", + "Donating to": "को दान देना", + "Are you sure you want to delete this event?": "क्या आप वाकई इस इवेंट को हटाना चाहते हैं?", + "Are you sure you want to exit this organization?": "क्या आप वाकई इस संगठन से बाहर जाना चाहते हैं?", + "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc": "यह प्रोफाइल टैब है जहाँ आप खाता, ऐप सेटिंग, आमंत्रण, सहायता आदि से संबंधित सभी विकल्प देख सकते हैं", + "You can edit application settings like language, theme etc from here": "आप यहाँ से भाषा, थीम आदि जैसी एप्लिकेशन सेटिंग्स को संपादित कर सकते हैं", + "For any help we are always there. You can reach us from here": "किसी भी मदद के लिए हम हमेशा यहाँ होते हैं। आप हमसे यहाँ संपर्क कर सकते हैं", + "Current selected Organization Name": "वर्तमान चयनित संगठन का नाम", + "Click this button to see options related to switching, joining and leaving organization(s)": "स्विचिंग, ज्वाइनिंग और ऑर्गनाइजेशन छोड़ने से संबंधित विकल्प देखने के लिए इस बटन पर क्लिक करें।", + "Current selected Organization's Name appears here": "वर्तमान चयनित संगठन का नाम यहाँ दिखाई देता है।", + "All your joined organizations appear over here you can click on them to change the current organization": "यहाँ सभी आपके जुड़े हुए संगठन दिखाई देते हैं, आप इन पर क्लिक करके वर्तमान संगठन को बदल सकते हैं।", + "From this button you can join other listed organizations": "इस बटन से आप अन्य सूचीबद्ध संगठनों में शामिल हो सकते हैं।", + "To leave the current organization you can use this option": "वर्तमान संगठन छोड़ने के लिए आप इस विकल्प का उपयोग कर सकते हैं।", + "This is the post card you can like and comment on the post from the options available": "यह वह पोस्ट कार्ड है जिस पर आप उपलब्ध विकल्पों से पसंद और टिप्पणी कर सकते हैं।", + "This is the Events tab here you can see all event related information of the current selected organization": "यहाँ इवेंट्स टैब है जहाँ आप वर्तमान चयनित संगठन की सभी इवेंट संबंधित जानकारी देख सकते हैं।", + "This is the home tab here you can see the latest post from other members of the current organization": "यहाँ होम टैब है जहाँ आप वर्तमान संगठन के अन्य सदस्यों के नवीनतम पोस्ट देख सकते हैं।", + "This section displays all the important post set by the organization admin(s)": "यह खंड वह सभी महत्वपूर्ण पोस्ट दिखाता है जो संगठन एडमिन द्वारा निर्धारित की गई हैं।", + "Filter Events based on categories": "श्रेणियों के आधार पर इवेंट्स को फ़िल्टर करें।", + "Filter Events between selected dates": "चयनित तिथियों के बीच इवेंट्स को फ़िल्टर करें।", + "Description of event to see more details click on the card": "इवेंट का विवरण और विवरण देखने के लिए कार्ड पर क्लिक करें।", + "This is the Create post tab here you can add post to the current selected organization": "यह यहाँ से तैयार करें पोस्ट टैब है जहाँ आप वर्तमान चयनित संगठन में पोस्ट जोड़ सकते हैं।", + "This is the Chat tab here you can see all your messages of the current selected organization": "यहाँ चैट टैब है जहाँ आप वर्तमान चयनित संगठन के सभी संदेश देख सकते हैं।", + "To help your organization grow you can support them financially from here": "अपने संगठन को बढ़ावा देने के लिए आप उन्हें यहाँ से वित्तपोषण दे सकते हैं।", + "You are all set to go let's get you in": "आप तैयार हैं जाने के लिए, चलो आपको एंटर करते हैं।" } diff --git a/lang/ja.json b/lang/ja.json index 6a57e49f7c..ac8f5c1b73 100644 --- a/lang/ja.json +++ b/lang/ja.json @@ -104,7 +104,7 @@ "My Events": "私のイベント", "Public Events": "公開イベント", "Private Events": "プライベートイベント", - "Liked by": "好きな人", + "Liked by": "によって好まれる", "Comments": "コメント", "FirstName LastName": "名前苗字", "Pinned Posts": "固定された投稿", @@ -169,8 +169,69 @@ "Dismiss": "解散", "No organizations found Please contact your admin": "組織が見つかりません!管理者に連絡してください", "For complete access, please": "完全にアクセスするには、", - " join an organization.": " 組織に参加します。", + "join an organization.": " 組織に参加します。", "JOIN": "参加する", "Camera": "カメラ", - "Gallery": "ギャラリー" + "Gallery": "ギャラリー", + "NEXT": "次へ", + "COMPLETE": "完了", + "Start app tour to know talawa functioning": "タラワの機能を知るためにアプリツアーを開始する", + "Scan QR": "QRをスキャン", + "Add tag": "タグを追加する", + "Enter the Tag": "タグを入力してください", + "Title": "タイトル", + "Choose on map": "地図上で選択する", + "Where is the event?": "イベントはどこですか?", + "Add Members": "メンバーを追加する", + "All Events": "すべてのイベント", + "Created Events": "作成されたイベント", + "Registered Events": "登録されたイベント", + "Send": "送信", + "Write your comment here..": "ここにコメントを書いてください..", + "You need access": "アクセスが必要です", + "Request access, or switch to an account with access": "アクセスを要求するか、アクセス権のあるアカウントに切り替える", + "Request Access": "アクセスをリクエストする", + "Last Name": "苗字", + "First Name": "名", + "Edit Profile": "プロフィールを編集", + "Log Out": "ログアウト", + "Please Select an amount": "金額を選択してください", + "Input custom amount": "カスタム金額を入力", + "Organisation Name": "組織の名前", + "Choose an Organization": "組織を選択する", + "Your Report has been sent to the Admin": "あなたのレポートは管理者に送信されました", + "Report the post to the Admin": "投稿を管理者に報告する", + "Do you really want to delete the post?": "本当に投稿を削除しますか?", + "Liked": "いいね", + "Add Task Title": "タスクのタイトルを追加", + "Describe the task": "タスクを説明する", + "Looks like there aren't any events.": "イベントがないようです。", + "You have not created any event.": "あなたはどんなイベントも作成していません。", + "No registered events are present": "登録されたイベントは存在しません", + "There aren't any public events.": "公開イベントはありません。", + "There aren't any private events.": "プライベートイベントはありません。", + "Donate to the Community": "コミュニティに寄付する", + "Donating to": "に寄付する", + "Are you sure you want to delete this event?": "このイベントを削除してもよろしいですか?", + "Are you sure you want to exit this organization?": "この組織を退出してもよろしいですか?", + "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc": "これはプロファイルタブです。ここでは、アカウント、アプリの設定、招待、ヘルプなどに関連するすべてのオプションを見ることができます。", + "You can edit application settings like language, theme etc from here": "ここから言語、テーマなどのアプリケーションの設定を編集できます。", + "For any help we are always there. You can reach us from here": "お手伝いが必要な場合はいつでもお手伝いします。ここからお問い合わせいただけます。", + "Current selected Organization Name": "現在選択されている組織の名前", + "Click this button to see options related to switching, joining and leaving organization(s)": "組織の切り替え、参加、退出に関連するオプションを見るには、このボタンをクリックしてください。", + "Current selected Organization's Name appears here": "現在選択されている組織の名前がここに表示されます。", + "All your joined organizations appear over here you can click on them to change the current organization": "参加したすべての組織がここに表示され、現在の組織を変更するにはそれらをクリックできます。", + "From this button you can join other listed organizations": "このボタンから他のリストされた組織に参加できます。", + "To leave the current organization you can use this option": "現在の組織を退出するには、このオプションを使用できます。", + "This is the post card you can like and comment on the post from the options available": "これは投稿カードです。利用可能なオプションから投稿にいいねやコメントをすることができます。", + "This is the Events tab here you can see all event related information of the current selected organization": "これはイベントタブです。ここでは、現在選択されている組織の関連するすべてのイベント情報を見ることができます。", + "This is the home tab here you can see the latest post from other members of the current organization": "これはホームタブです。ここでは、現在の組織の他のメンバーの最新の投稿を見ることができます。", + "This section displays all the important post set by the organization admin(s)": "このセクションには組織の管理者によって設定されたすべての重要な投稿が表示されます。", + "Filter Events based on categories": "カテゴリに基づいてイベントをフィルタリング", + "Filter Events between selected dates": "選択した日付の間でイベントをフィルタリング", + "Description of event to see more details click on the card": "詳細を見るには、イベントの説明をクリックしてください。", + "This is the Create post tab here you can add post to the current selected organization": "これは投稿を作成するタブです。ここでは、現在選択されている組織に投稿を追加できます。", + "This is the Chat tab here you can see all your messages of the current selected organization": "これはチャットタブです。ここでは、現在選択されている組織のすべてのメッセージを見ることができます。", + "To help your organization grow you can support them financially from here": "組織の成長をサポートするためには、ここから経済的にサポートできます。", + "You are all set to go let's get you in": "準備が整いました。さあ、始めましょう。" } diff --git a/lang/pt.json b/lang/pt.json index 1b156b3b68..1b2c338c2b 100644 --- a/lang/pt.json +++ b/lang/pt.json @@ -104,7 +104,7 @@ "My Events": "Meus Eventos", "Public Events": "Eventos Públicos", "Private Events": "Eventos Privados", - "Liked by": "Apreciado por", + "Liked by": "Curtido por", "Comments": "Comentários", "FirstName LastName": "Primeiro nome, ultimo nome", "Pinned Posts": "Postagens fixadas", @@ -169,8 +169,69 @@ "Dismiss": "liberar", "No organizations found Please contact your admin": "Neniuj organizoj trovitaj! Bonvolu kontakti vian administranton", "For complete access, please": "Para acesso completo, por favor", - " join an organization.": " ingressar em uma organização.", - "JOIN":"ENTRAR", + "join an organization.": " ingressar em uma organização.", + "JOIN": "ENTRAR", "Camera": "Câmera", - "Gallery": "Galeria" + "Gallery": "Galeria", + "NEXT": "PRÓXIMO", + "COMPLETE": "COMPLETO", + "Start app tour to know talawa functioning": "Inicie o tour do aplicativo para conhecer o funcionamento do talawa", + "Scan QR": "Escanear QR", + "Add tag": "Adicionar tag", + "Enter the Tag": "Digite a Tag", + "Title": "Título", + "Choose on map": "Escolher no mapa", + "Where is the event?": "Onde é o evento?", + "Add Members": "Adicionar membros", + "All Events": "Todos os eventos", + "Created Events": "Eventos criados", + "Registered Events": "Eventos registrados", + "Send": "Enviar", + "Write your comment here..": "Escreva seu comentário aqui..", + "You need access": "Você precisa de acesso", + "Request access, or switch to an account with access": "Solicitar acesso ou mudar para uma conta com acesso", + "Request Access": "Solicitar acesso", + "Last Name": "Sobrenome", + "First Name": "Nome", + "Edit Profile": "Editar perfil", + "Log Out": "Sair", + "Please Select an amount": "Por favor, selecione um valor", + "Input custom amount": "Inserir valor personalizado", + "Organisation Name": "Nome da Organização", + "Choose an Organization": "Escolha uma Organização", + "Your Report has been sent to the Admin": "Seu relatório foi enviado ao Administrador", + "Report the post to the Admin": "Reportar a postagem ao Administrador", + "Do you really want to delete the post?": "Você realmente quer deletar a postagem?", + "Liked": "Curtido", + "Add Task Title": "Adicionar título da tarefa", + "Describe the task": "Descrever a tarefa", + "Looks like there aren't any events.": "Parece que não há eventos.", + "You have not created any event.": "Você não criou nenhum evento.", + "No registered events are present": "Não há eventos registrados", + "There aren't any public events.": "Não há eventos públicos.", + "There aren't any private events.": "Não há eventos privados.", + "Donate to the Community": "Doar para a Comunidade", + "Donating to": "Doando para", + "Are you sure you want to delete this event?": "Tem certeza de que deseja excluir este evento?", + "Are you sure you want to exit this organization?": "Tem certeza de que deseja sair desta organização?", + "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc": "Esta é a aba de Perfil, onde você pode ver todas as opções relacionadas à conta, configurações do aplicativo, convites, ajuda, etc.", + "You can edit application settings like language, theme etc from here": "Você pode editar as configurações do aplicativo, como idioma, tema, etc., a partir daqui", + "For any help we are always there. You can reach us from here": "Para qualquer ajuda, estamos sempre aqui. Você pode nos contatar a partir daqui", + "Current selected Organization Name": "Nome da organização atualmente selecionada", + "Click this button to see options related to switching, joining and leaving organization(s)": "Clique neste botão para ver opções relacionadas a trocar, juntar-se e sair de organizações", + "Current selected Organization's Name appears here": "O nome da organização atualmente selecionada aparece aqui", + "All your joined organizations appear over here you can click on them to change the current organization": "Todas as organizações às quais você se juntou aparecem aqui; você pode clicar nelas para mudar a organização atual", + "From this button you can join other listed organizations": "A partir deste botão, você pode se juntar a outras organizações listadas", + "To leave the current organization you can use this option": "Para sair da organização atual, você pode usar esta opção", + "This is the post card you can like and comment on the post from the options available": "Este é o cartão de postagem; você pode curtir e comentar na postagem a partir das opções disponíveis", + "This is the Events tab here you can see all event related information of the current selected organization": "Esta é a aba de Eventos; aqui você pode ver todas as informações relacionadas a eventos da organização atualmente selecionada", + "This is the home tab here you can see the latest post from other members of the current organization": "Esta é a aba Início; aqui você pode ver a última postagem de outros membros da organização atual", + "This section displays all the important post set by the organization admin(s)": "Esta seção exibe todas as postagens importantes definidas pelos administradores da organização", + "Filter Events based on categories": "Filtre eventos com base em categorias", + "Filter Events between selected dates": "Filtre eventos entre as datas selecionadas", + "Description of event to see more details click on the card": "Descrição do evento; para ver mais detalhes, clique no cartão", + "This is the Create post tab here you can add post to the current selected organization": "Esta é a aba de Criar postagem; aqui você pode adicionar uma postagem à organização atualmente selecionada", + "This is the Chat tab here you can see all your messages of the current selected organization": "Esta é a aba de Chat; aqui você pode ver todas as suas mensagens da organização atualmente selecionada", + "To help your organization grow you can support them financially from here": "Para ajudar sua organização a crescer, você pode apoiá-la financeiramente a partir daqui", + "You are all set to go let's get you in": "Você está pronto para ir; vamos começar" } diff --git a/lang/zh.json b/lang/zh.json index 42d7157e05..8c7f25b69a 100644 --- a/lang/zh.json +++ b/lang/zh.json @@ -67,7 +67,7 @@ "Where is the event": "活动地点", "Add Location": "添加位置", "Describe the event": "描述事件", - "Add Description": "添加说明", + "Add Description": "添加描述", "Add Event": "添加事件", "Add": "添加", "Add Image": "添加图片", @@ -169,8 +169,69 @@ "Dismiss": "解雇", "No organizations found Please contact your admin": "Neniuj organizoj trovitaj! Bonvolu kontakti vian administranton", "For complete access, please": "如需完整访问,请", - " join an organization.": " 加入一个组织。", - "JOIN":"加入", + "join an organization.": " 加入一个组织。", + "JOIN": "加入", "Camera": "相机", - "Gallery": "画廊" + "Gallery": "画廊", + "NEXT": "下一个", + "COMPLETE": "完成", + "Start app tour to know talawa functioning": "启动应用程序导览以了解塔拉瓦的功能", + "Scan QR": "扫描QR码", + "Add tag": "添加标签", + "Enter the Tag": "输入标签", + "Title": "标题", + "Choose on map": "在地图上选择", + "Where is the event?": "事件在哪里?", + "Add Members": "添加成员", + "All Events": "所有活动", + "Created Events": "创建的活动", + "Registered Events": "注册的活动", + "Send": "发送", + "Write your comment here..": "在此处写下您的评论..", + "You need access": "您需要访问权限", + "Request access, or switch to an account with access": "请求访问权限,或切换到有访问权限的账户", + "Request Access": "请求访问", + "Last Name": "姓氏", + "First Name": "名字", + "Edit Profile": "编辑个人资料", + "Log Out": "登出", + "Please Select an amount": "请选择一个金额", + "Input custom amount": "输入自定义金额", + "Organisation Name": "组织名称", + "Choose an Organization": "选择一个组织", + "Your Report has been sent to the Admin": "您的报告已发送给管理员", + "Report the post to the Admin": "向管理员举报帖子", + "Do you really want to delete the post?": "您真的想要删除这个帖子吗?", + "Liked": "喜欢", + "Add Task Title": "添加任务标题", + "Describe the task": "描述任务", + "Looks like there aren't any events.": "看起来没有任何活动。", + "You have not created any event.": "您还没有创建任何活动。", + "No registered events are present": "没有注册的活动", + "There aren't any public events.": "没有公开的活动。", + "There aren't any private events.": "没有私人活动。", + "Donate to the Community": "向社区捐款", + "Donating to": "捐赠给", + "Are you sure you want to delete this event?": "您确定要删除此活动吗?", + "Are you sure you want to exit this organization?": "您确定要退出这个组织吗?", + "This is the Profile tab here you can see all options related to account, app setting, invitation, help etc": "这是个人资料选项卡,您可以在此处查看与帐户、应用设置、邀请、帮助等相关的所有选项。", + "You can edit application settings like language, theme etc from here": "您可以从这里编辑应用程序设置,如语言、主题等。", + "For any help we are always there. You can reach us from here": "任何帮助我们都会在这里。您可以通过这里联系我们。", + "Current selected Organization Name": "当前选择的组织名称", + "Click this button to see options related to switching, joining and leaving organization(s)": "单击此按钮以查看与切换、加入和离开组织相关的选项。", + "Current selected Organization's Name appears here": "当前选择的组织名称将显示在此处。", + "All your joined organizations appear over here you can click on them to change the current organization": "您加入的所有组织都会显示在这里,您可以单击它们以更改当前的组织。", + "From this button you can join other listed organizations": "您可以通过此按钮加入其他列出的组织。", + "To leave the current organization you can use this option": "要离开当前组织,您可以使用此选项。", + "This is the post card you can like and comment on the post from the options available": "这是帖子卡片,您可以从可用的选项中点赞并评论帖子。", + "This is the Events tab here you can see all event related information of the current selected organization": "这是活动选项卡,您可以在此处查看当前选择组织的所有与活动相关的信息。", + "This is the home tab here you can see the latest post from other members of the current organization": "这是主页选项卡,您可以在此处查看当前组织其他成员的最新帖子。", + "This section displays all the important post set by the organization admin(s)": "此部分显示由组织管理员设置的所有重要帖子。", + "Filter Events based on categories": "基于类别筛选事件", + "Filter Events between selected dates": "在选定的日期之间筛选事件", + "Description of event to see more details click on the card": "事件描述以查看更多详情,请单击卡片。", + "This is the Create post tab here you can add post to the current selected organization": "这是创建帖子选项卡,您可以在此处向当前选择的组织添加帖子。", + "This is the Chat tab here you can see all your messages of the current selected organization": "这是聊天选项卡,您可以在此处查看当前选择组织的所有消息。", + "To help your organization grow you can support them financially from here": "要帮助您的组织成长,您可以从这里提供财务支持。", + "You are all set to go let's get you in": "您已经准备好了,让我们开始吧。" } diff --git a/lib/main.dart b/lib/main.dart index 7ec3b18905..4ed80df749 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -252,6 +252,7 @@ class _MyAppState extends State { AppLocalizations.delegate, GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, + GlobalCupertinoLocalizations.delegate, ], title: 'Talawa', theme: Provider.of(context).isdarkTheme diff --git a/lib/services/navigation_service.dart b/lib/services/navigation_service.dart index 805bcc7680..909a91a2d8 100644 --- a/lib/services/navigation_service.dart +++ b/lib/services/navigation_service.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; import 'package:talawa/enums/enums.dart'; +import 'package:talawa/utils/app_localization.dart'; import 'package:talawa/widgets/talawa_error_dialog.dart'; import 'package:talawa/widgets/talawa_error_snackbar.dart'; @@ -122,7 +123,10 @@ class NavigationService { SnackBar( behavior: SnackBarBehavior.floating, duration: duration, - content: Text(message), + content: Text( + AppLocalizations.of(navigatorKey.currentContext!)! + .strictTranslate(message), + ), ), ); } diff --git a/lib/view_model/main_screen_view_model.dart b/lib/view_model/main_screen_view_model.dart index 9766c29f5c..6aa06ee37a 100644 --- a/lib/view_model/main_screen_view_model.dart +++ b/lib/view_model/main_screen_view_model.dart @@ -1,749 +1,749 @@ -import 'dart:async'; -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:hive/hive.dart'; -import 'package:talawa/locator.dart'; -import 'package:talawa/models/app_tour.dart'; -import 'package:talawa/plugins/fetch_plugin_list.dart'; -import 'package:talawa/utils/app_localization.dart'; -import 'package:talawa/view_model/base_view_model.dart'; -// import 'package:talawa/views/after_auth_screens/chat/chat_list_screen.dart'; -import 'package:talawa/views/after_auth_screens/events/explore_events.dart'; -import 'package:talawa/views/after_auth_screens/feed/organization_feed.dart'; -import 'package:talawa/views/after_auth_screens/profile/profile_page.dart'; -import 'package:talawa/views/demo_screens/explore_events_demo.dart'; -import 'package:talawa/views/demo_screens/organization_feed_demo.dart'; -import 'package:talawa/views/demo_screens/profile_page_demo.dart'; -import 'package:talawa/widgets/custom_alert_dialog.dart'; -import 'package:talawa/widgets/theme_switch.dart'; -import 'package:tutorial_coach_mark/tutorial_coach_mark.dart'; - -/// MainScreenViewModel class provide methods to interact with the modal to serve data in user's action in Main Screen Views. -/// -/// The functions in this class are -/// mainly in the context of Tutorials for different componenets of the App. -/// -/// Functions include: -/// * `showTutorial` -/// * `showHome` -/// * `tourEventTargets` -/// * `tourAddPost` -/// * `tourChat` -/// * `tourProfile` -class MainScreenViewModel extends BaseModel { - /// static variables. - static final GlobalKey scaffoldKey = - GlobalKey(); - - /// static variables. - final GlobalKey keyBNHome = GlobalKey(debugLabel: "HomeTab"); - - /// static variables. - final GlobalKey keyBNDemoHome = GlobalKey(debugLabel: "DemoHomeTab"); - - /// static variables. - final GlobalKey keySHPinnedPost = - GlobalKey(debugLabel: "HomeScreenPinnedPost"); - - /// static variables. - final GlobalKey keySHPost = GlobalKey(debugLabel: "HomeScreenPost"); - - /// static variables. - final GlobalKey keySHOrgName = GlobalKey(debugLabel: "HomeScreenOrgName"); - - /// static variables. - final GlobalKey keySHMenuIcon = GlobalKey(debugLabel: "HomeScreenMenuIcon"); - - /// static variables. - static final GlobalKey keyDrawerCurOrg = - GlobalKey(debugLabel: "DrawerCurrentOrg"); - - /// static variables. - static final GlobalKey keyDrawerSwitchableOrg = - GlobalKey(debugLabel: "DrawerSwitchableOrg"); - - /// static variables. - static final GlobalKey keyDrawerJoinOrg = - GlobalKey(debugLabel: "DrawerJoinOrg"); - - /// static variables. - static final GlobalKey keyDrawerLeaveCurrentOrg = - GlobalKey(debugLabel: "DrawerLeaveCurrentOr"); - - /// static variables. - final GlobalKey keyBNEvents = GlobalKey(debugLabel: "EventTab"); - - /// static variables. - final GlobalKey keyBNDemoEvents = GlobalKey(debugLabel: "DemoEventTab"); - - /// static variables. - final GlobalKey keySECategoryMenu = - GlobalKey(debugLabel: "EventScreenCategory"); - - /// static variables. - final GlobalKey keySEDateFilter = - GlobalKey(debugLabel: "EventScreenDateFilter"); - - /// static variables. - final GlobalKey keySEAdd = GlobalKey(debugLabel: "EventScreenAdd"); - - /// static variables. - final GlobalKey keySECard = GlobalKey(debugLabel: "EventScreenCard"); - - /// static variables. - final GlobalKey keyBNPost = GlobalKey(debugLabel: "PostTab"); - - /// static variables. - final GlobalKey keyBNDemoPost = GlobalKey(debugLabel: "DemoPostTab"); - - /// static variables. - final GlobalKey keyBNChat = GlobalKey(debugLabel: "ChatTab"); - - /// static variables. - final GlobalKey keyBNProfile = GlobalKey(debugLabel: "ProfileTab"); - - /// static variables. - final GlobalKey keyBNDemoProfile = GlobalKey(debugLabel: "DemoProfileTab"); - - /// static variables. - final GlobalKey keySPEditProfile = GlobalKey(debugLabel: "ProfileScreenEdit"); - - /// static variables. - final GlobalKey keySPAppSetting = - GlobalKey(debugLabel: "ProfileScreenAppSetting"); - - /// static variables. - final GlobalKey keySPHelp = GlobalKey(debugLabel: "ProfileScreenHelp"); - - /// static variables. - final GlobalKey keySPDonateUs = - GlobalKey(debugLabel: "ProfileScreenDonateUs"); - - /// static variables. - final GlobalKey keySPInvite = GlobalKey(debugLabel: "ProfileScreenInvite"); - - /// static variables. - final GlobalKey keySPLogout = GlobalKey(debugLabel: "ProfileScreenLogout"); - - /// static variables. - final GlobalKey keySPPalisadoes = - GlobalKey(debugLabel: "ProfileScreenPalisadoes"); - - /// bool to determine if we wanna show the apptour. - late bool showAppTour; - - /// bool to determine if apptour is complete. - bool tourComplete = false; - - /// bool to determine if apptour is skipped. - bool tourSkipped = false; - - /// context consist of parent info. - late BuildContext context; - - /// tutorialCoachMark consist of coach used to give tutorial. - late AppTour appTour = AppTour(model: this); - - /// array of target. - final List targets = []; - - /// flag to represent if app is in demoMode. - bool demoMode = false; - - /// flag to represent if app is in testMode. - bool testMode = false; - - /// Initalizing function. - /// - /// **params**: - /// * `ctx`: BuildContext, contain parent info - /// * `fromSignUp`: Bool to find user entry - /// * `mainScreenIndex`: Index to find tab on mainScreen - /// - /// **returns**: - /// None - void initialise( - BuildContext ctx, { - required bool fromSignUp, - required int mainScreenIndex, - bool demoMode = false, - bool testMode = false, - }) { - this.testMode = testMode; - this.demoMode = demoMode; - currentPageIndex = mainScreenIndex; - showAppTour = fromSignUp || demoMode; - context = ctx; - - print(ctx); - print(context); - pluginPrototypeData = { - "Donation": { - "icon": Icons.attach_money_outlined, - "page": const ChangeThemeTile(), - }, - }; - - notifyListeners(); - if (!showAppTour) { - tourComplete = true; - tourSkipped = false; - } else { - Future.delayed( - const Duration(seconds: 1), - () => navigationService.pushDialog( - appTourDialog(ctx), - ), - ); - } - } - - /// Contains the Widgets to be rendered for corresponding navbar items. - /// - /// Features that should be implemented as plugins should be kept here. - List pages = []; - - /// Actual [BottomNavigationBarItem]s that show up on the screen. - List navBarItems = []; - - /// Maps the feature names with their proper Icon and Page. - /// - /// `icon` contains the [IconData] corresponding to plugin's icon. - /// `page` contains the corresponding page to be displayed. - /// Name of the feature provided by the admin must [exactly] match with the. - /// name stored here. - Map pluginPrototypeData = {}; - - /// list of all the pluginList. - List pluginList = []; - - /// Dynamically adds [BottomNavigationBarItems] in `BottomNavigationBar`. - /// - /// by mapping over the data received from the server. - /// - /// **params**: - /// * `context`: its the same context you use everywhere in the flutter framework refer flutter docs for more info. - /// - /// **returns**: - /// None - void fetchAndAddPlugins( - BuildContext context, - ) { - navBarItems = [ - BottomNavigationBarItem( - icon: Icon( - Icons.home, - key: keyBNHome, - ), - label: AppLocalizations.of(context)!.strictTranslate('Home'), - ), - BottomNavigationBarItem( - icon: Icon( - Icons.event_note, - key: keyBNEvents, - ), - label: AppLocalizations.of(context)!.strictTranslate('Events'), - ), - - /// Makes chat inaccessible for the user - //TODO: add chat functionality - // BottomNavigationBarItem( - // icon: Icon( - // Icons.chat_outlined, - // key: keyBNChat, - // ), - // label: AppLocalizations.of(context)!.strictTranslate('Chat'), - // ), - BottomNavigationBarItem( - icon: Icon( - Icons.account_circle, - key: keyBNProfile, - ), - label: AppLocalizations.of(context)!.strictTranslate('Profile'), - ), - ]; - - if (!demoMode) { - pages = [ - OrganizationFeed( - key: const Key("HomeView"), - homeModel: this, - ), - ExploreEvents( - key: const Key('ExploreEvents'), - homeModel: this, - ), - // AddPost( - // key: const Key('AddPost'), - // drawerKey: MainScreenViewModel.scaffoldKey, - // ), - // const ChatPage( - // key: Key('Chats'), - // ), - ProfilePage( - key: keySPEditProfile, - homeModel: this, - ), - ]; - pluginList = - (Hive.box('pluginBox').get('plugins') ?? []) as List; - - print(pluginPrototypeData); - pluginList.forEach((plugin) { - if (pluginPrototypeData.containsKey( - (plugin as Map)["pluginName"] as String, - ) && - plugin["pluginInstallStatus"] as bool) { - navBarItems.add( - BottomNavigationBarItem( - icon: Icon( - (pluginPrototypeData[plugin["pluginName"]] - as Map)["icon"] as IconData, - ), - label: AppLocalizations.of(context)!.strictTranslate( - plugin["pluginName"] as String, - ), - ), - ); - pages.add( - (pluginPrototypeData[plugin["pluginName"]] - as Map)["class"] as StatelessWidget, - ); - } - }); - - /// Causes the app check the plugins updates in every 300 sec - /// - /// updated and re-render the navbar - Timer.periodic(Duration(seconds: (testMode ? 1 : 300)), (timer) { - FetchPluginList(); - final newPluginList = - (Hive.box('pluginBox').get('plugins') ?? []) as List; - - if (listEquals(pluginList, newPluginList)) { - // notifyListeners(); - } - if (testMode) timer.cancel(); - }); - } else { - pages = [ - DemoOrganizationFeed( - key: const Key("DemoHomeView"), - homeModel: this, - ), - DemoExploreEvents( - key: const Key('DemoExploreEvents'), - homeModel: this, - ), - // DemoAddPost( - // key: const Key('DemoAddPost'), - // drawerKey: MainScreenViewModel.scaffoldKey, - // ), - // const ChatPage( - // key: Key('Chats'), - // ), - DemoProfilePage( - key: const Key('DemoProfile'), - homeModel: this, - ), - ]; - } - } - - /// var for current page in index. - int currentPageIndex = 0; - - /// Handles click on [BottomNavigationBarItem]. - /// - /// **params**: - /// * `index`: it is track of current page index. - /// - /// **returns**: - /// None - void onTabTapped(int index) { - currentPageIndex = index; - notifyListeners(); - } - - Widget appTourDialog(BuildContext ctx) { - return CustomAlertDialog( - dialogTitle: 'App Tour', - dialogSubTitle: 'Start app tour to know talawa functioning', - successText: 'Start', - secondaryButtonText: 'Skip', - success: () { - navigationService.pop(); - print(MainScreenViewModel.scaffoldKey.currentState?.isDrawerOpen); - if (MainScreenViewModel.scaffoldKey.currentState?.isDrawerOpen ?? - false) { - MainScreenViewModel.scaffoldKey.currentState?.closeDrawer(); - } - tourHomeTargets(); - }, - secondaryButtonTap: () { - tourComplete = false; - tourSkipped = true; - navigationService.pop(); - notifyListeners(); - }, - ); - } - - /// this functions starts the tour and info to be displayed is mentioned in this functions. - /// - /// **params**: - /// None - /// - /// **returns**: - /// None - void tourHomeTargets() { - targets.clear(); - targets.add( - FocusTarget( - key: keySHOrgName, - keyName: 'keySHOrgName', - description: 'Current selected Organization Name', - appTour: appTour, - ), - ); - targets.add( - FocusTarget( - key: keySHMenuIcon, - keyName: 'keySHMenuIcon', - description: - 'Click this button to see options related to switching, joining and leaving organization(s)', - isCircle: true, - next: () => scaffoldKey.currentState!.openDrawer(), - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keyDrawerCurOrg, - keyName: 'keyDrawerCurOrg', - description: "Current selected Organization's Name appears here", - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keyDrawerSwitchableOrg, - keyName: 'keyDrawerSwitchableOrg', - description: - "All your joined organizations appear over here you can click on them to change the current organization", - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keyDrawerJoinOrg, - keyName: 'keyDrawerJoinOrg', - description: "From this button you can join other listed organizations", - appTour: appTour, - align: ContentAlign.top, - next: () { - if (!userConfig.loggedIn) { - navigationService.pop(); - } - }, - ), - ); - - if (userConfig.loggedIn) { - targets.add( - FocusTarget( - key: keyDrawerLeaveCurrentOrg, - keyName: 'keyDrawerLeaveCurrentOrg', - description: - "To leave the current organization you can use this option", - align: ContentAlign.top, - next: () => navigationService.pop(), - appTour: appTour, - ), - ); - } - - targets.add( - FocusTarget( - key: keyBNHome, - keyName: 'keyBNHome', - description: - "This is the home tab here you can see the latest post from other members of the current organization", - isCircle: true, - align: ContentAlign.top, - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySHPinnedPost, - keyName: 'keySHPinnedPost', - description: - "This section displays all the important post set by the organization admin(s)", - align: ContentAlign.bottom, - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySHPost, - keyName: 'keySHPost', - description: - "This is the post card you can like and comment on the post from the options available", - align: ContentAlign.bottom, - appTour: appTour, - ), - ); - appTour.showTutorial( - onClickTarget: showHome, - onFinish: () { - onTabTapped(currentPageIndex + 1); - if (!tourComplete && !tourSkipped) { - tourEventTargets(); - } - }, - targets: targets, - ); - } - - /// This function shows the Home screen. - /// - /// **params**: - /// * `clickedTarget`: object to identify clickedTarget. - /// - /// **returns**: - /// None - void showHome(TargetFocus clickedTarget) { - switch (clickedTarget.identify) { - case "keySHMenuIcon": - scaffoldKey.currentState!.openDrawer(); - break; - case "keyDrawerLeaveCurrentOrg": - navigationService.pop(); - } - } - - /// This function show the tutorial for Events. - /// - /// **params**: - /// None - /// - /// **returns**: - /// None - void tourEventTargets() { - targets.clear(); - targets.add( - FocusTarget( - key: keyBNEvents, - keyName: 'keyBNEvents', - description: - 'This is the Events tab here you can see all event related information of the current selected organization', - isCircle: true, - align: ContentAlign.top, - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySECategoryMenu, - keyName: 'keySECategoryMenu', - description: 'Filter Events based on categories', - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySEDateFilter, - keyName: 'keySEDateFilter', - description: 'Filter Events between selected dates', - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySECard, - keyName: 'keySECard', - description: - 'Description of event to see more details click on the card', - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySEAdd, - keyName: 'keySEAdd', - description: 'You can create a new event from here', - align: ContentAlign.top, - appTour: appTour, - ), - ); - - appTour.showTutorial( - onFinish: () { - onTabTapped(currentPageIndex + 1); - if (!tourComplete && !tourSkipped) { - tourProfile(); - } - }, - onClickTarget: (TargetFocus a) {}, - targets: targets, - ); - } - - /// This function show the tutorial to add Post in the organization. - /// - /// **params**: - /// None - /// - /// **returns**: - /// None - void tourAddPost() { - targets.clear(); - targets.add( - FocusTarget( - key: keyBNPost, - keyName: 'keyBNPost', - description: - 'This is the Create post tab here you can add post to the current selected organization', - isCircle: true, - align: ContentAlign.top, - appTour: appTour, - ), - ); - appTour.showTutorial( - onFinish: () { - onTabTapped(currentPageIndex + 1); - if (!tourComplete && !tourSkipped) { - // tourChat(); - tourProfile(); - } - }, - onClickTarget: (TargetFocus a) {}, - targets: targets, - ); - } - - /// This function show the tour of chats. - /// - /// **params**: - /// None - /// - /// **returns**: - /// None - void tourChat() { - targets.clear(); - targets.add( - FocusTarget( - key: keyBNChat, - keyName: 'keyBNChat', - description: - 'This is the Chat tab here you can see all your messages of the current selected organization', - isCircle: true, - align: ContentAlign.top, - appTour: appTour, - ), - ); - appTour.showTutorial( - onFinish: () { - onTabTapped(currentPageIndex + 1); - if (!tourComplete && !tourSkipped) { - tourProfile(); - } - }, - onClickTarget: (TargetFocus a) {}, - targets: targets, - ); - } - - /// This function show the tutorial for the profile page. - /// - /// **params**: - /// None - /// - /// **returns**: - /// None - void tourProfile() { - targets.clear(); - targets.add( - FocusTarget( - key: keyBNProfile, - keyName: 'keyBNProfile', - description: - 'This is the Profile tab here you can see all options related to account, app setting, invitation, help etc', - isCircle: true, - align: ContentAlign.top, - nextCrossAlign: CrossAxisAlignment.start, - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySPAppSetting, - keyName: 'keySPAppSetting', - description: - 'You can edit application settings like language, theme etc from here', - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySPHelp, - keyName: 'keySPHelp', - description: - 'For any help we are always there. You can reach us from here', - appTour: appTour, - ), - ); - - targets.add( - FocusTarget( - key: keySPDonateUs, - keyName: 'keySPDonateUs', - description: - 'To help your organization grow you can support them financially from here', - appTour: appTour, - ), - ); - -// Uncomment the section below if you want to add the keySPInvite target -// targets.add( -// FocusTarget( -// key: keySPInvite, -// keyName: 'keySPInvite', -// description: 'Wanna invite colleague, invite them from here', -// ), -// ); - - targets.add( - FocusTarget( - key: keySPPalisadoes, - keyName: 'keySPPalisadoes', - description: 'You are all set to go lets get you in', - isEnd: true, - appTour: appTour, - ), - ); - - appTour.showTutorial( - onFinish: () { - if (!tourComplete && !tourSkipped) { - tourComplete = true; - onTabTapped(0); - } - }, - onClickTarget: (TargetFocus a) {}, - targets: targets, - ); - } -} +import 'dart:async'; +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; +import 'package:hive/hive.dart'; +import 'package:talawa/locator.dart'; +import 'package:talawa/models/app_tour.dart'; +import 'package:talawa/plugins/fetch_plugin_list.dart'; +import 'package:talawa/utils/app_localization.dart'; +import 'package:talawa/view_model/base_view_model.dart'; +// import 'package:talawa/views/after_auth_screens/chat/chat_list_screen.dart'; +import 'package:talawa/views/after_auth_screens/events/explore_events.dart'; +import 'package:talawa/views/after_auth_screens/feed/organization_feed.dart'; +import 'package:talawa/views/after_auth_screens/profile/profile_page.dart'; +import 'package:talawa/views/demo_screens/explore_events_demo.dart'; +import 'package:talawa/views/demo_screens/organization_feed_demo.dart'; +import 'package:talawa/views/demo_screens/profile_page_demo.dart'; +import 'package:talawa/widgets/custom_alert_dialog.dart'; +import 'package:talawa/widgets/theme_switch.dart'; +import 'package:tutorial_coach_mark/tutorial_coach_mark.dart'; + +/// MainScreenViewModel class provide methods to interact with the modal to serve data in user's action in Main Screen Views. +/// +/// The functions in this class are +/// mainly in the context of Tutorials for different componenets of the App. +/// +/// Functions include: +/// * `showTutorial` +/// * `showHome` +/// * `tourEventTargets` +/// * `tourAddPost` +/// * `tourChat` +/// * `tourProfile` +class MainScreenViewModel extends BaseModel { + /// static variables. + static final GlobalKey scaffoldKey = + GlobalKey(); + + /// static variables. + final GlobalKey keyBNHome = GlobalKey(debugLabel: "HomeTab"); + + /// static variables. + final GlobalKey keyBNDemoHome = GlobalKey(debugLabel: "DemoHomeTab"); + + /// static variables. + final GlobalKey keySHPinnedPost = + GlobalKey(debugLabel: "HomeScreenPinnedPost"); + + /// static variables. + final GlobalKey keySHPost = GlobalKey(debugLabel: "HomeScreenPost"); + + /// static variables. + final GlobalKey keySHOrgName = GlobalKey(debugLabel: "HomeScreenOrgName"); + + /// static variables. + final GlobalKey keySHMenuIcon = GlobalKey(debugLabel: "HomeScreenMenuIcon"); + + /// static variables. + static final GlobalKey keyDrawerCurOrg = + GlobalKey(debugLabel: "DrawerCurrentOrg"); + + /// static variables. + static final GlobalKey keyDrawerSwitchableOrg = + GlobalKey(debugLabel: "DrawerSwitchableOrg"); + + /// static variables. + static final GlobalKey keyDrawerJoinOrg = + GlobalKey(debugLabel: "DrawerJoinOrg"); + + /// static variables. + static final GlobalKey keyDrawerLeaveCurrentOrg = + GlobalKey(debugLabel: "DrawerLeaveCurrentOr"); + + /// static variables. + final GlobalKey keyBNEvents = GlobalKey(debugLabel: "EventTab"); + + /// static variables. + final GlobalKey keyBNDemoEvents = GlobalKey(debugLabel: "DemoEventTab"); + + /// static variables. + final GlobalKey keySECategoryMenu = + GlobalKey(debugLabel: "EventScreenCategory"); + + /// static variables. + final GlobalKey keySEDateFilter = + GlobalKey(debugLabel: "EventScreenDateFilter"); + + /// static variables. + final GlobalKey keySEAdd = GlobalKey(debugLabel: "EventScreenAdd"); + + /// static variables. + final GlobalKey keySECard = GlobalKey(debugLabel: "EventScreenCard"); + + /// static variables. + final GlobalKey keyBNPost = GlobalKey(debugLabel: "PostTab"); + + /// static variables. + final GlobalKey keyBNDemoPost = GlobalKey(debugLabel: "DemoPostTab"); + + /// static variables. + final GlobalKey keyBNChat = GlobalKey(debugLabel: "ChatTab"); + + /// static variables. + final GlobalKey keyBNProfile = GlobalKey(debugLabel: "ProfileTab"); + + /// static variables. + final GlobalKey keyBNDemoProfile = GlobalKey(debugLabel: "DemoProfileTab"); + + /// static variables. + final GlobalKey keySPEditProfile = GlobalKey(debugLabel: "ProfileScreenEdit"); + + /// static variables. + final GlobalKey keySPAppSetting = + GlobalKey(debugLabel: "ProfileScreenAppSetting"); + + /// static variables. + final GlobalKey keySPHelp = GlobalKey(debugLabel: "ProfileScreenHelp"); + + /// static variables. + final GlobalKey keySPDonateUs = + GlobalKey(debugLabel: "ProfileScreenDonateUs"); + + /// static variables. + final GlobalKey keySPInvite = GlobalKey(debugLabel: "ProfileScreenInvite"); + + /// static variables. + final GlobalKey keySPLogout = GlobalKey(debugLabel: "ProfileScreenLogout"); + + /// static variables. + final GlobalKey keySPPalisadoes = + GlobalKey(debugLabel: "ProfileScreenPalisadoes"); + + /// bool to determine if we wanna show the apptour. + late bool showAppTour; + + /// bool to determine if apptour is complete. + bool tourComplete = false; + + /// bool to determine if apptour is skipped. + bool tourSkipped = false; + + /// context consist of parent info. + late BuildContext context; + + /// tutorialCoachMark consist of coach used to give tutorial. + late AppTour appTour = AppTour(model: this); + + /// array of target. + final List targets = []; + + /// flag to represent if app is in demoMode. + bool demoMode = false; + + /// flag to represent if app is in testMode. + bool testMode = false; + + /// Initalizing function. + /// + /// **params**: + /// * `ctx`: BuildContext, contain parent info + /// * `fromSignUp`: Bool to find user entry + /// * `mainScreenIndex`: Index to find tab on mainScreen + /// + /// **returns**: + /// None + void initialise( + BuildContext ctx, { + required bool fromSignUp, + required int mainScreenIndex, + bool demoMode = false, + bool testMode = false, + }) { + this.testMode = testMode; + this.demoMode = demoMode; + currentPageIndex = mainScreenIndex; + showAppTour = fromSignUp || demoMode; + context = ctx; + + print(ctx); + print(context); + pluginPrototypeData = { + "Donation": { + "icon": Icons.attach_money_outlined, + "page": const ChangeThemeTile(), + }, + }; + + notifyListeners(); + if (!showAppTour) { + tourComplete = true; + tourSkipped = false; + } else { + Future.delayed( + const Duration(seconds: 1), + () => navigationService.pushDialog( + appTourDialog(ctx), + ), + ); + } + } + + /// Contains the Widgets to be rendered for corresponding navbar items. + /// + /// Features that should be implemented as plugins should be kept here. + List pages = []; + + /// Actual [BottomNavigationBarItem]s that show up on the screen. + List navBarItems = []; + + /// Maps the feature names with their proper Icon and Page. + /// + /// `icon` contains the [IconData] corresponding to plugin's icon. + /// `page` contains the corresponding page to be displayed. + /// Name of the feature provided by the admin must [exactly] match with the. + /// name stored here. + Map pluginPrototypeData = {}; + + /// list of all the pluginList. + List pluginList = []; + + /// Dynamically adds [BottomNavigationBarItems] in `BottomNavigationBar`. + /// + /// by mapping over the data received from the server. + /// + /// **params**: + /// * `context`: its the same context you use everywhere in the flutter framework refer flutter docs for more info. + /// + /// **returns**: + /// None + void fetchAndAddPlugins( + BuildContext context, + ) { + navBarItems = [ + BottomNavigationBarItem( + icon: Icon( + Icons.home, + key: keyBNHome, + ), + label: AppLocalizations.of(context)!.strictTranslate('Home'), + ), + BottomNavigationBarItem( + icon: Icon( + Icons.event_note, + key: keyBNEvents, + ), + label: AppLocalizations.of(context)!.strictTranslate('Events'), + ), + + /// Makes chat inaccessible for the user + //TODO: add chat functionality + // BottomNavigationBarItem( + // icon: Icon( + // Icons.chat_outlined, + // key: keyBNChat, + // ), + // label: AppLocalizations.of(context)!.strictTranslate('Chat'), + // ), + BottomNavigationBarItem( + icon: Icon( + Icons.account_circle, + key: keyBNProfile, + ), + label: AppLocalizations.of(context)!.strictTranslate('Profile'), + ), + ]; + + if (!demoMode) { + pages = [ + OrganizationFeed( + key: const Key("HomeView"), + homeModel: this, + ), + ExploreEvents( + key: const Key('ExploreEvents'), + homeModel: this, + ), + // AddPost( + // key: const Key('AddPost'), + // drawerKey: MainScreenViewModel.scaffoldKey, + // ), + // const ChatPage( + // key: Key('Chats'), + // ), + ProfilePage( + key: keySPEditProfile, + homeModel: this, + ), + ]; + pluginList = + (Hive.box('pluginBox').get('plugins') ?? []) as List; + + print(pluginPrototypeData); + pluginList.forEach((plugin) { + if (pluginPrototypeData.containsKey( + (plugin as Map)["pluginName"] as String, + ) && + plugin["pluginInstallStatus"] as bool) { + navBarItems.add( + BottomNavigationBarItem( + icon: Icon( + (pluginPrototypeData[plugin["pluginName"]] + as Map)["icon"] as IconData, + ), + label: AppLocalizations.of(context)!.strictTranslate( + plugin["pluginName"] as String, + ), + ), + ); + pages.add( + (pluginPrototypeData[plugin["pluginName"]] + as Map)["class"] as StatelessWidget, + ); + } + }); + + /// Causes the app check the plugins updates in every 300 sec + /// + /// updated and re-render the navbar + Timer.periodic(Duration(seconds: (testMode ? 1 : 300)), (timer) { + FetchPluginList(); + final newPluginList = + (Hive.box('pluginBox').get('plugins') ?? []) as List; + + if (listEquals(pluginList, newPluginList)) { + // notifyListeners(); + } + if (testMode) timer.cancel(); + }); + } else { + pages = [ + DemoOrganizationFeed( + key: const Key("DemoHomeView"), + homeModel: this, + ), + DemoExploreEvents( + key: const Key('DemoExploreEvents'), + homeModel: this, + ), + // DemoAddPost( + // key: const Key('DemoAddPost'), + // drawerKey: MainScreenViewModel.scaffoldKey, + // ), + // const ChatPage( + // key: Key('Chats'), + // ), + DemoProfilePage( + key: const Key('DemoProfile'), + homeModel: this, + ), + ]; + } + } + + /// var for current page in index. + int currentPageIndex = 0; + + /// Handles click on [BottomNavigationBarItem]. + /// + /// **params**: + /// * `index`: it is track of current page index. + /// + /// **returns**: + /// None + void onTabTapped(int index) { + currentPageIndex = index; + notifyListeners(); + } + + Widget appTourDialog(BuildContext ctx) { + return CustomAlertDialog( + dialogTitle: 'App Tour', + dialogSubTitle: 'Start app tour to know talawa functioning', + successText: 'Start', + secondaryButtonText: 'Skip', + success: () { + navigationService.pop(); + print(MainScreenViewModel.scaffoldKey.currentState?.isDrawerOpen); + if (MainScreenViewModel.scaffoldKey.currentState?.isDrawerOpen ?? + false) { + MainScreenViewModel.scaffoldKey.currentState?.closeDrawer(); + } + tourHomeTargets(); + }, + secondaryButtonTap: () { + tourComplete = false; + tourSkipped = true; + navigationService.pop(); + notifyListeners(); + }, + ); + } + + /// this functions starts the tour and info to be displayed is mentioned in this functions. + /// + /// **params**: + /// None + /// + /// **returns**: + /// None + void tourHomeTargets() { + targets.clear(); + targets.add( + FocusTarget( + key: keySHOrgName, + keyName: 'keySHOrgName', + description: 'Current selected Organization Name', + appTour: appTour, + ), + ); + targets.add( + FocusTarget( + key: keySHMenuIcon, + keyName: 'keySHMenuIcon', + description: + 'Click this button to see options related to switching, joining and leaving organization(s)', + isCircle: true, + next: () => scaffoldKey.currentState!.openDrawer(), + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keyDrawerCurOrg, + keyName: 'keyDrawerCurOrg', + description: "Current selected Organization's Name appears here", + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keyDrawerSwitchableOrg, + keyName: 'keyDrawerSwitchableOrg', + description: + "All your joined organizations appear over here you can click on them to change the current organization", + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keyDrawerJoinOrg, + keyName: 'keyDrawerJoinOrg', + description: "From this button you can join other listed organizations", + appTour: appTour, + align: ContentAlign.top, + next: () { + if (!userConfig.loggedIn) { + navigationService.pop(); + } + }, + ), + ); + + if (userConfig.loggedIn) { + targets.add( + FocusTarget( + key: keyDrawerLeaveCurrentOrg, + keyName: 'keyDrawerLeaveCurrentOrg', + description: + "To leave the current organization you can use this option", + align: ContentAlign.top, + next: () => navigationService.pop(), + appTour: appTour, + ), + ); + } + + targets.add( + FocusTarget( + key: keyBNHome, + keyName: 'keyBNHome', + description: + "This is the home tab here you can see the latest post from other members of the current organization", + isCircle: true, + align: ContentAlign.top, + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySHPinnedPost, + keyName: 'keySHPinnedPost', + description: + "This section displays all the important post set by the organization admin(s)", + align: ContentAlign.bottom, + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySHPost, + keyName: 'keySHPost', + description: + "This is the post card you can like and comment on the post from the options available", + align: ContentAlign.bottom, + appTour: appTour, + ), + ); + appTour.showTutorial( + onClickTarget: showHome, + onFinish: () { + onTabTapped(currentPageIndex + 1); + if (!tourComplete && !tourSkipped) { + tourEventTargets(); + } + }, + targets: targets, + ); + } + + /// This function shows the Home screen. + /// + /// **params**: + /// * `clickedTarget`: object to identify clickedTarget. + /// + /// **returns**: + /// None + void showHome(TargetFocus clickedTarget) { + switch (clickedTarget.identify) { + case "keySHMenuIcon": + scaffoldKey.currentState!.openDrawer(); + break; + case "keyDrawerLeaveCurrentOrg": + navigationService.pop(); + } + } + + /// This function show the tutorial for Events. + /// + /// **params**: + /// None + /// + /// **returns**: + /// None + void tourEventTargets() { + targets.clear(); + targets.add( + FocusTarget( + key: keyBNEvents, + keyName: 'keyBNEvents', + description: + 'This is the Events tab here you can see all event related information of the current selected organization', + isCircle: true, + align: ContentAlign.top, + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySECategoryMenu, + keyName: 'keySECategoryMenu', + description: 'Filter Events based on categories', + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySEDateFilter, + keyName: 'keySEDateFilter', + description: 'Filter Events between selected dates', + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySECard, + keyName: 'keySECard', + description: + 'Description of event to see more details click on the card', + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySEAdd, + keyName: 'keySEAdd', + description: 'You can create a new event from here', + align: ContentAlign.top, + appTour: appTour, + ), + ); + + appTour.showTutorial( + onFinish: () { + onTabTapped(currentPageIndex + 1); + if (!tourComplete && !tourSkipped) { + tourProfile(); + } + }, + onClickTarget: (TargetFocus a) {}, + targets: targets, + ); + } + + /// This function show the tutorial to add Post in the organization. + /// + /// **params**: + /// None + /// + /// **returns**: + /// None + void tourAddPost() { + targets.clear(); + targets.add( + FocusTarget( + key: keyBNPost, + keyName: 'keyBNPost', + description: + 'This is the Create post tab here you can add post to the current selected organization', + isCircle: true, + align: ContentAlign.top, + appTour: appTour, + ), + ); + appTour.showTutorial( + onFinish: () { + onTabTapped(currentPageIndex + 1); + if (!tourComplete && !tourSkipped) { + // tourChat(); + tourProfile(); + } + }, + onClickTarget: (TargetFocus a) {}, + targets: targets, + ); + } + + /// This function show the tour of chats. + /// + /// **params**: + /// None + /// + /// **returns**: + /// None + void tourChat() { + targets.clear(); + targets.add( + FocusTarget( + key: keyBNChat, + keyName: 'keyBNChat', + description: + 'This is the Chat tab here you can see all your messages of the current selected organization', + isCircle: true, + align: ContentAlign.top, + appTour: appTour, + ), + ); + appTour.showTutorial( + onFinish: () { + onTabTapped(currentPageIndex + 1); + if (!tourComplete && !tourSkipped) { + tourProfile(); + } + }, + onClickTarget: (TargetFocus a) {}, + targets: targets, + ); + } + + /// This function show the tutorial for the profile page. + /// + /// **params**: + /// None + /// + /// **returns**: + /// None + void tourProfile() { + targets.clear(); + targets.add( + FocusTarget( + key: keyBNProfile, + keyName: 'keyBNProfile', + description: + 'This is the Profile tab here you can see all options related to account, app setting, invitation, help etc', + isCircle: true, + align: ContentAlign.top, + nextCrossAlign: CrossAxisAlignment.start, + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySPAppSetting, + keyName: 'keySPAppSetting', + description: + 'You can edit application settings like language, theme etc from here', + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySPHelp, + keyName: 'keySPHelp', + description: + 'For any help we are always there. You can reach us from here', + appTour: appTour, + ), + ); + + targets.add( + FocusTarget( + key: keySPDonateUs, + keyName: 'keySPDonateUs', + description: + 'To help your organization grow you can support them financially from here', + appTour: appTour, + ), + ); + +// Uncomment the section below if you want to add the keySPInvite target +// targets.add( +// FocusTarget( +// key: keySPInvite, +// keyName: 'keySPInvite', +// description: 'Wanna invite colleague, invite them from here', +// ), +// ); + + targets.add( + FocusTarget( + key: keySPPalisadoes, + keyName: 'keySPPalisadoes', + description: 'You are all set to go lets get you in', + isEnd: true, + appTour: appTour, + ), + ); + + appTour.showTutorial( + onFinish: () { + if (!tourComplete && !tourSkipped) { + tourComplete = true; + onTabTapped(0); + } + }, + onClickTarget: (TargetFocus a) {}, + targets: targets, + ); + } +} diff --git a/lib/views/after_auth_screens/add_post_page.dart b/lib/views/after_auth_screens/add_post_page.dart index 028f751a9d..9ec32746c7 100644 --- a/lib/views/after_auth_screens/add_post_page.dart +++ b/lib/views/after_auth_screens/add_post_page.dart @@ -118,7 +118,10 @@ class _AddPostState extends State { context: context, builder: (BuildContext context) { return AlertDialog( - title: const Text("Enter the Tag"), + title: Text( + AppLocalizations.of(context)! + .strictTranslate("Enter the Tag"), + ), content: TextField( controller: model.textHashTagController, ), @@ -132,14 +135,20 @@ class _AddPostState extends State { ); Navigator.of(context).pop(); }, - child: const Text("Add"), + child: Text( + AppLocalizations.of(context)! + .strictTranslate("Add"), + ), ), TextButton( key: const Key("cancel_hashtag_button"), onPressed: () { Navigator.of(context).pop(); }, - child: const Text("Cancel"), + child: Text( + AppLocalizations.of(context)! + .strictTranslate("Cancel"), + ), ), ], ); diff --git a/lib/views/after_auth_screens/events/create_event_form.dart b/lib/views/after_auth_screens/events/create_event_form.dart index 30c31db7f9..440a608c3a 100644 --- a/lib/views/after_auth_screens/events/create_event_form.dart +++ b/lib/views/after_auth_screens/events/create_event_form.dart @@ -1,6 +1,3 @@ -// ignore_for_file: talawa_api_doc -// ignore_for_file: talawa_good_doc_comments - import 'package:flutter/material.dart'; import 'package:talawa/constants/routing_constants.dart'; import 'package:talawa/locator.dart'; @@ -33,7 +30,8 @@ class CreateEventForm extends StatelessWidget { validator: (value) => Validator.validateEventForm(value!, 'Title'), decoration: InputDecoration( // placeholder of the text field - labelText: 'Add Event Title', + labelText: AppLocalizations.of(context)! + .strictTranslate('Add Event Title'), isDense: true, labelStyle: Theme.of(context).textTheme.titleMedium, focusedBorder: InputBorder.none, @@ -65,8 +63,10 @@ class CreateEventForm extends StatelessWidget { validator: (value) => Validator.validateEventForm(value!, 'Location'), decoration: InputDecoration( - hintText: 'Where is the event?', - labelText: 'Add Location', + hintText: AppLocalizations.of(context)! + .strictTranslate('Where is the event?'), + labelText: + AppLocalizations.of(context)!.strictTranslate('Add Location'), labelStyle: Theme.of(context).textTheme.titleMedium, border: InputBorder.none, focusedBorder: InputBorder.none, @@ -118,8 +118,10 @@ class CreateEventForm extends StatelessWidget { maxLines: 10, minLines: 1, decoration: InputDecoration( - hintText: 'Describe the event', - labelText: 'Add Description', + hintText: AppLocalizations.of(context)! + .strictTranslate('Describe the event'), + labelText: AppLocalizations.of(context)! + .strictTranslate('Add Description'), labelStyle: Theme.of(context).textTheme.titleMedium, border: InputBorder.none, focusedBorder: InputBorder.none, diff --git a/lib/views/after_auth_screens/events/create_event_page.dart b/lib/views/after_auth_screens/events/create_event_page.dart index 608f9975c9..c3e7e84efb 100644 --- a/lib/views/after_auth_screens/events/create_event_page.dart +++ b/lib/views/after_auth_screens/events/create_event_page.dart @@ -335,7 +335,11 @@ class _CreateEventPageState extends State { child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - Text("Add Members", style: subtitleTextStyle), + Text( + AppLocalizations.of(context)! + .strictTranslate("Add Members"), + style: subtitleTextStyle, + ), Icon( Icons.add, color: Theme.of(context).colorScheme.secondary, diff --git a/lib/views/after_auth_screens/events/explore_events.dart b/lib/views/after_auth_screens/events/explore_events.dart index cc9d665df7..119b315536 100644 --- a/lib/views/after_auth_screens/events/explore_events.dart +++ b/lib/views/after_auth_screens/events/explore_events.dart @@ -242,7 +242,12 @@ class ExploreEvents extends StatelessWidget { ? SizedBox( height: SizeConfig.screenHeight! * 0.5, child: Center( - child: Text(model.emptyListMessage), + child: Text( + AppLocalizations.of(context)! + .strictTranslate( + model.emptyListMessage, + ), + ), ), ) : ListView.builder( diff --git a/lib/views/after_auth_screens/feed/individual_post.dart b/lib/views/after_auth_screens/feed/individual_post.dart index 6a1033a5eb..d2be8c3469 100644 --- a/lib/views/after_auth_screens/feed/individual_post.dart +++ b/lib/views/after_auth_screens/feed/individual_post.dart @@ -1,6 +1,3 @@ -// ignore_for_file: talawa_api_doc -// ignore_for_file: talawa_good_doc_comments - import 'package:flutter/material.dart'; import 'package:talawa/models/comment/comment_model.dart'; import 'package:talawa/models/post/post_model.dart'; @@ -48,9 +45,11 @@ class _IndividualPostViewState extends State { _controller.text = ""; }, textAlign: TextAlign.start, - decoration: const InputDecoration( - hintText: "Write your comment here..", - contentPadding: EdgeInsets.all(8.0), + decoration: InputDecoration( + hintText: AppLocalizations.of(context)!.strictTranslate( + "Write your comment here..", + ), + contentPadding: const EdgeInsets.all(8.0), focusColor: Colors.black, border: InputBorder.none, ), @@ -63,7 +62,11 @@ class _IndividualPostViewState extends State { _commentViewModel.createComment(_controller.text); _controller.text = ""; }, - child: const Text("Send"), + child: Text( + AppLocalizations.of(context)!.strictTranslate( + "Send", + ), + ), ), ], ), @@ -124,7 +127,12 @@ class IndividualPageLikeSection extends StatelessWidget { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - buildPadding(context, "Liked by"), + buildPadding( + context, + AppLocalizations.of(context)!.strictTranslate( + "Liked by", + ), + ), Row( children: [ // Looping through the usersLiked list, diff --git a/lib/views/after_auth_screens/join_org_after_auth/join_organisation_after_auth.dart b/lib/views/after_auth_screens/join_org_after_auth/join_organisation_after_auth.dart index a18bfe9960..fa519edbb8 100644 --- a/lib/views/after_auth_screens/join_org_after_auth/join_organisation_after_auth.dart +++ b/lib/views/after_auth_screens/join_org_after_auth/join_organisation_after_auth.dart @@ -129,7 +129,9 @@ class JoinOrganisationAfterAuth extends StatelessWidget { SizedBox( height: SizeConfig.safeBlockVertical! * 4, ), - const Text('Scan QR'), + Text( + AppLocalizations.of(context)!.strictTranslate('Scan QR'), + ), SizedBox( height: SizeConfig.safeBlockVertical! * 4, ), diff --git a/lib/views/after_auth_screens/profile/profile_page.dart b/lib/views/after_auth_screens/profile/profile_page.dart index ab058478d8..787bbd875e 100644 --- a/lib/views/after_auth_screens/profile/profile_page.dart +++ b/lib/views/after_auth_screens/profile/profile_page.dart @@ -84,9 +84,10 @@ class ProfilePage extends StatelessWidget { navigationService .pushScreen("/editProfilePage"); }, - child: const Text( - "Edit Profile", - style: TextStyle( + child: Text( + AppLocalizations.of(context)! + .strictTranslate("Edit Profile"), + style: const TextStyle( fontFamily: 'open-sans', ), ), @@ -99,9 +100,10 @@ class ProfilePage extends StatelessWidget { onPressed: () { model.logout(context); }, - child: const Text( - "Log Out", - style: TextStyle( + child: Text( + AppLocalizations.of(context)! + .strictTranslate("Log Out"), + style: const TextStyle( fontFamily: 'open-sans', ), ), @@ -364,7 +366,7 @@ class ProfilePage extends StatelessWidget { padding: const EdgeInsets.only(top: 8.0), // display title child: Text( - 'Donating to \n${model.currentOrg.name}', + '${AppLocalizations.of(context)!.strictTranslate('Donating to')}\n${model.currentOrg.name}', style: Theme.of(context) .textTheme .headlineMedium! @@ -400,7 +402,8 @@ class ProfilePage extends StatelessWidget { height: SizeConfig.screenWidth! * 0.05, ), Text( - 'Please Select and amount', + AppLocalizations.of(context)! + .strictTranslate('Please Select any amount'), style: Theme.of(context).textTheme.headlineSmall, ), SizedBox( @@ -428,7 +431,8 @@ class ProfilePage extends StatelessWidget { style: Theme.of(context).textTheme.headlineSmall, ), Text( - 'Input custom amount', + AppLocalizations.of(context)! + .strictTranslate('Input custom amount'), style: Theme.of(context).textTheme.headlineSmall, ), SizedBox( diff --git a/lib/views/demo_screens/organization_feed_demo.dart b/lib/views/demo_screens/organization_feed_demo.dart index ec4f9b8496..5b2375d91e 100644 --- a/lib/views/demo_screens/organization_feed_demo.dart +++ b/lib/views/demo_screens/organization_feed_demo.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; import 'package:talawa/models/post/post_model.dart'; +import 'package:talawa/utils/app_localization.dart'; import 'package:talawa/view_model/main_screen_view_model.dart'; import 'package:talawa/widgets/pinned_post.dart'; @@ -95,7 +96,7 @@ class DemoOrganizationFeed extends StatelessWidget { elevation: 0.0, centerTitle: true, title: Text( - "Organisation Name", + AppLocalizations.of(context)!.strictTranslate("Organisation Name"), key: homeModel?.keySHOrgName, style: Theme.of(context).textTheme.titleLarge!.copyWith( fontSize: 20, diff --git a/lib/views/pre_auth_screens/select_organization.dart b/lib/views/pre_auth_screens/select_organization.dart index 8b5214e298..1c89c39935 100644 --- a/lib/views/pre_auth_screens/select_organization.dart +++ b/lib/views/pre_auth_screens/select_organization.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; import 'package:talawa/services/size_config.dart'; +import 'package:talawa/utils/app_localization.dart'; import 'package:talawa/view_model/pre_auth_view_models/select_organization_view_model.dart'; import 'package:talawa/views/base_view.dart'; import 'package:talawa/widgets/organization_list.dart'; @@ -36,13 +37,14 @@ class _SelectOrganizationState extends State { mainAxisAlignment: MainAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.center, children: [ - const Padding( - padding: EdgeInsets.symmetric( + Padding( + padding: const EdgeInsets.symmetric( horizontal: 18, ), child: Text( - "Choose an Organization", - style: TextStyle(fontSize: 40), + AppLocalizations.of(context)! + .strictTranslate("Choose an Organization"), + style: const TextStyle(fontSize: 40), ), ), Expanded(child: OrganizationList(model: model)), diff --git a/lib/widgets/custom_alert_dialog.dart b/lib/widgets/custom_alert_dialog.dart index e6cc779e8f..74121a8c95 100644 --- a/lib/widgets/custom_alert_dialog.dart +++ b/lib/widgets/custom_alert_dialog.dart @@ -91,7 +91,9 @@ class CustomAlertDialog extends StatelessWidget { .headlineSmall! .copyWith(fontWeight: FontWeight.w800), ), - content: Text(dialogSubTitle), + content: Text( + AppLocalizations.of(context)!.strictTranslate(dialogSubTitle), + ), buttonPadding: EdgeInsets.symmetric( horizontal: SizeConfig.screenWidth! * 0.05, vertical: SizeConfig.screenHeight! * 0.05, diff --git a/lib/widgets/task_form.dart b/lib/widgets/task_form.dart index 25b8cbd37e..f5f3376036 100644 --- a/lib/widgets/task_form.dart +++ b/lib/widgets/task_form.dart @@ -1,6 +1,3 @@ -// ignore_for_file: talawa_api_doc -// ignore_for_file: talawa_good_doc_comments - import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:talawa/locator.dart'; @@ -144,7 +141,8 @@ class TitleField extends StatelessWidget { maxLength: 100, validator: (value) => Validator.validateEventForm(value!, 'Title'), decoration: InputDecoration( - labelText: 'Add Task Title', + labelText: + AppLocalizations.of(context)!.strictTranslate('Add Task Title'), isDense: true, labelStyle: Theme.of(context).textTheme.titleMedium, focusedBorder: InputBorder.none, @@ -182,8 +180,10 @@ class DescriptionField extends StatelessWidget { maxLines: 10, minLines: 1, decoration: InputDecoration( - hintText: 'Describe the task', - labelText: 'Add Description', + hintText: + AppLocalizations.of(context)!.strictTranslate('Describe the task'), + labelText: + AppLocalizations.of(context)!.strictTranslate('Add Description'), labelStyle: Theme.of(context).textTheme.titleMedium, border: InputBorder.none, focusedBorder: InputBorder.none, diff --git a/test/model_tests/app_tour_test.dart b/test/model_tests/app_tour_test.dart index 57579acafa..c65cfb8cb6 100644 --- a/test/model_tests/app_tour_test.dart +++ b/test/model_tests/app_tour_test.dart @@ -10,7 +10,7 @@ import 'package:talawa/view_model/main_screen_view_model.dart'; import 'package:talawa/views/base_view.dart'; import 'package:tutorial_coach_mark/tutorial_coach_mark.dart'; -import '../router_test.dart'; +class MockBuildContext extends Mock implements BuildContext {} class CustomTutorialController extends TutorialCoachMarkController { @override @@ -86,6 +86,7 @@ void main() { testWidgets('Test for showTutorial method.', (tester) async { AppTour? mockAppTour; FocusTarget? mockFocusTarget; + BuildContext? capturedContext; final app = BaseView( onModelReady: (model) => model.initialize(), builder: (context, langModel, child) { @@ -105,6 +106,7 @@ void main() { testMode: true, ), builder: (context, model2, child) { + capturedContext = context; mockAppTour = AppTour(model: model2); mockFocusTarget = FocusTarget( key: MainScreenViewModel.keyDrawerLeaveCurrentOrg, @@ -151,6 +153,7 @@ void main() { expect(tutorialBtn, findsOneWidget); (tester.widget(tutorialBtn) as TextButton).onPressed!(); + await tester.pumpAndSettle(); mockAppTour!.tutorialCoachMark.onSkip!(); mockAppTour!.tutorialCoachMark.onClickOverlay!( @@ -161,7 +164,7 @@ void main() { ); (mockFocusTarget!.focusWidget.contents![1].builder!( - MockBuildContext(), + capturedContext!, CustomTutorialController(), ) as GestureDetector) .onTap!(); diff --git a/test/service_tests/navigation_service_test.dart b/test/service_tests/navigation_service_test.dart index e40d8f17e8..564cc28b56 100644 --- a/test/service_tests/navigation_service_test.dart +++ b/test/service_tests/navigation_service_test.dart @@ -106,6 +106,41 @@ class _HomeAppState extends State { } } +class HomeApp2 extends StatefulWidget { + const HomeApp2({ + super.key, + required this.onClick, + required this.navigateorKey, + }); + final GlobalKey navigateorKey; + final VoidCallback onClick; + + @override + State createState() => _HomeAppState2(); +} + +class _HomeAppState2 extends State { + @override + Widget build(BuildContext context) { + return MaterialApp( + locale: const Locale('en'), + localizationsDelegates: [ + const AppLocalizationsDelegate(isTest: true), + GlobalMaterialLocalizations.delegate, + GlobalWidgetsLocalizations.delegate, + ], + navigatorKey: widget.navigateorKey, + initialRoute: '/', + onGenerateRoute: _onGenerateTestRoute, + home: FirstTestScreen( + onClick: () { + widget.onClick(); + }, + ), + ); + } +} + class FirstTestScreen extends StatefulWidget { const FirstTestScreen({super.key, required this.onClick, this.arguments}); final VoidCallback onClick; @@ -441,7 +476,7 @@ void main() { }); testWidgets('showSnackBar() test with default duration', (tester) async { await tester.pumpWidget( - HomeApp( + HomeApp2( navigateorKey: mockKey, onClick: () { navigationService.showSnackBar('Hello Talawa'); @@ -459,7 +494,7 @@ void main() { }); testWidgets('showSnackBar() test with custom duration', (tester) async { await tester.pumpWidget( - HomeApp( + HomeApp2( navigateorKey: mockKey, onClick: () { navigationService.showSnackBar( diff --git a/test/view_model_tests/main_screen_view_model_test.dart b/test/view_model_tests/main_screen_view_model_test.dart index 3d83f41840..19bdf8616e 100644 --- a/test/view_model_tests/main_screen_view_model_test.dart +++ b/test/view_model_tests/main_screen_view_model_test.dart @@ -1,688 +1,688 @@ -// ignore_for_file: talawa_api_doc -// ignore_for_file: talawa_good_doc_comments - -import 'dart:io'; - -import 'package:flutter/material.dart'; -import 'package:flutter_localizations/flutter_localizations.dart'; -import 'package:flutter_test/flutter_test.dart'; -import 'package:hive/hive.dart'; -import 'package:mockito/mockito.dart'; -import 'package:talawa/router.dart' as router; -import 'package:talawa/services/size_config.dart'; -import 'package:talawa/utils/app_localization.dart'; -import 'package:talawa/utils/queries.dart'; -import 'package:talawa/view_model/lang_view_model.dart'; -import 'package:talawa/view_model/main_screen_view_model.dart'; -import 'package:talawa/view_model/theme_view_model.dart'; -import 'package:talawa/view_model/widgets_view_models/custom_drawer_view_model.dart'; -import 'package:talawa/views/base_view.dart'; -import 'package:talawa/widgets/custom_alert_dialog.dart'; -import 'package:talawa/widgets/custom_drawer.dart'; -import 'package:talawa/widgets/theme_switch.dart'; -import 'package:tutorial_coach_mark/tutorial_coach_mark.dart'; - -// import 'package:tutorial_coach_mark/tutorial_coach_mark.dart'; - -import '../helpers/test_helpers.dart'; -// import '../helpers/test_helpers.mocks.dart'; -import '../helpers/test_locator.dart'; -import '../model_tests/app_tour_test.dart'; - -Widget createAppTourDialog({bool demoMode = true}) => BaseView( - onModelReady: (model) => model.initialize(), - builder: (context, langModel, child) { - return MaterialApp( - locale: const Locale('en'), - localizationsDelegates: [ - const AppLocalizationsDelegate(isTest: true), - GlobalMaterialLocalizations.delegate, - GlobalWidgetsLocalizations.delegate, - ], - home: BaseView( - onModelReady: (model2) => model2.initialise( - context, - fromSignUp: false, - mainScreenIndex: 0, - demoMode: demoMode, - testMode: true, - ), - builder: (context, model2, child) { - model2.context = context; - model2.appTour = MockAppTour(model: model2); - model2.pluginPrototypeData.putIfAbsent( - "Plugin1", - () => { - "pluginName": "Plugin1", - "pluginInstallStatus": true, - 'icon': Icons.abc, - 'class': const ChangeThemeTile(), - }, - ); - model2.fetchAndAddPlugins(context); - return Scaffold( - drawer: CustomDrawer(homeModel: model2), - key: MainScreenViewModel.scaffoldKey, - body: model2.appTourDialog(context), - ); - }, - ), - navigatorKey: navigationService.navigatorKey, - onGenerateRoute: router.generateRoute, - ); - }, - ); - -class MockCallBack extends Mock { - void call(); -} - -class MockBuildContext extends Mock implements BuildContext {} - -MainScreenViewModel getModel() { - final model = MainScreenViewModel(); - model.context = MockBuildContext(); - return model; -} - -void verifyInteraction(dynamic x, {required String mockName}) { - // Ensures that navigation service was called - try { - verifyZeroInteractions(x); - //If 0 interactions passes that means mock was not called hence test fails - throw Exception("Expected interaction but found 0 with $mockName"); - } on TestFailure { - //If test fails then 1 or more interactions with navigation service hence test passes - expect(true, true); - } -} - -void main() async { - final Directory dir = Directory('test/fixtures/core'); - - Hive.init(dir.path); - // ..registerAdapter(UserAdapter()) - // ..registerAdapter(OrgInfoAdapter()); - - // final userBox = await Hive.openBox('currentUser'); - // final urlBox = await Hive.openBox('url'); - // final orgBox = await Hive.openBox('currentOrg'); - final pluginBox = await Hive.openBox('pluginBox'); - - final List> samplePluginData = [ - { - "pluginName": "Plugin1", - "pluginInstallStatus": true, - }, - // Add more sample plugin data as needed - ]; - - // Store the sample data in the 'plugins' key of 'pluginBox' - pluginBox.put('plugins', samplePluginData); - - // No need to change - setUpAll(() { - locator.registerFactory(() => CustomDrawerViewModel()); - locator.registerFactory(() => MainScreenViewModel()); - locator.registerFactory(() => AppTheme()); - locator.registerSingleton(SizeConfig()); - locator.registerFactory(() => Queries()); - locator().test(); - }); - - tearDownAll(() { - locator.unregister(); - File('test/fixtures/core/currentorg.hive').delete(); - File('test/fixtures/core/currentorg.lock').delete(); - File('test/fixtures/core/currentuser.hive').delete(); - File('test/fixtures/core/currentuser.lock').delete(); - File('test/fixtures/core/pluginbox.hive').delete(); - File('test/fixtures/core/pluginbox.lock').delete(); - }); - - group("MainScreen ViewModel Tests - ", () { - test("When initialized current index should be 0", () { - final mainTestModel = getModel(); - expect(mainTestModel.currentPageIndex, 0); - }); - }); - - // May need to change - group("onTabTapped -", () { - test("When an index is passed that, current index should equal that index", - () { - final mainTestModel = getModel(); - mainTestModel.onTabTapped(4); - expect(mainTestModel.currentPageIndex, 4); - }); - - test("When called function should notify listeners of tab change", () { - final mockcallback = MockCallBack(); - final mainTestModel = getModel(); - mainTestModel.addListener(mockcallback); - - mainTestModel.onTabTapped(0); - verify(mockcallback()).called(1); - }); - }); - - group("initialize", () { - final context = MockBuildContext(); - SizeConfig().test(); - setUp(() => registerServices()); - tearDown(() => unregisterServices()); - - void runIntialize({ - required bool fSignUp, - int mainIndex = 1, - required MainScreenViewModel model, - BuildContext? pcontext, - }) { - model.initialise( - pcontext ?? context, - fromSignUp: fSignUp, - mainScreenIndex: mainIndex, - ); - } - - test( - "MainScreenViewModel showAppTour and currentIndex should equal values passed to fromSignUp and mainScreenIndex", - () { - const bool fSignup = true; - const int mainIndex = 1; - final mainTestModel = getModel(); - runIntialize( - fSignUp: fSignup, - mainIndex: mainIndex, - model: mainTestModel, - ); - - expect(mainTestModel.showAppTour, fSignup); - expect(mainTestModel.currentPageIndex, mainIndex); - }); - - test('Test for showHome method', () { - final model = getModel(); - - model.showHome( - TargetFocus( - identify: "keyDrawerLeaveCurrentOrg", - keyTarget: MainScreenViewModel.keyDrawerLeaveCurrentOrg, - ), - ); - }); - - test( - "When fromSignUp is false tourComplete should equal true, tourSkipped and showApptour false", - () { - final mainTestModel = getModel(); - runIntialize(fSignUp: false, model: mainTestModel); - expect(mainTestModel.tourComplete, true); - expect(mainTestModel.tourSkipped, false); - expect(mainTestModel.showAppTour, false); - }); - - test("When fromSignUp is false, App Tour dialog should not be displayed", - () async { - final mocknav = getAndRegisterNavigationService(); - final mainTestModel = getModel(); - - mainTestModel.initialise( - MockBuildContext(), - fromSignUp: false, - mainScreenIndex: 0, - ); - - // Ensures that navigation service was not called - verifyZeroInteractions(mocknav); - }); - - testWidgets('Test for apptour dialog skip action.', (tester) async { - await tester.pumpWidget(createAppTourDialog()); - await tester.pumpAndSettle(const Duration(seconds: 1)); - - expect(find.byType(CustomAlertDialog), findsOneWidget); - - // await tester.pumpAndSettle(); - - final skipBtn = find.textContaining('Skip'); - - expect(skipBtn, findsOneWidget); - - await tester.tap(skipBtn); - await tester.pumpAndSettle( - const Duration(seconds: 1), - ); - }); - - testWidgets('Test for apptour dialog success action.', (tester) async { - await tester.pumpWidget(createAppTourDialog()); - await tester.pumpAndSettle(const Duration(seconds: 1)); - - final mockUserConfig = getAndRegisterUserConfig(); - when(mockUserConfig.loggedIn).thenReturn(true); - - MainScreenViewModel.scaffoldKey.currentState?.openDrawer(); - - expect(find.byType(CustomAlertDialog), findsOneWidget); - - final startBtn = find.textContaining('Start').last; - - expect(startBtn, findsOneWidget); - - await tester.tap(startBtn); - - await tester.pumpAndSettle(const Duration(seconds: 2)); - }); - - testWidgets('Test for fetchAndAddPlugins when not in demoMode', - (tester) async { - final app = createAppTourDialog(demoMode: false); - - await tester.pumpWidget(app); - await tester.pumpAndSettle(const Duration(seconds: 1)); - }); - - testWidgets('Test for tourhomeTargets.', (tester) async { - final model = getAndRegisterUserConfig(); - const val1 = true; - when(model.loggedIn).thenAnswer((_) => val1); - - // locator.registerFactory(() => CustomDrawerViewModel()); - - late final MainScreenViewModel mainScreenModel; - final app = MaterialApp( - builder: (context, child) => BaseView( - builder: (context, model2, child) { - model2.context = context; - model2.testMode = true; - mainScreenModel = model2; - model2.appTour = MockAppTour(model: model2); - model2.currentPageIndex = 0; - return Scaffold( - key: MainScreenViewModel.scaffoldKey, - drawer: CustomDrawer(homeModel: mainScreenModel), - body: TextButton( - onPressed: () { - model2.showHome( - TargetFocus( - identify: "keySHMenuIcon", - keyTarget: model2.keySHMenuIcon, - ), - ); - model2.tourHomeTargets(); - }, - child: const Text('tour home'), - ), - ); - }, - ), - ); - - await tester.pumpWidget(app); - - await tester.pumpAndSettle(const Duration(seconds: 1)); - - expect(find.textContaining('tour home'), findsOneWidget); - - await tester.tap(find.textContaining('tour home')); - - // // ignore: avoid_dynamic_calls - // print(mainScreenModel.targets[1].description); - - // // ignore: avoid_dynamic_calls - // mainScreenModel.targets[5].next!(); - - // verify(navigationService.pop()); - // locator.unregister(); - }); - - // testWidgets('Test for tourhomeTargets.', (tester) async { - // final model = getAndRegisterUserConfig(); - // bool val = false; - // when(model.loggedIn).thenAnswer((_) => val); - - // // locator.registerFactory(() => CustomDrawerViewModel()); - - // late final MainScreenViewModel mainScreenModel; - // final app =BaseView( - // builder: (context, model2, child) { - // model2.context = context; - // model2.testMode = true; - // mainScreenModel = model2; - // model2.currentPageIndex = 0; - // return MaterialApp( - // builder:(context, child) => Scaffold( - // body: Scaffold( - // key: MainScreenViewModel.scaffoldKey, - // drawer: CustomDrawer(homeModel: mainScreenModel), - // body: TextButton(onPressed: () { - // model2.tourHomeTargets(); - // }, child: const Text('tour home')), - // ), - // ) - // ); - // }, - - // ); - - // await tester.pumpWidget(app); - - // await tester.pumpAndSettle(const Duration(seconds: 1)); - - // expect(find.textContaining('tour home'), findsOneWidget); - - // await tester.tap(find.textContaining('tour home')); - - // mainScreenModel.targets[4].next!(); - - // verify(navigationService.pop()); - // }); - - // testWidgets('Test for tourEventTargets.', (tester) async { - // final model = getAndRegisterUserConfig(); - // when(model.loggedIn).thenAnswer((_) => true); - - // final app = BaseView( - // builder: (context, model2, child) { - // model2.context = context; - // model2.testMode = true; - // model2.appTour = MockAppTour(model: model2); - // model2.currentPageIndex = 1; - // return MaterialApp( - // builder: (context, child) => Scaffold( - // body: TextButton( - // onPressed: () { - // model2.tourEventTargets(); - // }, - // child: const Text('tour event targets'), - // ), - // ), - // ); - // }, - // ); - - // await tester.pumpWidget(app); - - // await tester.pumpAndSettle(const Duration(seconds: 1)); - - // expect(find.textContaining('tour event targets'), findsOneWidget); - - // await tester.tap(find.textContaining('tour event targets')); - // }); - - testWidgets('Test for tourChats.', (tester) async { - final model = getAndRegisterUserConfig(); - when(model.loggedIn).thenAnswer((_) => true); - - final app = BaseView( - builder: (context, model2, child) { - model2.context = context; - model2.testMode = true; - model2.appTour = MockAppTour(model: model2); - model2.currentPageIndex = 1; - return MaterialApp( - builder: (context, child) => Scaffold( - body: TextButton( - onPressed: () { - model2.tourChat(); - }, - child: const Text('tour chat targets'), - ), - ), - ); - }, - ); - - await tester.pumpWidget(app); - - await tester.pumpAndSettle(const Duration(seconds: 1)); - - expect(find.textContaining('tour chat targets'), findsOneWidget); - - await tester.tap(find.textContaining('tour chat targets')); - }); - - testWidgets('Test for addPost.', (tester) async { - final model = getAndRegisterUserConfig(); - when(model.loggedIn).thenAnswer((_) => true); - - final app = MaterialApp( - builder: (context, child) => BaseView( - builder: (context, model2, child) { - model2.context = context; - model2.testMode = true; - model2.appTour = MockAppTour(model: model2); - model2.currentPageIndex = 1; - return Scaffold( - body: TextButton( - onPressed: () { - model2.tourAddPost(); - }, - child: const Text('tour add post'), - ), - ); - }, - ), - ); - - await tester.pumpWidget(app); - - await tester.pumpAndSettle(const Duration(seconds: 1)); - - expect(find.textContaining('tour add post'), findsOneWidget); - - await tester.tap(find.textContaining('tour add post')); - }); - - // testWidgets('Test for profile tour.', (tester) async { - // final model = getAndRegisterUserConfig(); - // when(model.loggedIn).thenAnswer((_) => true); - - // final app = BaseView( - // builder: (context, model2, child) { - // model2.context = context; - // model2.testMode = true; - // model2.appTour = MockAppTour(model: model2); - // model2.currentPageIndex = 1; - // return MaterialApp( - // builder: (context, child) => Scaffold( - // body: TextButton( - // onPressed: () { - // model2.tourProfile(); - // }, - // child: const Text('tour profile'), - // ), - // ), - // ); - // }, - // ); - - // await tester.pumpWidget(app); - - // await tester.pumpAndSettle(const Duration(seconds: 1)); - - // expect(find.textContaining('tour profile'), findsOneWidget); - - // await tester.tap(find.textContaining('tour profile')); - - // // print(mockedModel.targets[5].); - // }); - - // testWidgets('Test for focustarget widget.', (tester) async { - // late MainScreenViewModel mockModel = MainScreenViewModel(); - - // model.focusTarget( model.keyBNChat, 'not', 'ok').contents[] - - // Widget app = BaseView( - // onModelReady: (model) => model.initialize(), - // builder: (context, model, child) { - // return MaterialApp( - // locale: const Locale('en'), - // localizationsDelegates: [ - // const AppLocalizationsDelegate(isTest: true), - // GlobalMaterialLocalizations.delegate, - // GlobalWidgetsLocalizations.delegate, - // ], - // theme: Provider.of(context).isdarkTheme - // ? TalawaTheme.darkTheme - // : TalawaTheme.lightTheme, - // home: BaseView( - // onModelReady: (model2) => model2.initialise(context, fromSignUp: false, mainScreenIndex: 0, testMode: true, demoMode: true), - // builder: (context, model2, child) { - // model2.context = context; - // mockModel = model2; - // return Scaffold( - // body: TextButton( - // child: const Text('press me'), - // onPressed: () { - // model2.tourProfile(); - // model2.showTutorial(onClickTarget: (targetFocus) { - // return TargetFocus(); - // }, onFinish: () { - // return TargetFocus(); - // }); - // }, - // ), - // ); - // }, - // ), - // navigatorKey: navigationService.navigatorKey, - // onGenerateRoute: router.generateRoute, - // ); - // }); - - // await tester.pumpWidget(app); - // await tester.pumpAndSettle(); - - // expect(find.text('press me'), findsOneWidget); - - // await tester.tap(find.text('press me')); - // await tester.pumpAndSettle(); - - // print(mockModel.targets); - - // }); - - // testWidgets('Test for fetchAndAddPlugins.', (tester) async { - - // await tester.pumpWidget(createAppTourDialog(demoMode: false,)); - // await tester.pumpAndSettle(const Duration(seconds: 1)); - - // }); - - // test("When fromSignUp is true, App Tour dialog should be displayed", - // () async { - // final mocknav = getAndRegisterNavigationService(); - // final mainTestModel = getModel(); - - // //Waits for any delay in navigation being called - // mainTestModel.initialise( - // mainTestModel.context, - // fromSignUp: true, - // mainScreenIndex: 0, - // ); - - // await Future.delayed(const Duration(seconds: 2)); - - // final captured = verify( - // (navigationService as MockNavigationService).pushDialog(captureAny), - // ).captured; - // captured[0].success(); - // captured[0].secondaryButtonTap(); - - // //Ensures that naviagation service was called - // verifyInteraction(mocknav, mockName: "NavigationService"); - // }); - // }); - - // group("showTutorial", () { - // final mainTestModel = getModel(); - // test("When called tutorial coach should be assigned a value", () { - // mainTestModel.showTutorial( - // onClickTarget: (TargetFocus x) {}, - // onFinish: () {}, - // ); - // expect(mainTestModel.tutorialCoachMark, isNotNull); - - // // mainTestModel.tutorialCoachMark.skip(); - // }); - // }); - - // group("tourHomeTargets", () { - // final mainTestModel = getModel(); - // final TargetFocus testTarget = - // TargetFocus(identify: "TestTarget", keyTarget: mainTestModel.keyBNChat); - // test("target list should be cleared before adding new targets", () { - // //Adding a testtarget before method is called - // mainTestModel.targets.add(testTarget); - // // mainTestModel.context = MockBuildContext(); - // mainTestModel.tourHomeTargets(); - // // targets list should not contain testtarget - // expect(mainTestModel.targets.contains(testTarget), false); - // }); - // }); - - // group("tourEventTargets", () { - // final mainTestModel = getModel(); - // test("target list should be cleared before adding new targets", () { - // final TargetFocus testTarget = TargetFocus( - // identify: "TestTarget", - // keyTarget: mainTestModel.keyBNChat, - // ); - // //Adding a target before method is called - // mainTestModel.targets.add(testTarget); - - // mainTestModel.tourEventTargets(); - // // targets list should not contain target - // expect(mainTestModel.targets.contains(testTarget), false); - // }); - // }); - - // group("tourAddPost", () { - // final mainTestModel = getModel(); - // test("target list should be cleared before adding new targets", () { - // final TargetFocus testTarget = TargetFocus( - // identify: "TestTarget", - // keyTarget: mainTestModel.keyBNChat, - // ); - // //Adding a target before method is called - // mainTestModel.targets.add(testTarget); - - // mainTestModel.tourAddPost(); - // // targets list should not contain target - // expect(mainTestModel.targets.contains(testTarget), false); - // }); - // }); - // group("tourChat", () { - // final mainTestModel = getModel(); - // test("target list should be cleared before adding new targets", () { - // final TargetFocus testTarget = TargetFocus( - // identify: "TestTarget", - // keyTarget: mainTestModel.keyBNChat, - // ); - // //Adding a target before method is called - // mainTestModel.targets.add(testTarget); - - // mainTestModel.tourChat(); - // // targets list should not contain target - // expect(mainTestModel.targets.contains(testTarget), false); - // }); - // }); - - // group("tourProfile", () { - // final mainTestModel = getModel(); - // test("target list should be cleared before adding new targets", () { - // final TargetFocus testTarget = TargetFocus( - // identify: "TestTarget", - // keyTarget: mainTestModel.keyBNChat, - // ); - // //Adding a target before method is called - // mainTestModel.targets.add(testTarget); - - // mainTestModel.tourProfile(); - // // targets list should not contain target - // expect(mainTestModel.targets.contains(testTarget), false); - // }); - }); -} +// ignore_for_file: talawa_api_doc +// ignore_for_file: talawa_good_doc_comments + +import 'dart:io'; + +import 'package:flutter/material.dart'; +import 'package:flutter_localizations/flutter_localizations.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:hive/hive.dart'; +import 'package:mockito/mockito.dart'; +import 'package:talawa/router.dart' as router; +import 'package:talawa/services/size_config.dart'; +import 'package:talawa/utils/app_localization.dart'; +import 'package:talawa/utils/queries.dart'; +import 'package:talawa/view_model/lang_view_model.dart'; +import 'package:talawa/view_model/main_screen_view_model.dart'; +import 'package:talawa/view_model/theme_view_model.dart'; +import 'package:talawa/view_model/widgets_view_models/custom_drawer_view_model.dart'; +import 'package:talawa/views/base_view.dart'; +import 'package:talawa/widgets/custom_alert_dialog.dart'; +import 'package:talawa/widgets/custom_drawer.dart'; +import 'package:talawa/widgets/theme_switch.dart'; +import 'package:tutorial_coach_mark/tutorial_coach_mark.dart'; + +// import 'package:tutorial_coach_mark/tutorial_coach_mark.dart'; + +import '../helpers/test_helpers.dart'; +// import '../helpers/test_helpers.mocks.dart'; +import '../helpers/test_locator.dart'; +import '../model_tests/app_tour_test.dart'; + +Widget createAppTourDialog({bool demoMode = true}) => BaseView( + onModelReady: (model) => model.initialize(), + builder: (context, langModel, child) { + return MaterialApp( + locale: const Locale('en'), + localizationsDelegates: [ + const AppLocalizationsDelegate(isTest: true), + GlobalMaterialLocalizations.delegate, + GlobalWidgetsLocalizations.delegate, + ], + home: BaseView( + onModelReady: (model2) => model2.initialise( + context, + fromSignUp: false, + mainScreenIndex: 0, + demoMode: demoMode, + testMode: true, + ), + builder: (context, model2, child) { + model2.context = context; + model2.appTour = MockAppTour(model: model2); + model2.pluginPrototypeData.putIfAbsent( + "Plugin1", + () => { + "pluginName": "Plugin1", + "pluginInstallStatus": true, + 'icon': Icons.abc, + 'class': const ChangeThemeTile(), + }, + ); + model2.fetchAndAddPlugins(context); + return Scaffold( + drawer: CustomDrawer(homeModel: model2), + key: MainScreenViewModel.scaffoldKey, + body: model2.appTourDialog(context), + ); + }, + ), + navigatorKey: navigationService.navigatorKey, + onGenerateRoute: router.generateRoute, + ); + }, + ); + +class MockCallBack extends Mock { + void call(); +} + +class MockBuildContext extends Mock implements BuildContext {} + +MainScreenViewModel getModel() { + final model = MainScreenViewModel(); + model.context = MockBuildContext(); + return model; +} + +void verifyInteraction(dynamic x, {required String mockName}) { + // Ensures that navigation service was called + try { + verifyZeroInteractions(x); + //If 0 interactions passes that means mock was not called hence test fails + throw Exception("Expected interaction but found 0 with $mockName"); + } on TestFailure { + //If test fails then 1 or more interactions with navigation service hence test passes + expect(true, true); + } +} + +void main() async { + final Directory dir = Directory('test/fixtures/core'); + + Hive.init(dir.path); + // ..registerAdapter(UserAdapter()) + // ..registerAdapter(OrgInfoAdapter()); + + // final userBox = await Hive.openBox('currentUser'); + // final urlBox = await Hive.openBox('url'); + // final orgBox = await Hive.openBox('currentOrg'); + final pluginBox = await Hive.openBox('pluginBox'); + + final List> samplePluginData = [ + { + "pluginName": "Plugin1", + "pluginInstallStatus": true, + }, + // Add more sample plugin data as needed + ]; + + // Store the sample data in the 'plugins' key of 'pluginBox' + pluginBox.put('plugins', samplePluginData); + + // No need to change + setUpAll(() { + locator.registerFactory(() => CustomDrawerViewModel()); + locator.registerFactory(() => MainScreenViewModel()); + locator.registerFactory(() => AppTheme()); + locator.registerSingleton(SizeConfig()); + locator.registerFactory(() => Queries()); + locator().test(); + }); + + tearDownAll(() { + locator.unregister(); + File('test/fixtures/core/currentorg.hive').delete(); + File('test/fixtures/core/currentorg.lock').delete(); + File('test/fixtures/core/currentuser.hive').delete(); + File('test/fixtures/core/currentuser.lock').delete(); + File('test/fixtures/core/pluginbox.hive').delete(); + File('test/fixtures/core/pluginbox.lock').delete(); + }); + + group("MainScreen ViewModel Tests - ", () { + test("When initialized current index should be 0", () { + final mainTestModel = getModel(); + expect(mainTestModel.currentPageIndex, 0); + }); + }); + + // May need to change + group("onTabTapped -", () { + test("When an index is passed that, current index should equal that index", + () { + final mainTestModel = getModel(); + mainTestModel.onTabTapped(4); + expect(mainTestModel.currentPageIndex, 4); + }); + + test("When called function should notify listeners of tab change", () { + final mockcallback = MockCallBack(); + final mainTestModel = getModel(); + mainTestModel.addListener(mockcallback); + + mainTestModel.onTabTapped(0); + verify(mockcallback()).called(1); + }); + }); + + group("initialize", () { + final context = MockBuildContext(); + SizeConfig().test(); + setUp(() => registerServices()); + tearDown(() => unregisterServices()); + + void runIntialize({ + required bool fSignUp, + int mainIndex = 1, + required MainScreenViewModel model, + BuildContext? pcontext, + }) { + model.initialise( + pcontext ?? context, + fromSignUp: fSignUp, + mainScreenIndex: mainIndex, + ); + } + + test( + "MainScreenViewModel showAppTour and currentIndex should equal values passed to fromSignUp and mainScreenIndex", + () { + const bool fSignup = true; + const int mainIndex = 1; + final mainTestModel = getModel(); + runIntialize( + fSignUp: fSignup, + mainIndex: mainIndex, + model: mainTestModel, + ); + + expect(mainTestModel.showAppTour, fSignup); + expect(mainTestModel.currentPageIndex, mainIndex); + }); + + test('Test for showHome method', () { + final model = getModel(); + + model.showHome( + TargetFocus( + identify: "keyDrawerLeaveCurrentOrg", + keyTarget: MainScreenViewModel.keyDrawerLeaveCurrentOrg, + ), + ); + }); + + test( + "When fromSignUp is false tourComplete should equal true, tourSkipped and showApptour false", + () { + final mainTestModel = getModel(); + runIntialize(fSignUp: false, model: mainTestModel); + expect(mainTestModel.tourComplete, true); + expect(mainTestModel.tourSkipped, false); + expect(mainTestModel.showAppTour, false); + }); + + test("When fromSignUp is false, App Tour dialog should not be displayed", + () async { + final mocknav = getAndRegisterNavigationService(); + final mainTestModel = getModel(); + + mainTestModel.initialise( + MockBuildContext(), + fromSignUp: false, + mainScreenIndex: 0, + ); + + // Ensures that navigation service was not called + verifyZeroInteractions(mocknav); + }); + + testWidgets('Test for apptour dialog skip action.', (tester) async { + await tester.pumpWidget(createAppTourDialog()); + await tester.pumpAndSettle(const Duration(seconds: 1)); + + expect(find.byType(CustomAlertDialog), findsOneWidget); + + // await tester.pumpAndSettle(); + + final skipBtn = find.textContaining('Skip'); + + expect(skipBtn, findsOneWidget); + + await tester.tap(skipBtn); + await tester.pumpAndSettle( + const Duration(seconds: 1), + ); + }); + + testWidgets('Test for apptour dialog success action.', (tester) async { + await tester.pumpWidget(createAppTourDialog()); + await tester.pumpAndSettle(const Duration(seconds: 1)); + + final mockUserConfig = getAndRegisterUserConfig(); + when(mockUserConfig.loggedIn).thenReturn(true); + + MainScreenViewModel.scaffoldKey.currentState?.openDrawer(); + + expect(find.byType(CustomAlertDialog), findsOneWidget); + + final startBtn = find.textContaining('Start').last; + + expect(startBtn, findsOneWidget); + + await tester.tap(startBtn); + + await tester.pumpAndSettle(const Duration(seconds: 2)); + }); + + testWidgets('Test for fetchAndAddPlugins when not in demoMode', + (tester) async { + final app = createAppTourDialog(demoMode: false); + + await tester.pumpWidget(app); + await tester.pumpAndSettle(const Duration(seconds: 1)); + }); + + testWidgets('Test for tourhomeTargets.', (tester) async { + final model = getAndRegisterUserConfig(); + const val1 = true; + when(model.loggedIn).thenAnswer((_) => val1); + + // locator.registerFactory(() => CustomDrawerViewModel()); + + late final MainScreenViewModel mainScreenModel; + final app = MaterialApp( + builder: (context, child) => BaseView( + builder: (context, model2, child) { + model2.context = context; + model2.testMode = true; + mainScreenModel = model2; + model2.appTour = MockAppTour(model: model2); + model2.currentPageIndex = 0; + return Scaffold( + key: MainScreenViewModel.scaffoldKey, + drawer: CustomDrawer(homeModel: mainScreenModel), + body: TextButton( + onPressed: () { + model2.showHome( + TargetFocus( + identify: "keySHMenuIcon", + keyTarget: model2.keySHMenuIcon, + ), + ); + model2.tourHomeTargets(); + }, + child: const Text('tour home'), + ), + ); + }, + ), + ); + + await tester.pumpWidget(app); + + await tester.pumpAndSettle(const Duration(seconds: 1)); + + expect(find.textContaining('tour home'), findsOneWidget); + + await tester.tap(find.textContaining('tour home')); + + // // ignore: avoid_dynamic_calls + // print(mainScreenModel.targets[1].description); + + // // ignore: avoid_dynamic_calls + // mainScreenModel.targets[5].next!(); + + // verify(navigationService.pop()); + // locator.unregister(); + }); + + // testWidgets('Test for tourhomeTargets.', (tester) async { + // final model = getAndRegisterUserConfig(); + // bool val = false; + // when(model.loggedIn).thenAnswer((_) => val); + + // // locator.registerFactory(() => CustomDrawerViewModel()); + + // late final MainScreenViewModel mainScreenModel; + // final app =BaseView( + // builder: (context, model2, child) { + // model2.context = context; + // model2.testMode = true; + // mainScreenModel = model2; + // model2.currentPageIndex = 0; + // return MaterialApp( + // builder:(context, child) => Scaffold( + // body: Scaffold( + // key: MainScreenViewModel.scaffoldKey, + // drawer: CustomDrawer(homeModel: mainScreenModel), + // body: TextButton(onPressed: () { + // model2.tourHomeTargets(); + // }, child: const Text('tour home')), + // ), + // ) + // ); + // }, + + // ); + + // await tester.pumpWidget(app); + + // await tester.pumpAndSettle(const Duration(seconds: 1)); + + // expect(find.textContaining('tour home'), findsOneWidget); + + // await tester.tap(find.textContaining('tour home')); + + // mainScreenModel.targets[4].next!(); + + // verify(navigationService.pop()); + // }); + + // testWidgets('Test for tourEventTargets.', (tester) async { + // final model = getAndRegisterUserConfig(); + // when(model.loggedIn).thenAnswer((_) => true); + + // final app = BaseView( + // builder: (context, model2, child) { + // model2.context = context; + // model2.testMode = true; + // model2.appTour = MockAppTour(model: model2); + // model2.currentPageIndex = 1; + // return MaterialApp( + // builder: (context, child) => Scaffold( + // body: TextButton( + // onPressed: () { + // model2.tourEventTargets(); + // }, + // child: const Text('tour event targets'), + // ), + // ), + // ); + // }, + // ); + + // await tester.pumpWidget(app); + + // await tester.pumpAndSettle(const Duration(seconds: 1)); + + // expect(find.textContaining('tour event targets'), findsOneWidget); + + // await tester.tap(find.textContaining('tour event targets')); + // }); + + testWidgets('Test for tourChats.', (tester) async { + final model = getAndRegisterUserConfig(); + when(model.loggedIn).thenAnswer((_) => true); + + final app = BaseView( + builder: (context, model2, child) { + model2.context = context; + model2.testMode = true; + model2.appTour = MockAppTour(model: model2); + model2.currentPageIndex = 1; + return MaterialApp( + builder: (context, child) => Scaffold( + body: TextButton( + onPressed: () { + model2.tourChat(); + }, + child: const Text('tour chat targets'), + ), + ), + ); + }, + ); + + await tester.pumpWidget(app); + + await tester.pumpAndSettle(const Duration(seconds: 1)); + + expect(find.textContaining('tour chat targets'), findsOneWidget); + + await tester.tap(find.textContaining('tour chat targets')); + }); + + testWidgets('Test for addPost.', (tester) async { + final model = getAndRegisterUserConfig(); + when(model.loggedIn).thenAnswer((_) => true); + + final app = MaterialApp( + builder: (context, child) => BaseView( + builder: (context, model2, child) { + model2.context = context; + model2.testMode = true; + model2.appTour = MockAppTour(model: model2); + model2.currentPageIndex = 1; + return Scaffold( + body: TextButton( + onPressed: () { + model2.tourAddPost(); + }, + child: const Text('tour add post'), + ), + ); + }, + ), + ); + + await tester.pumpWidget(app); + + await tester.pumpAndSettle(const Duration(seconds: 1)); + + expect(find.textContaining('tour add post'), findsOneWidget); + + await tester.tap(find.textContaining('tour add post')); + }); + + // testWidgets('Test for profile tour.', (tester) async { + // final model = getAndRegisterUserConfig(); + // when(model.loggedIn).thenAnswer((_) => true); + + // final app = BaseView( + // builder: (context, model2, child) { + // model2.context = context; + // model2.testMode = true; + // model2.appTour = MockAppTour(model: model2); + // model2.currentPageIndex = 1; + // return MaterialApp( + // builder: (context, child) => Scaffold( + // body: TextButton( + // onPressed: () { + // model2.tourProfile(); + // }, + // child: const Text('tour profile'), + // ), + // ), + // ); + // }, + // ); + + // await tester.pumpWidget(app); + + // await tester.pumpAndSettle(const Duration(seconds: 1)); + + // expect(find.textContaining('tour profile'), findsOneWidget); + + // await tester.tap(find.textContaining('tour profile')); + + // // print(mockedModel.targets[5].); + // }); + + // testWidgets('Test for focustarget widget.', (tester) async { + // late MainScreenViewModel mockModel = MainScreenViewModel(); + + // model.focusTarget( model.keyBNChat, 'not', 'ok').contents[] + + // Widget app = BaseView( + // onModelReady: (model) => model.initialize(), + // builder: (context, model, child) { + // return MaterialApp( + // locale: const Locale('en'), + // localizationsDelegates: [ + // const AppLocalizationsDelegate(isTest: true), + // GlobalMaterialLocalizations.delegate, + // GlobalWidgetsLocalizations.delegate, + // ], + // theme: Provider.of(context).isdarkTheme + // ? TalawaTheme.darkTheme + // : TalawaTheme.lightTheme, + // home: BaseView( + // onModelReady: (model2) => model2.initialise(context, fromSignUp: false, mainScreenIndex: 0, testMode: true, demoMode: true), + // builder: (context, model2, child) { + // model2.context = context; + // mockModel = model2; + // return Scaffold( + // body: TextButton( + // child: const Text('press me'), + // onPressed: () { + // model2.tourProfile(); + // model2.showTutorial(onClickTarget: (targetFocus) { + // return TargetFocus(); + // }, onFinish: () { + // return TargetFocus(); + // }); + // }, + // ), + // ); + // }, + // ), + // navigatorKey: navigationService.navigatorKey, + // onGenerateRoute: router.generateRoute, + // ); + // }); + + // await tester.pumpWidget(app); + // await tester.pumpAndSettle(); + + // expect(find.text('press me'), findsOneWidget); + + // await tester.tap(find.text('press me')); + // await tester.pumpAndSettle(); + + // print(mockModel.targets); + + // }); + + // testWidgets('Test for fetchAndAddPlugins.', (tester) async { + + // await tester.pumpWidget(createAppTourDialog(demoMode: false,)); + // await tester.pumpAndSettle(const Duration(seconds: 1)); + + // }); + + // test("When fromSignUp is true, App Tour dialog should be displayed", + // () async { + // final mocknav = getAndRegisterNavigationService(); + // final mainTestModel = getModel(); + + // //Waits for any delay in navigation being called + // mainTestModel.initialise( + // mainTestModel.context, + // fromSignUp: true, + // mainScreenIndex: 0, + // ); + + // await Future.delayed(const Duration(seconds: 2)); + + // final captured = verify( + // (navigationService as MockNavigationService).pushDialog(captureAny), + // ).captured; + // captured[0].success(); + // captured[0].secondaryButtonTap(); + + // //Ensures that naviagation service was called + // verifyInteraction(mocknav, mockName: "NavigationService"); + // }); + // }); + + // group("showTutorial", () { + // final mainTestModel = getModel(); + // test("When called tutorial coach should be assigned a value", () { + // mainTestModel.showTutorial( + // onClickTarget: (TargetFocus x) {}, + // onFinish: () {}, + // ); + // expect(mainTestModel.tutorialCoachMark, isNotNull); + + // // mainTestModel.tutorialCoachMark.skip(); + // }); + // }); + + // group("tourHomeTargets", () { + // final mainTestModel = getModel(); + // final TargetFocus testTarget = + // TargetFocus(identify: "TestTarget", keyTarget: mainTestModel.keyBNChat); + // test("target list should be cleared before adding new targets", () { + // //Adding a testtarget before method is called + // mainTestModel.targets.add(testTarget); + // // mainTestModel.context = MockBuildContext(); + // mainTestModel.tourHomeTargets(); + // // targets list should not contain testtarget + // expect(mainTestModel.targets.contains(testTarget), false); + // }); + // }); + + // group("tourEventTargets", () { + // final mainTestModel = getModel(); + // test("target list should be cleared before adding new targets", () { + // final TargetFocus testTarget = TargetFocus( + // identify: "TestTarget", + // keyTarget: mainTestModel.keyBNChat, + // ); + // //Adding a target before method is called + // mainTestModel.targets.add(testTarget); + + // mainTestModel.tourEventTargets(); + // // targets list should not contain target + // expect(mainTestModel.targets.contains(testTarget), false); + // }); + // }); + + // group("tourAddPost", () { + // final mainTestModel = getModel(); + // test("target list should be cleared before adding new targets", () { + // final TargetFocus testTarget = TargetFocus( + // identify: "TestTarget", + // keyTarget: mainTestModel.keyBNChat, + // ); + // //Adding a target before method is called + // mainTestModel.targets.add(testTarget); + + // mainTestModel.tourAddPost(); + // // targets list should not contain target + // expect(mainTestModel.targets.contains(testTarget), false); + // }); + // }); + // group("tourChat", () { + // final mainTestModel = getModel(); + // test("target list should be cleared before adding new targets", () { + // final TargetFocus testTarget = TargetFocus( + // identify: "TestTarget", + // keyTarget: mainTestModel.keyBNChat, + // ); + // //Adding a target before method is called + // mainTestModel.targets.add(testTarget); + + // mainTestModel.tourChat(); + // // targets list should not contain target + // expect(mainTestModel.targets.contains(testTarget), false); + // }); + // }); + + // group("tourProfile", () { + // final mainTestModel = getModel(); + // test("target list should be cleared before adding new targets", () { + // final TargetFocus testTarget = TargetFocus( + // identify: "TestTarget", + // keyTarget: mainTestModel.keyBNChat, + // ); + // //Adding a target before method is called + // mainTestModel.targets.add(testTarget); + + // mainTestModel.tourProfile(); + // // targets list should not contain target + // expect(mainTestModel.targets.contains(testTarget), false); + // }); + }); +} diff --git a/test/widget_tests/after_auth_screens/add_post_page_test.dart b/test/views/after_auth_screens/add_post_page_test.dart similarity index 99% rename from test/widget_tests/after_auth_screens/add_post_page_test.dart rename to test/views/after_auth_screens/add_post_page_test.dart index 2d6d3c9e1c..73644edea8 100644 --- a/test/widget_tests/after_auth_screens/add_post_page_test.dart +++ b/test/views/after_auth_screens/add_post_page_test.dart @@ -75,6 +75,7 @@ Widget createAddPostScreen({ const AppLocalizationsDelegate(isTest: true), GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, + GlobalCupertinoLocalizations.delegate, ], home: Scaffold( /// MainScreenViewModel.scaffoldKey.currentState will return null diff --git a/test/widget_tests/after_auth_screens/events/create_event_form_test.dart b/test/widget_tests/after_auth_screens/events/create_event_form_test.dart index 63bb107fde..f74e0754d9 100644 --- a/test/widget_tests/after_auth_screens/events/create_event_form_test.dart +++ b/test/widget_tests/after_auth_screens/events/create_event_form_test.dart @@ -85,94 +85,95 @@ void main() { unregisterViewModels(); unregisterServices(); }); - - testWidgets("Test if create event form shows up", - (WidgetTester tester) async { - await tester.runAsync(() async { - await tester.pumpWidget(createCreateEventForm()); - await tester.pump(); - expect(find.byType(TextFormField), findsNWidgets(3)); - expect( - find.descendant( - of: find.byType(Form), - matching: find.byType(TextFormField), - ), - findsNWidgets(3), - ); + group('Testing create event form', () { + testWidgets("Test if create event form shows up", + (WidgetTester tester) async { + await tester.runAsync(() async { + await tester.pumpWidget(createCreateEventForm()); + await tester.pump(); + expect(find.byType(TextFormField), findsNWidgets(3)); + expect( + find.descendant( + of: find.byType(Form), + matching: find.byType(TextFormField), + ), + findsNWidgets(3), + ); + }); }); - }); - testWidgets("Test if create event key are working", - (WidgetTester tester) async { - await tester.runAsync(() async { - await tester.pumpWidget(createCreateEventForm()); - await tester.pump(); - expect(find.byKey(const Key('create_event_form_tff1')), findsOneWidget); - expect(find.byKey(const Key('create_event_form_tff2')), findsOneWidget); - expect(find.byKey(const Key('create_event_form_tff3')), findsOneWidget); + testWidgets("Test if create event key are working", + (WidgetTester tester) async { + await tester.runAsync(() async { + await tester.pumpWidget(createCreateEventForm()); + await tester.pump(); + expect(find.byKey(const Key('create_event_form_tff1')), findsOneWidget); + expect(find.byKey(const Key('create_event_form_tff2')), findsOneWidget); + expect(find.byKey(const Key('create_event_form_tff3')), findsOneWidget); + }); }); - }); - testWidgets("Test if gesture detector is working", - (WidgetTester tester) async { - await tester.runAsync(() async { - await tester.pumpWidget(createCreateEventForm()); - await tester.pump(); - final gestureDetector = find.byKey(const Key('gesture_cef_test')); - await tester.tap(gestureDetector); - await tester.pump(); - expect(find.byKey(const Key('gesture_cef_test')), findsOneWidget); - await tester.pumpAndSettle(const Duration(milliseconds: 1000)); + testWidgets("Test if gesture detector is working", + (WidgetTester tester) async { + await tester.runAsync(() async { + await tester.pumpWidget(createCreateEventForm()); + await tester.pump(); + final gestureDetector = find.byKey(const Key('gesture_cef_test')); + await tester.tap(gestureDetector); + await tester.pump(); + expect(find.byKey(const Key('gesture_cef_test')), findsOneWidget); + await tester.pumpAndSettle(const Duration(milliseconds: 1000)); + }); }); - }); //--------------------------------------------------- - testWidgets( - 'Test if form of 1st TextField is submitted on pressing enter on mobile keyboard.', - (tester) async { - await tester.runAsync(() async { - await tester.pumpWidget(createCreateEventForm()); - await tester.pump(); + testWidgets( + 'Test if form of 1st TextField is submitted on pressing enter on mobile keyboard.', + (tester) async { + await tester.runAsync(() async { + await tester.pumpWidget(createCreateEventForm()); + await tester.pump(); - await tester.enterText( - find.byKey(const Key('create_event_form_tff1')), - 'fakeEventTitle', - ); - await tester.pump(); - await tester.testTextInput.receiveAction(TextInputAction.next); - await tester.pump(); + await tester.enterText( + find.byKey(const Key('create_event_form_tff1')), + 'fakeEventTitle', + ); + await tester.pump(); + await tester.testTextInput.receiveAction(TextInputAction.next); + await tester.pump(); + }); }); - }); - testWidgets( - 'Test if form of 2nd TextField is submitted on pressing enter on mobile keyboard.', - (tester) async { - await tester.runAsync(() async { - await tester.pumpWidget(createCreateEventForm()); - await tester.pump(); + testWidgets( + 'Test if form of 2nd TextField is submitted on pressing enter on mobile keyboard.', + (tester) async { + await tester.runAsync(() async { + await tester.pumpWidget(createCreateEventForm()); + await tester.pump(); - await tester.enterText( - find.byKey(const Key('create_event_form_tff2')), - 'fakeEventTitle', - ); - await tester.pump(); - await tester.testTextInput.receiveAction(TextInputAction.next); - await tester.pump(); + await tester.enterText( + find.byKey(const Key('create_event_form_tff2')), + 'fakeEventTitle', + ); + await tester.pump(); + await tester.testTextInput.receiveAction(TextInputAction.next); + await tester.pump(); + }); }); - }); - testWidgets( - 'Test if form of 3rd TextField is submitted on pressing enter on mobile keyboard.', - (tester) async { - await tester.runAsync(() async { - await tester.pumpWidget(createCreateEventForm()); - await tester.pump(); + testWidgets( + 'Test if form of 3rd TextField is submitted on pressing enter on mobile keyboard.', + (tester) async { + await tester.runAsync(() async { + await tester.pumpWidget(createCreateEventForm()); + await tester.pump(); - await tester.enterText( - find.byKey(const Key('create_event_form_tff3')), - 'fakeEventTitle', - ); - await tester.pump(); - await tester.testTextInput.receiveAction(TextInputAction.next); - await tester.pump(); + await tester.enterText( + find.byKey(const Key('create_event_form_tff3')), + 'fakeEventTitle', + ); + await tester.pump(); + await tester.testTextInput.receiveAction(TextInputAction.next); + await tester.pump(); + }); }); }); } From b0969a30be36bc91dba36e6f6e5818189de84afc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 09:49:26 -0800 Subject: [PATCH 06/17] Bump tj-actions/changed-files from 35 to 41 in /.github/workflows (#2302) Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 35 to 41. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v35...v41) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index f7e602e6d7..a4dec2494c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -77,7 +77,7 @@ jobs: run: flutter pub run custom_lint - name: Changed Files id: changed-files - uses: tj-actions/changed-files@v35 + uses: tj-actions/changed-files@v41 - name: List all changed files run: | for file in ${{ steps.changed-files.outputs.all_changed_files }}; do From 4bc25442f4704b67159afcc63daa48b261f49828 Mon Sep 17 00:00:00 2001 From: Ayush Raghuwanshi <62144720+AyushRaghuvanshi@users.noreply.github.com> Date: Wed, 3 Jan 2024 10:19:40 +0530 Subject: [PATCH 07/17] Add: GraphQl Test (#2298) --- test/service_tests/graphql_config_test.dart | 33 +++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 test/service_tests/graphql_config_test.dart diff --git a/test/service_tests/graphql_config_test.dart b/test/service_tests/graphql_config_test.dart new file mode 100644 index 0000000000..201b1aafcc --- /dev/null +++ b/test/service_tests/graphql_config_test.dart @@ -0,0 +1,33 @@ +import 'package:flutter_test/flutter_test.dart'; +import 'package:graphql_flutter/graphql_flutter.dart'; +import 'package:talawa/services/graphql_config.dart'; +import '../helpers/test_helpers.dart'; +import '../helpers/test_locator.dart'; + +void main() { + testSetupLocator(); + + setUp(() { + registerServices(); + }); + group('Testing Graphql Config', () { + test('test httpLink with MockHttpClient', () async { + final graphqlConfig = GraphqlConfig(); + final mockHttpClient = MockHttpClient(); + final mockUri = Uri.parse('https://example.com/graphql'); + + graphqlConfig.httpLink = HttpLink( + mockUri.toString(), + httpClient: mockHttpClient, + ); + + final response = await graphqlConfig + .clientToQuery() + .query(QueryOptions(document: gql('query {}'))); + expect( + response.data, + isNull, + ); + }); + }); +} From 50f3ca4133381004d098c409274209eca282f151 Mon Sep 17 00:00:00 2001 From: Peter Harrison <16875803+palisadoes@users.noreply.github.com> Date: Tue, 2 Jan 2024 21:04:56 -0800 Subject: [PATCH 08/17] Update pull-request.yml --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index a4dec2494c..ad1bb33e99 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -128,7 +128,7 @@ jobs: uses: VeryGoodOpenSource/very_good_coverage@v2 with: path: './coverage/lcov.info' - min_coverage: 90.0 + min_coverage: 92.0 Android-Build: name: Testing build for android From d270c058be2024812406d72ebb81777c176ff411 Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Thu, 4 Jan 2024 23:30:43 +0530 Subject: [PATCH 09/17] fix failing test case --- pubspec.lock | 1870 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1870 insertions(+) create mode 100644 pubspec.lock diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000000..e086abd642 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,1870 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _discoveryapis_commons: + dependency: transitive + description: + name: _discoveryapis_commons + sha256: f8bb1fdbd77f3d5c1d62b5b0eca75fbf1e41bf4f6c62628f880582e2182ae45d + url: "https://pub.dev" + source: hosted + version: "1.0.6" + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a + url: "https://pub.dev" + source: hosted + version: "61.0.0" + _flutterfire_internals: + dependency: transitive + description: + name: _flutterfire_internals + sha256: f5628cd9c92ed11083f425fd1f8f1bc60ecdda458c81d73b143aeda036c35fe7 + url: "https://pub.dev" + source: hosted + version: "1.3.16" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562 + url: "https://pub.dev" + source: hosted + version: "5.13.0" + analyzer_plugin: + dependency: transitive + description: + name: analyzer_plugin + sha256: c1d5f167683de03d5ab6c3b53fc9aeefc5d59476e7810ba7bbddff50c6f4392d + url: "https://pub.dev" + source: hosted + version: "0.11.2" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + auto_size_text: + dependency: "direct main" + description: + name: auto_size_text + sha256: "3f5261cd3fb5f2a9ab4e2fc3fba84fd9fcaac8821f20a1d4e71f557521b22599" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + build: + dependency: transitive + description: + name: build + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_config: + dependency: transitive + description: + name: build_config + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 + url: "https://pub.dev" + source: hosted + version: "1.1.1" + build_daemon: + dependency: transitive + description: + name: build_daemon + sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" + url: "https://pub.dev" + source: hosted + version: "4.0.1" + build_resolvers: + dependency: transitive + description: + name: build_resolvers + sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + build_runner: + dependency: "direct dev" + description: + name: build_runner + sha256: "67d591d602906ef9201caf93452495ad1812bea2074f04e25dbd7c133785821b" + url: "https://pub.dev" + source: hosted + version: "2.4.7" + build_runner_core: + dependency: transitive + description: + name: build_runner_core + sha256: c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185 + url: "https://pub.dev" + source: hosted + version: "7.2.11" + built_collection: + dependency: transitive + description: + name: built_collection + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + built_value: + dependency: transitive + description: + name: built_value + sha256: c9aabae0718ec394e5bc3c7272e6bb0dc0b32201a08fe185ec1d8401d3e39309 + url: "https://pub.dev" + source: hosted + version: "8.8.1" + cached_network_image: + dependency: "direct main" + description: + name: cached_network_image + sha256: "28ea9690a8207179c319965c13cd8df184d5ee721ae2ce60f398ced1219cea1f" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + cached_network_image_platform_interface: + dependency: transitive + description: + name: cached_network_image_platform_interface + sha256: "9e90e78ae72caa874a323d78fa6301b3fb8fa7ea76a8f96dc5b5bf79f283bf2f" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + cached_network_image_web: + dependency: transitive + description: + name: cached_network_image_web + sha256: "42a835caa27c220d1294311ac409a43361088625a4f23c820b006dd9bffb3316" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" + source: hosted + version: "2.0.3" + ci: + dependency: transitive + description: + name: ci + sha256: "145d095ce05cddac4d797a158bc4cf3b6016d1fe63d8c3d2fbd7212590adca13" + url: "https://pub.dev" + source: hosted + version: "0.1.0" + cli_util: + dependency: transitive + description: + name: cli_util + sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 + url: "https://pub.dev" + source: hosted + version: "0.4.1" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + code_builder: + dependency: transitive + description: + name: code_builder + sha256: feee43a5c05e7b3199bb375a86430b8ada1b04104f2923d0e03cc01ca87b6d84 + url: "https://pub.dev" + source: hosted + version: "4.9.0" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + connectivity_plus: + dependency: "direct main" + description: + name: connectivity_plus + sha256: "224a77051d52a11fbad53dd57827594d3bd24f945af28bd70bab376d68d437f0" + url: "https://pub.dev" + source: hosted + version: "5.0.2" + connectivity_plus_platform_interface: + dependency: transitive + description: + name: connectivity_plus_platform_interface + sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a + url: "https://pub.dev" + source: hosted + version: "1.2.4" + contained_tab_bar_view: + dependency: "direct main" + description: + name: contained_tab_bar_view + sha256: "87e35f47992764e45ab6205493f2f90c1e3fac4ad84f2b2285b73414727b756e" + url: "https://pub.dev" + source: hosted + version: "0.8.0" + container_tab_indicator: + dependency: transitive + description: + name: container_tab_indicator + sha256: b0bdd73bb495c31c5711cefa363511b10bb3ebcfc007b603a2599401ebe6b2d9 + url: "https://pub.dev" + source: hosted + version: "0.3.0" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + cross_file: + dependency: transitive + description: + name: cross_file + sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e + url: "https://pub.dev" + source: hosted + version: "0.3.3+8" + crypto: + dependency: "direct main" + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + csslib: + dependency: transitive + description: + name: csslib + sha256: "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d + url: "https://pub.dev" + source: hosted + version: "1.0.6" + currency_picker: + dependency: "direct main" + description: + name: currency_picker + sha256: eb75deb7bc92e3f31e1b8ad4efacf71371e8e49d7a0eebd1c1a8e9fae58cc23d + url: "https://pub.dev" + source: hosted + version: "2.0.20" + custom_lint: + dependency: "direct dev" + description: + name: custom_lint + sha256: "198ec6b8e084d22f508a76556c9afcfb71706ad3f42b083fe0ee923351a96d90" + url: "https://pub.dev" + source: hosted + version: "0.5.7" + custom_lint_builder: + dependency: transitive + description: + name: custom_lint_builder + sha256: dfcfa987d2bd9d0ba751ef4bdef0f6c1aa0062f2a67fe716fd5f3f8b709d6418 + url: "https://pub.dev" + source: hosted + version: "0.5.7" + custom_lint_core: + dependency: transitive + description: + name: custom_lint_core + sha256: f84c3fe2f27ef3b8831953e477e59d4a29c2952623f9eac450d7b40d9cdd94cc + url: "https://pub.dev" + source: hosted + version: "0.5.7" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + dbus: + dependency: transitive + description: + name: dbus + sha256: "365c771ac3b0e58845f39ec6deebc76e3276aa9922b0cc60840712094d9047ac" + url: "https://pub.dev" + source: hosted + version: "0.7.10" + device_info_plus: + dependency: transitive + description: + name: device_info_plus + sha256: "0042cb3b2a76413ea5f8a2b40cec2a33e01d0c937e91f0f7c211fde4f7739ba6" + url: "https://pub.dev" + source: hosted + version: "9.1.1" + device_info_plus_platform_interface: + dependency: transitive + description: + name: device_info_plus_platform_interface + sha256: d3b01d5868b50ae571cd1dc6e502fc94d956b665756180f7b16ead09e836fd64 + url: "https://pub.dev" + source: hosted + version: "7.0.0" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + ffi: + dependency: transitive + description: + name: ffi + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + file: + dependency: "direct main" + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + file_selector_linux: + dependency: transitive + description: + name: file_selector_linux + sha256: "045d372bf19b02aeb69cacf8b4009555fb5f6f0b7ad8016e5f46dd1387ddd492" + url: "https://pub.dev" + source: hosted + version: "0.9.2+1" + file_selector_macos: + dependency: transitive + description: + name: file_selector_macos + sha256: b15c3da8bd4908b9918111fa486903f5808e388b8d1c559949f584725a6594d6 + url: "https://pub.dev" + source: hosted + version: "0.9.3+3" + file_selector_platform_interface: + dependency: transitive + description: + name: file_selector_platform_interface + sha256: "0aa47a725c346825a2bd396343ce63ac00bda6eff2fbc43eabe99737dede8262" + url: "https://pub.dev" + source: hosted + version: "2.6.1" + file_selector_windows: + dependency: transitive + description: + name: file_selector_windows + sha256: d3547240c20cabf205c7c7f01a50ecdbc413755814d6677f3cb366f04abcead0 + url: "https://pub.dev" + source: hosted + version: "0.9.3+1" + firebase_core: + dependency: "direct main" + description: + name: firebase_core + sha256: "96607c0e829a581c2a483c658f04e8b159964c3bae2730f73297070bc85d40bb" + url: "https://pub.dev" + source: hosted + version: "2.24.2" + firebase_core_platform_interface: + dependency: "direct main" + description: + name: firebase_core_platform_interface + sha256: c437ae5d17e6b5cc7981cf6fd458a5db4d12979905f9aafd1fea930428a9fe63 + url: "https://pub.dev" + source: hosted + version: "5.0.0" + firebase_core_web: + dependency: transitive + description: + name: firebase_core_web + sha256: d585bdf3c656c3f7821ba1bd44da5f13365d22fcecaf5eb75c4295246aaa83c0 + url: "https://pub.dev" + source: hosted + version: "2.10.0" + firebase_messaging: + dependency: "direct main" + description: + name: firebase_messaging + sha256: "980259425fa5e2afc03e533f33723335731d21a56fd255611083bceebf4373a8" + url: "https://pub.dev" + source: hosted + version: "14.7.10" + firebase_messaging_platform_interface: + dependency: "direct main" + description: + name: firebase_messaging_platform_interface + sha256: "54e283a0e41d81d854636ad0dad73066adc53407a60a7c3189c9656e2f1b6107" + url: "https://pub.dev" + source: hosted + version: "4.5.18" + firebase_messaging_web: + dependency: transitive + description: + name: firebase_messaging_web + sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4" + url: "https://pub.dev" + source: hosted + version: "3.5.18" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_braintree: + dependency: "direct main" + description: + name: flutter_braintree + sha256: d364251cf57c028e8481869222d571c90df819ae234d9fb349713c4ffa25ba96 + url: "https://pub.dev" + source: hosted + version: "3.0.0" + flutter_cache_manager: + dependency: "direct main" + description: + name: flutter_cache_manager + sha256: "8207f27539deb83732fdda03e259349046a39a4c767269285f449ade355d54ba" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + flutter_hooks: + dependency: transitive + description: + name: flutter_hooks + sha256: "09f64db63fee3b2ab8b9038a1346be7d8986977fae3fec601275bf32455ccfc0" + url: "https://pub.dev" + source: hosted + version: "0.20.4" + flutter_local_notifications: + dependency: "direct main" + description: + name: flutter_local_notifications + sha256: "892ada16046d641263f30c72e7432397088810a84f34479f6677494802a2b535" + url: "https://pub.dev" + source: hosted + version: "16.3.0" + flutter_local_notifications_linux: + dependency: transitive + description: + name: flutter_local_notifications_linux + sha256: "33f741ef47b5f63cc7f78fe75eeeac7e19f171ff3c3df054d84c1e38bedb6a03" + url: "https://pub.dev" + source: hosted + version: "4.0.0+1" + flutter_local_notifications_platform_interface: + dependency: transitive + description: + name: flutter_local_notifications_platform_interface + sha256: "7cf643d6d5022f3baed0be777b0662cce5919c0a7b86e700299f22dc4ae660ef" + url: "https://pub.dev" + source: hosted + version: "7.0.0+1" + flutter_localizations: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_plugin_android_lifecycle: + dependency: transitive + description: + name: flutter_plugin_android_lifecycle + sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da + url: "https://pub.dev" + source: hosted + version: "2.0.17" + flutter_reaction_button: + dependency: "direct main" + description: + name: flutter_reaction_button + sha256: "9fe67f6e6dac65c5ee864c2ab03550b25e7fc82b9a800c885a87f85abe2c03c6" + url: "https://pub.dev" + source: hosted + version: "3.0.0+3" + flutter_speed_dial: + dependency: "direct main" + description: + name: flutter_speed_dial + sha256: "698a037274a66dbae8697c265440e6acb6ab6cae9ac5f95c749e7944d8f28d41" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + flutter_svg: + dependency: "direct main" + description: + name: flutter_svg + sha256: d39e7f95621fc84376bc0f7d504f05c3a41488c562f4a8ad410569127507402c + url: "https://pub.dev" + source: hosted + version: "2.0.9" + 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" + font_awesome_flutter: + dependency: "direct main" + description: + name: font_awesome_flutter + sha256: "52671aea66da73b58d42ec6d0912b727a42248dd9a7c76d6c20f275783c48c08" + url: "https://pub.dev" + source: hosted + version: "10.6.0" + freezed_annotation: + dependency: transitive + description: + name: freezed_annotation + sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d + url: "https://pub.dev" + source: hosted + version: "2.4.1" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + geocoding: + dependency: "direct main" + description: + name: geocoding + sha256: e1dc0ac56666d9ed1d5a9ae5543ce9eb5986db6209cc7600103487d09192059c + url: "https://pub.dev" + source: hosted + version: "2.1.1" + geocoding_android: + dependency: transitive + description: + name: geocoding_android + sha256: "609db1d71bc364dd9d0616f72a41c01e0c74f3a3807efb85e0d5a67e57baf50f" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + geocoding_ios: + dependency: transitive + description: + name: geocoding_ios + sha256: "8f79e380abb640ef4d88baee8bb65390058c802601158d0813dc990b36b189d2" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + geocoding_platform_interface: + dependency: transitive + description: + name: geocoding_platform_interface + sha256: "8848605d307d844d89937cdb4b8ad7dfa880552078f310fa24d8a460f6dddab4" + url: "https://pub.dev" + source: hosted + version: "2.0.1" + geolocator: + dependency: "direct main" + description: + name: geolocator + sha256: e946395fc608842bb2f6c914807e9183f86f3cb787f6b8f832753e5251036f02 + url: "https://pub.dev" + source: hosted + version: "10.1.0" + geolocator_android: + dependency: transitive + description: + name: geolocator_android + sha256: "741579fa6c9e412984d2bdb2fbaa54e3c3f7587c60aeacfe6e058358a11f40f8" + url: "https://pub.dev" + source: hosted + version: "4.4.0" + geolocator_apple: + dependency: transitive + description: + name: geolocator_apple + sha256: "1d938e2462cc5145c1402f89d49e70b60a2a51b89fb57414ced71417f1f479b1" + url: "https://pub.dev" + source: hosted + version: "2.3.3" + geolocator_platform_interface: + dependency: transitive + description: + name: geolocator_platform_interface + sha256: "6c8d494d6948757c56720b778af742f6973f31fca1f702a7539b8917e4a2468a" + url: "https://pub.dev" + source: hosted + version: "4.2.0" + geolocator_web: + dependency: transitive + description: + name: geolocator_web + sha256: "59083f7e0871b78299918d92bf930a14377f711d2d1156c558cd5ebae6c20d58" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + geolocator_windows: + dependency: transitive + description: + name: geolocator_windows + sha256: a92fae29779d5c6dc60e8411302f5221ade464968fe80a36d330e80a71f087af + url: "https://pub.dev" + source: hosted + version: "0.2.2" + get_it: + dependency: "direct main" + description: + name: get_it + sha256: f79870884de16d689cf9a7d15eedf31ed61d750e813c538a6efb92660fea83c3 + url: "https://pub.dev" + source: hosted + version: "7.6.4" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + google_maps: + dependency: transitive + description: + name: google_maps + sha256: "555d5d736339b0478e821167ac521c810d7b51c3b2734e6802a9f046b64ea37a" + url: "https://pub.dev" + source: hosted + version: "6.3.0" + google_maps_flutter: + dependency: "direct main" + description: + name: google_maps_flutter + sha256: c98817e21fcdc8e02db0c77e2411374293641d41f5b4d056dd28ee1ef6982f68 + url: "https://pub.dev" + source: hosted + version: "2.5.1" + google_maps_flutter_android: + dependency: transitive + description: + name: google_maps_flutter_android + sha256: fa351114bbe7ba7ddd71932be3ec8ed62bc9e7cbd9c817ea3133fc98ae7f6c5f + url: "https://pub.dev" + source: hosted + version: "2.6.1" + google_maps_flutter_ios: + dependency: transitive + description: + name: google_maps_flutter_ios + sha256: "86ff25bd276d129098643a2cee840509b5af6805c4a4863eebe559468ae1570f" + url: "https://pub.dev" + source: hosted + version: "2.3.4" + google_maps_flutter_platform_interface: + dependency: transitive + description: + name: google_maps_flutter_platform_interface + sha256: "47430d0b0783913da54621de03697faecb8a9757c5855cab9fd3330f3dbf3ef4" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + google_maps_flutter_web: + dependency: transitive + description: + name: google_maps_flutter_web + sha256: "6245721c160d6f531c1ef568cf9bef8d660cd585a982aa75121269030163785a" + url: "https://pub.dev" + source: hosted + version: "0.5.4+3" + googleapis: + dependency: "direct main" + description: + name: googleapis + sha256: "8a8c311723162af077ca73f94b823b97ff68770d966e29614d20baca9fdb490a" + url: "https://pub.dev" + source: hosted + version: "12.0.0" + gql: + dependency: transitive + description: + name: gql + sha256: f57eb635aa2f134ced585584f3d53006816f1fdd909480bb7626a1d41063ce25 + url: "https://pub.dev" + source: hosted + version: "1.0.1-alpha+1704118137418" + gql_dedupe_link: + dependency: transitive + description: + name: gql_dedupe_link + sha256: d0ba6388a52dab95e7e9a9fa3fec43c11172d3d3feda21bf88df39427c8e282f + url: "https://pub.dev" + source: hosted + version: "2.0.4-alpha+1704118137496" + gql_error_link: + dependency: transitive + description: + name: gql_error_link + sha256: "93901458f3c050e33386dedb0ca7173e08cebd7078e4e0deca4bf23ab7a71f63" + url: "https://pub.dev" + source: hosted + version: "1.0.0+1" + gql_exec: + dependency: transitive + description: + name: gql_exec + sha256: "394944626fae900f1d34343ecf2d62e44eb984826189c8979d305f0ae5846e38" + url: "https://pub.dev" + source: hosted + version: "1.1.1-alpha+1699813812660" + gql_http_link: + dependency: transitive + description: + name: gql_http_link + sha256: "1f922eed1b7078fdbfd602187663026f9f659fe9a9499e2207b5d5e01617f658" + url: "https://pub.dev" + source: hosted + version: "1.0.1+1" + gql_link: + dependency: transitive + description: + name: gql_link + sha256: "4cce5019a2ce727023a5e5f9763a9ff85b2770801b10a51738a10472ae779786" + url: "https://pub.dev" + source: hosted + version: "1.0.1-alpha+1704118137432" + gql_transform_link: + dependency: transitive + description: + name: gql_transform_link + sha256: "0645fdd874ca1be695fd327271fdfb24c0cd6fa40774a64b946062f321a59709" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + graphql: + dependency: transitive + description: + name: graphql + sha256: d066e53446166c12537458386b507f7426f2b8801ebafc184576aab3cbc64d56 + url: "https://pub.dev" + source: hosted + version: "5.2.0-beta.7" + graphql_flutter: + dependency: "direct main" + description: + name: graphql_flutter + sha256: "39b5e830bc654ab02c5b776c31675841d1a8c95840fdd284efba713b1d47e65d" + url: "https://pub.dev" + source: hosted + version: "5.2.0-beta.6" + graphs: + dependency: transitive + description: + name: graphs + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + hive: + dependency: "direct main" + description: + name: hive + sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941" + url: "https://pub.dev" + source: hosted + version: "2.2.3" + hive_generator: + dependency: "direct dev" + description: + name: hive_generator + sha256: "06cb8f58ace74de61f63500564931f9505368f45f98958bd7a6c35ba24159db4" + url: "https://pub.dev" + source: hosted + version: "2.0.1" + hotreloader: + dependency: transitive + description: + name: hotreloader + sha256: "94ee21a60ea2836500799f3af035dc3212b1562027f1e0031c14e087f0231449" + url: "https://pub.dev" + source: hosted + version: "4.1.0" + html: + dependency: transitive + description: + name: html + sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a" + url: "https://pub.dev" + source: hosted + version: "0.15.4" + http: + dependency: "direct main" + description: + name: http + sha256: d4872660c46d929f6b8a9ef4e7a7eff7e49bbf0c4ec3f385ee32df5119175139 + url: "https://pub.dev" + source: hosted + version: "1.1.2" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + image_cropper: + dependency: "direct main" + description: + name: image_cropper + sha256: f4bad5ed2dfff5a7ce0dfbad545b46a945c702bb6182a921488ef01ba7693111 + url: "https://pub.dev" + source: hosted + version: "5.0.1" + image_cropper_for_web: + dependency: transitive + description: + name: image_cropper_for_web + sha256: "865d798b5c9d826f1185b32e5d0018c4183ddb77b7b82a931e1a06aa3b74974e" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + image_cropper_platform_interface: + dependency: transitive + description: + name: image_cropper_platform_interface + sha256: ee160d686422272aa306125f3b6fb1c1894d9b87a5e20ed33fa008e7285da11e + url: "https://pub.dev" + source: hosted + version: "5.0.0" + image_picker: + dependency: "direct main" + description: + name: image_picker + sha256: "340efe08645537d6b088a30620ee5752298b1630f23a829181172610b868262b" + url: "https://pub.dev" + source: hosted + version: "1.0.6" + image_picker_android: + dependency: transitive + description: + name: image_picker_android + sha256: "1a27bf4cc0330389cebe465bab08fe6dec97e44015b4899637344bb7297759ec" + url: "https://pub.dev" + source: hosted + version: "0.8.9+2" + image_picker_for_web: + dependency: transitive + description: + name: image_picker_for_web + sha256: "50bc9ae6a77eea3a8b11af5eb6c661eeb858fdd2f734c2a4fd17086922347ef7" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + image_picker_ios: + dependency: transitive + description: + name: image_picker_ios + sha256: eac0a62104fa12feed213596df0321f57ce5a572562f72a68c4ff81e9e4caacf + url: "https://pub.dev" + source: hosted + version: "0.8.9" + image_picker_linux: + dependency: transitive + description: + name: image_picker_linux + sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + image_picker_macos: + dependency: transitive + description: + name: image_picker_macos + sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + image_picker_platform_interface: + dependency: transitive + description: + name: image_picker_platform_interface + sha256: "0e827c156e3a90edd3bbe7f6de048b39247b16e58173b08a835b7eb00aba239e" + url: "https://pub.dev" + source: hosted + version: "2.9.2" + image_picker_windows: + dependency: transitive + description: + name: image_picker_windows + sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + intl: + dependency: "direct main" + description: + name: intl + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + url: "https://pub.dev" + source: hosted + version: "0.18.1" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + js: + dependency: transitive + description: + name: js + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" + source: hosted + version: "0.6.7" + js_wrapping: + dependency: transitive + description: + name: js_wrapping + sha256: e385980f7c76a8c1c9a560dfb623b890975841542471eade630b2871d243851c + url: "https://pub.dev" + source: hosted + version: "0.7.4" + json_annotation: + dependency: "direct main" + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + json_serializable: + dependency: "direct dev" + description: + name: json_serializable + sha256: aa1f5a8912615733e0fdc7a02af03308933c93235bdc8d50d0b0c8a8ccb0b969 + url: "https://pub.dev" + source: hosted + version: "6.7.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "41b90ceaec6d79819f31e975e61d479516efe701dea35f891b2f986c1b031422" + url: "https://pub.dev" + source: hosted + version: "9.0.17" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "54808cfcfa87dbc0d74c61ac063d624adf1bd5c0407301f32b06c783c60dc4ca" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "7e71be3c161472f6c9158ac8875dd8de575060d60b5d159ebca3600ea32c9116" + url: "https://pub.dev" + source: hosted + version: "1.0.6" + lint: + dependency: "direct dev" + description: + name: lint + sha256: d758a5211fce7fd3f5e316f804daefecdc34c7e53559716125e6da7388ae8565 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + logging: + dependency: transitive + description: + name: logging + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + 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: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + url: "https://pub.dev" + source: hosted + version: "0.8.0" + meta: + dependency: transitive + description: + name: meta + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + mime: + dependency: transitive + description: + name: mime + sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e + url: "https://pub.dev" + source: hosted + version: "1.0.4" + mockito: + dependency: "direct main" + description: + name: mockito + sha256: "6841eed20a7befac0ce07df8116c8b8233ed1f4486a7647c7fc5a02ae6163917" + url: "https://pub.dev" + source: hosted + version: "5.4.4" + mocktail: + dependency: transitive + description: + name: mocktail + sha256: f603ebd85a576e5914870b02e5839fc5d0243b867bf710651cf239a28ebb365e + url: "https://pub.dev" + source: hosted + version: "1.0.2" + mocktail_image_network: + dependency: "direct dev" + description: + name: mocktail_image_network + sha256: "83e6b9fa3c6b0952636719f0444752d94c0ef7caa4172ca467d9c1b682aeddbb" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + network_image_mock: + dependency: "direct main" + description: + name: network_image_mock + sha256: "855cdd01d42440e0cffee0d6c2370909fc31b3bcba308a59829f24f64be42db7" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + nm: + dependency: transitive + description: + name: nm + sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + normalize: + dependency: transitive + description: + name: normalize + sha256: "8a60e37de5b608eeaf9b839273370c71ebba445e9f73b08eee7725e0d92dbc43" + url: "https://pub.dev" + source: hosted + version: "0.8.2+1" + octo_image: + dependency: transitive + description: + name: octo_image + sha256: "45b40f99622f11901238e18d48f5f12ea36426d8eced9f4cbf58479c7aa2430d" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" + source: hosted + version: "1.9.0" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf + url: "https://pub.dev" + source: hosted + version: "1.0.1" + path_provider: + dependency: "direct main" + description: + name: path_provider + sha256: a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa + url: "https://pub.dev" + source: hosted + version: "2.1.1" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d" + url: "https://pub.dev" + source: hosted + version: "2.3.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: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + permission_handler: + dependency: "direct main" + description: + name: permission_handler + sha256: "860c6b871c94c78e202dc69546d4d8fd84bd59faeb36f8fb9888668a53ff4f78" + url: "https://pub.dev" + source: hosted + version: "11.1.0" + permission_handler_android: + dependency: transitive + description: + name: permission_handler_android + sha256: "2f1bec180ee2f5665c22faada971a8f024761f632e93ddc23310487df52dcfa6" + url: "https://pub.dev" + source: hosted + version: "12.0.1" + permission_handler_apple: + dependency: transitive + description: + name: permission_handler_apple + sha256: "1a816084338ada8d574b1cb48390e6e8b19305d5120fe3a37c98825bacc78306" + url: "https://pub.dev" + source: hosted + version: "9.2.0" + permission_handler_html: + dependency: transitive + description: + name: permission_handler_html + sha256: "11b762a8c123dced6461933a88ea1edbbe036078c3f9f41b08886e678e7864df" + url: "https://pub.dev" + source: hosted + version: "0.1.0+2" + permission_handler_platform_interface: + dependency: transitive + description: + name: permission_handler_platform_interface + sha256: d87349312f7eaf6ce0adaf668daf700ac5b06af84338bd8b8574dfbd93ffe1a1 + url: "https://pub.dev" + source: hosted + version: "4.0.2" + permission_handler_windows: + dependency: transitive + description: + name: permission_handler_windows + sha256: "1e8640c1e39121128da6b816d236e714d2cf17fac5a105dd6acdd3403a628004" + url: "https://pub.dev" + source: hosted + version: "0.2.0" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + platform: + dependency: transitive + description: + name: platform + sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" + url: "https://pub.dev" + source: hosted + version: "3.1.4" + plugin_platform_interface: + dependency: "direct main" + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + pointycastle: + dependency: "direct main" + description: + name: pointycastle + sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c" + url: "https://pub.dev" + source: hosted + version: "3.7.3" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + provider: + dependency: "direct main" + description: + name: provider + sha256: "9a96a0a19b594dbc5bf0f1f27d2bc67d5f95957359b461cd9feb44ed6ae75096" + url: "https://pub.dev" + source: hosted + version: "6.1.1" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + qr: + dependency: transitive + description: + name: qr + sha256: "64957a3930367bf97cc211a5af99551d630f2f4625e38af10edd6b19131b64b3" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + qr_code_scanner: + dependency: "direct main" + description: + name: qr_code_scanner + sha256: f23b68d893505a424f0bd2e324ebea71ed88465d572d26bb8d2e78a4749591fd + url: "https://pub.dev" + source: hosted + version: "1.0.1" + qr_flutter: + dependency: "direct main" + description: + name: qr_flutter + sha256: "5095f0fc6e3f71d08adef8feccc8cea4f12eec18a2e31c2e8d82cb6019f4b097" + url: "https://pub.dev" + source: hosted + version: "4.1.0" + quick_actions: + dependency: "direct main" + description: + name: quick_actions + sha256: "3930e1cf78a0574495b4ea741ee197323c4a9081321d6ae384b3bfcd84c7ea83" + url: "https://pub.dev" + source: hosted + version: "1.0.6" + quick_actions_android: + dependency: transitive + description: + name: quick_actions_android + sha256: df67c20583e05f5038a24c47bfa1b7b2977703ec2d162663017c5f9ef8707699 + url: "https://pub.dev" + source: hosted + version: "1.0.9" + quick_actions_ios: + dependency: transitive + description: + name: quick_actions_ios + sha256: "5a13ed27b6254184fdd4294e100e3172fa6ebfd8bea03e414634a0f760d49997" + url: "https://pub.dev" + source: hosted + version: "1.0.8" + quick_actions_platform_interface: + dependency: transitive + description: + name: quick_actions_platform_interface + sha256: d2a8566b56eec49f93934528b62033906199c60f4ffaef0cba9ef02fcfed8a81 + url: "https://pub.dev" + source: hosted + version: "1.0.5" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" + url: "https://pub.dev" + source: hosted + version: "0.27.7" + sanitize_html: + dependency: transitive + description: + name: sanitize_html + sha256: "12669c4a913688a26555323fb9cec373d8f9fbe091f2d01c40c723b33caa8989" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + sha256: "81429e4481e1ccfb51ede496e916348668fd0921627779233bd24cc3ff6abd02" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7" + url: "https://pub.dev" + source: hosted + version: "2.3.4" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a + url: "https://pub.dev" + source: hosted + version: "2.3.1" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + shimmer: + dependency: "direct main" + 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.99" + social_share: + dependency: "direct main" + description: + name: social_share + sha256: eb19a0f6f5a29c7bb71e5bb1991145eb52472184363b6e2da70695befd8be041 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + source_gen: + dependency: transitive + description: + name: source_gen + sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" + url: "https://pub.dev" + source: hosted + version: "1.5.0" + source_helper: + dependency: transitive + description: + name: source_helper + sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd" + url: "https://pub.dev" + source: hosted + version: "1.3.4" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + 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: "591f1602816e9c31377d5f008c2d9ef7b8aca8941c3f89cc5fd9d84da0c38a9a" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + sha256: bb4738f15b23352822f4c42a531677e5c6f522e079461fd240ead29d8d8a54a6 + url: "https://pub.dev" + source: hosted + version: "2.5.0+2" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + syncfusion_flutter_calendar: + dependency: "direct main" + description: + name: syncfusion_flutter_calendar + sha256: b31182b348742b0f2285849179490afd89e321514b8e0eadeab6d7377373c9f2 + url: "https://pub.dev" + source: hosted + version: "24.1.43" + syncfusion_flutter_core: + dependency: transitive + description: + name: syncfusion_flutter_core + sha256: "083d4a0ddb25435d267328a30c3938d09599f7578f5f0d28fbd9fd5424c1cd51" + url: "https://pub.dev" + source: hosted + version: "24.1.44" + syncfusion_flutter_datepicker: + dependency: "direct main" + description: + name: syncfusion_flutter_datepicker + sha256: "3f9a8e8b585dd992d2321c899ec8d914634fb99eba02cf7a91c48a098bf62820" + url: "https://pub.dev" + source: hosted + version: "24.1.43" + synchronized: + dependency: transitive + description: + name: synchronized + sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" + url: "https://pub.dev" + source: hosted + version: "3.1.0+1" + talawa_lint: + dependency: "direct dev" + description: + path: talawa_lint + relative: true + source: path + version: "0.0.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: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" + source: hosted + version: "0.6.1" + timelines: + dependency: "direct main" + description: + name: timelines + sha256: "40214f5ab772ff45459cb8c15e5f60505a6828af0c0eb1eec6f29ed911a4c1c5" + url: "https://pub.dev" + source: hosted + version: "0.1.0" + timezone: + dependency: transitive + description: + name: timezone + sha256: "1cfd8ddc2d1cfd836bc93e67b9be88c3adaeca6f40a00ca999104c30693cdca0" + url: "https://pub.dev" + source: hosted + version: "0.9.2" + timing: + dependency: transitive + description: + name: timing + sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + tutorial_coach_mark: + dependency: "direct main" + description: + name: tutorial_coach_mark + sha256: "1f1fd234790afb929dec7391a4d90aa54ffe8c8e4d278d9283df8e3f5ac5d63e" + url: "https://pub.dev" + source: hosted + version: "1.2.11" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + uni_links: + dependency: "direct main" + description: + name: uni_links + sha256: "051098acfc9e26a9fde03b487bef5d3d228ca8f67693480c6f33fd4fbb8e2b6e" + url: "https://pub.dev" + source: hosted + version: "0.5.1" + uni_links_platform_interface: + dependency: transitive + description: + name: uni_links_platform_interface + sha256: "929cf1a71b59e3b7c2d8a2605a9cf7e0b125b13bc858e55083d88c62722d4507" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + uni_links_web: + dependency: transitive + description: + name: uni_links_web + sha256: "7539db908e25f67de2438e33cc1020b30ab94e66720b5677ba6763b25f6394df" + url: "https://pub.dev" + source: hosted + version: "0.1.0" + uuid: + dependency: transitive + description: + name: uuid + sha256: bb55f38968b9427ce5dcdb8aaaa41049282195e0cfa4cf48593572fa3d1f36bc + url: "https://pub.dev" + source: hosted + version: "4.3.1" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: "0f0c746dd2d6254a0057218ff980fc7f5670fd0fcf5e4db38a490d31eed4ad43" + url: "https://pub.dev" + source: hosted + version: "1.1.9+1" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: "0edf6d630d1bfd5589114138ed8fada3234deacc37966bec033d3047c29248b7" + url: "https://pub.dev" + source: hosted + version: "1.1.9+1" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: d24333727332d9bd20990f1483af4e09abdb9b1fc7c3db940b56ab5c42790c26 + url: "https://pub.dev" + source: hosted + version: "1.1.9+1" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + vibration: + dependency: "direct main" + description: + name: vibration + sha256: "778ace40e84852e6cf6017cdbaf6790a837d73ff3dd50b27da9ac232a19de8fc" + url: "https://pub.dev" + source: hosted + version: "1.8.4" + video_player: + dependency: "direct main" + description: + name: video_player + sha256: fbf28ce8bcfe709ad91b5789166c832cb7a684d14f571a81891858fefb5bb1c2 + url: "https://pub.dev" + source: hosted + version: "2.8.2" + video_player_android: + dependency: transitive + description: + name: video_player_android + sha256: "7f8f25d7ad56819a82b2948357f3c3af071f6a678db33833b26ec36bbc221316" + url: "https://pub.dev" + source: hosted + version: "2.4.11" + video_player_avfoundation: + dependency: transitive + description: + name: video_player_avfoundation + sha256: "08da93071ef322603839aa42e90e23d4820b03cf2db7eb6a45de5d41fe85c2aa" + url: "https://pub.dev" + source: hosted + version: "2.5.4" + video_player_platform_interface: + dependency: transitive + description: + name: video_player_platform_interface + sha256: be72301bf2c0150ab35a8c34d66e5a99de525f6de1e8d27c0672b836fe48f73a + url: "https://pub.dev" + source: hosted + version: "6.2.1" + video_player_web: + dependency: transitive + description: + name: video_player_web + sha256: "34beb3a07d4331a24f7e7b2f75b8e2b103289038e07e65529699a671b6a6e2cb" + url: "https://pub.dev" + source: hosted + version: "2.1.3" + visibility_detector: + dependency: "direct main" + description: + name: visibility_detector + sha256: dd5cc11e13494f432d15939c3aa8ae76844c42b723398643ce9addb88a5ed420 + url: "https://pub.dev" + source: hosted + version: "0.4.0+2" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + url: "https://pub.dev" + source: hosted + version: "13.0.0" + watcher: + dependency: transitive + description: + name: watcher + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web: + dependency: transitive + description: + name: web + sha256: edc8a9573dd8c5a83a183dae1af2b6fd4131377404706ca4e5420474784906fa + url: "https://pub.dev" + source: hosted + version: "0.4.0" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: cc1f6c632a248278a091fd7d9a68f624906830f7c1c5aa66503fae0804633e1c + url: "https://pub.dev" + source: hosted + version: "2.4.2" + win32: + dependency: transitive + description: + name: win32 + sha256: "464f5674532865248444b4c3daca12bd9bf2d7c47f759ce2617986e7229494a8" + url: "https://pub.dev" + source: hosted + version: "5.2.0" + win32_registry: + dependency: transitive + description: + name: win32_registry + sha256: "41fd8a189940d8696b1b810efb9abcf60827b6cbfab90b0c43e8439e3a39d85a" + url: "https://pub.dev" + source: hosted + version: "1.1.2" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d + url: "https://pub.dev" + source: hosted + version: "1.0.4" + 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: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" +sdks: + dart: ">=3.2.0 <3.13.0" + flutter: ">=3.16.0" From 2124a06c026c2ce8cc6cc14fec1231b506861f8f Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Sun, 7 Jan 2024 01:04:58 +0530 Subject: [PATCH 10/17] added pubspec.lock from develop --- pubspec.lock | 218 ++++++++++++++++++++++----------------------------- 1 file changed, 93 insertions(+), 125 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index a72439b759..1f4ed3a840 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -101,10 +101,10 @@ packages: dependency: transitive description: name: build_resolvers - sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" + sha256: "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8" url: "https://pub.dev" source: hosted - version: "2.4.2" + version: "2.4.1" build_runner: dependency: "direct dev" description: @@ -133,10 +133,10 @@ packages: dependency: transitive description: name: built_value - sha256: c9aabae0718ec394e5bc3c7272e6bb0dc0b32201a08fe185ec1d8401d3e39309 + sha256: "69acb7007eb2a31dc901512bfe0f7b767168be34cb734835d54c070bfa74c1b2" url: "https://pub.dev" source: hosted - version: "8.8.1" + version: "8.8.0" cached_network_image: dependency: "direct main" description: @@ -189,10 +189,10 @@ packages: dependency: transitive description: name: cli_util - sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 + sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7 url: "https://pub.dev" source: hosted - version: "0.4.1" + version: "0.4.0" clock: dependency: transitive description: @@ -205,10 +205,10 @@ packages: dependency: transitive description: name: code_builder - sha256: feee43a5c05e7b3199bb375a86430b8ada1b04104f2923d0e03cc01ca87b6d84 + sha256: b2151ce26a06171005b379ecff6e08d34c470180ffe16b8e14b6d52be292b55f url: "https://pub.dev" source: hosted - version: "4.9.0" + version: "4.8.0" collection: dependency: transitive description: @@ -261,10 +261,10 @@ packages: dependency: transitive description: name: cross_file - sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e + sha256: "2f9d2cbccb76127ba28528cb3ae2c2326a122446a83de5a056aaa3880d3882c5" url: "https://pub.dev" source: hosted - version: "0.3.3+8" + version: "0.3.3+7" crypto: dependency: "direct main" description: @@ -341,10 +341,10 @@ packages: dependency: transitive description: name: device_info_plus - sha256: "0042cb3b2a76413ea5f8a2b40cec2a33e01d0c937e91f0f7c211fde4f7739ba6" + sha256: "093b02a284b4969bb641a6236bbb8e626e4035c6ec9e30c20b65d505c24b3080" url: "https://pub.dev" source: hosted - version: "9.1.1" + version: "10.0.0" device_info_plus_platform_interface: dependency: transitive description: @@ -437,10 +437,10 @@ packages: dependency: "direct main" description: name: firebase_messaging - sha256: "980259425fa5e2afc03e533f33723335731d21a56fd255611083bceebf4373a8" + sha256: "199fe8186a5370d1cf5ce0819191079afc305914e8f38715f5e23943940dfe2d" url: "https://pub.dev" source: hosted - version: "14.7.10" + version: "14.7.9" firebase_messaging_platform_interface: dependency: "direct main" description: @@ -490,10 +490,10 @@ packages: dependency: transitive description: name: flutter_hooks - sha256: "09f64db63fee3b2ab8b9038a1346be7d8986977fae3fec601275bf32455ccfc0" + sha256: "7c8db779c2d1010aa7f9ea3fbefe8f86524fcb87b69e8b0af31e1a4b55422dec" url: "https://pub.dev" source: hosted - version: "0.20.4" + version: "0.20.3" flutter_local_notifications: dependency: "direct main" description: @@ -633,18 +633,18 @@ packages: dependency: transitive description: name: geolocator_android - sha256: "741579fa6c9e412984d2bdb2fbaa54e3c3f7587c60aeacfe6e058358a11f40f8" + sha256: "93906636752ea4d4e778afa981fdfe7409f545b3147046300df194330044d349" url: "https://pub.dev" source: hosted - version: "4.4.0" + version: "4.3.1" geolocator_apple: dependency: transitive description: name: geolocator_apple - sha256: "1d938e2462cc5145c1402f89d49e70b60a2a51b89fb57414ced71417f1f479b1" + sha256: ab90ae811c42ec2f6021e01eca71df00dee6ff1e69d2c2dafd4daeb0b793f73d url: "https://pub.dev" source: hosted - version: "2.3.3" + version: "2.3.2" geolocator_platform_interface: dependency: transitive description: @@ -697,42 +697,42 @@ packages: dependency: "direct main" description: name: google_maps_flutter - sha256: c98817e21fcdc8e02db0c77e2411374293641d41f5b4d056dd28ee1ef6982f68 + sha256: d4914cb38b3dcb62c39c085d968d434de0f8050f00f4d9f5ba4a7c7e004934cb url: "https://pub.dev" source: hosted - version: "2.5.1" + version: "2.5.0" google_maps_flutter_android: dependency: transitive description: name: google_maps_flutter_android - sha256: fa351114bbe7ba7ddd71932be3ec8ed62bc9e7cbd9c817ea3133fc98ae7f6c5f + sha256: "4023e79184c762e63efe04da629d876085e0c296a7ca26745fb5750d4acd0aa2" url: "https://pub.dev" source: hosted - version: "2.6.1" + version: "2.5.3" google_maps_flutter_ios: dependency: transitive description: name: google_maps_flutter_ios - sha256: "86ff25bd276d129098643a2cee840509b5af6805c4a4863eebe559468ae1570f" + sha256: "2aa28eb9b9d5dfdce6932a7b7f096430bf83a1a09b4e21e81939351f407c787f" url: "https://pub.dev" source: hosted - version: "2.3.4" + version: "2.3.2" google_maps_flutter_platform_interface: dependency: transitive description: name: google_maps_flutter_platform_interface - sha256: "47430d0b0783913da54621de03697faecb8a9757c5855cab9fd3330f3dbf3ef4" + sha256: a3e9e6896501e566d902c6c69f010834d410ef4b7b5c18b90c77e871c86b7907 url: "https://pub.dev" source: hosted - version: "2.4.2" + version: "2.4.1" google_maps_flutter_web: dependency: transitive description: name: google_maps_flutter_web - sha256: "6245721c160d6f531c1ef568cf9bef8d660cd585a982aa75121269030163785a" + sha256: f893d1542c6562bc8299ef768fbbe92ade83c220ab3209b9477ec9f81ad585e4 url: "https://pub.dev" source: hosted - version: "0.5.4+3" + version: "0.5.4+2" googleapis: dependency: "direct main" description: @@ -745,18 +745,18 @@ packages: dependency: transitive description: name: gql - sha256: f57eb635aa2f134ced585584f3d53006816f1fdd909480bb7626a1d41063ce25 + sha256: aa3e0be4548353007b6e6fd24fcad0ce8c1179f9cb2ae5239d392fddb84a5ce5 url: "https://pub.dev" source: hosted - version: "1.0.1-alpha+1704118137418" + version: "1.0.1-alpha+1700868214564" gql_dedupe_link: dependency: transitive description: name: gql_dedupe_link - sha256: d0ba6388a52dab95e7e9a9fa3fec43c11172d3d3feda21bf88df39427c8e282f + sha256: e97e3f9490add43ba96cf5cc02d9d10a3723965c0bcc7bb1e04ef4f2e7a31a00 url: "https://pub.dev" source: hosted - version: "2.0.4-alpha+1704118137496" + version: "2.0.4-alpha+1700868214643" gql_error_link: dependency: transitive description: @@ -785,10 +785,10 @@ packages: dependency: transitive description: name: gql_link - sha256: "4cce5019a2ce727023a5e5f9763a9ff85b2770801b10a51738a10472ae779786" + sha256: "48dbf63b4831d800a2ce9675c9fecea3c9f2801de92072c7644a4bc52aa26c13" url: "https://pub.dev" source: hosted - version: "1.0.1-alpha+1704118137432" + version: "1.0.1-alpha+1700868214578" gql_transform_link: dependency: transitive description: @@ -801,10 +801,10 @@ packages: dependency: transitive description: name: graphql - sha256: d066e53446166c12537458386b507f7426f2b8801ebafc184576aab3cbc64d56 + sha256: "4ac531068107dffef188c74e7ff662777b729e9d5e0686f71623d4af1e3751c8" url: "https://pub.dev" source: hosted - version: "5.2.0-beta.7" + version: "5.2.0-beta.6" graphql_flutter: dependency: "direct main" description: @@ -905,18 +905,18 @@ packages: dependency: "direct main" description: name: image_picker - sha256: "340efe08645537d6b088a30620ee5752298b1630f23a829181172610b868262b" + sha256: fc712337719239b0b6e41316aa133350b078fa39b6cbd706b61f3fd421b03c77 url: "https://pub.dev" source: hosted - version: "1.0.6" + version: "1.0.5" image_picker_android: dependency: transitive description: name: image_picker_android - sha256: "1a27bf4cc0330389cebe465bab08fe6dec97e44015b4899637344bb7297759ec" + sha256: d6a6e78821086b0b737009b09363018309bbc6de3fd88cc5c26bc2bb44a4957f url: "https://pub.dev" source: hosted - version: "0.8.9+2" + version: "0.8.8+2" image_picker_for_web: dependency: transitive description: @@ -929,10 +929,10 @@ packages: dependency: transitive description: name: image_picker_ios - sha256: eac0a62104fa12feed213596df0321f57ce5a572562f72a68c4ff81e9e4caacf + sha256: "76ec722aeea419d03aa915c2c96bf5b47214b053899088c9abb4086ceecf97a7" url: "https://pub.dev" source: hosted - version: "0.8.9" + version: "0.8.8+4" image_picker_linux: dependency: transitive description: @@ -953,10 +953,10 @@ packages: dependency: transitive description: name: image_picker_platform_interface - sha256: "0e827c156e3a90edd3bbe7f6de048b39247b16e58173b08a835b7eb00aba239e" + sha256: ed9b00e63977c93b0d2d2b343685bed9c324534ba5abafbb3dfbd6a780b1b514 url: "https://pub.dev" source: hosted - version: "2.9.2" + version: "2.9.1" image_picker_windows: dependency: transitive description: @@ -1013,30 +1013,6 @@ packages: url: "https://pub.dev" source: hosted version: "6.7.1" - leak_tracker: - dependency: transitive - description: - name: leak_tracker - sha256: "41b90ceaec6d79819f31e975e61d479516efe701dea35f891b2f986c1b031422" - url: "https://pub.dev" - source: hosted - version: "9.0.17" - leak_tracker_flutter_testing: - dependency: transitive - description: - name: leak_tracker_flutter_testing - sha256: "54808cfcfa87dbc0d74c61ac063d624adf1bd5c0407301f32b06c783c60dc4ca" - url: "https://pub.dev" - source: hosted - version: "2.0.0" - leak_tracker_testing: - dependency: transitive - description: - name: leak_tracker_testing - sha256: "7e71be3c161472f6c9158ac8875dd8de575060d60b5d159ebca3600ea32c9116" - url: "https://pub.dev" - source: hosted - version: "1.0.6" lint: dependency: "direct dev" description: @@ -1057,26 +1033,26 @@ packages: dependency: transitive description: name: matcher - sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" url: "https://pub.dev" source: hosted - version: "0.12.16+1" + version: "0.12.16" material_color_utilities: dependency: transitive description: name: material_color_utilities - sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" url: "https://pub.dev" source: hosted - version: "0.8.0" + version: "0.5.0" meta: dependency: transitive description: name: meta - sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e url: "https://pub.dev" source: hosted - version: "1.11.0" + version: "1.10.0" mime: dependency: transitive description: @@ -1097,10 +1073,10 @@ packages: dependency: transitive description: name: mocktail - sha256: f603ebd85a576e5914870b02e5839fc5d0243b867bf710651cf239a28ebb365e + sha256: bac151b31e4ed78bd59ab89aa4c0928f297b1180186d5daf03734519e5f596c1 url: "https://pub.dev" source: hosted - version: "1.0.2" + version: "1.0.1" mocktail_image_network: dependency: "direct dev" description: @@ -1161,10 +1137,10 @@ packages: dependency: transitive description: name: path - sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" url: "https://pub.dev" source: hosted - version: "1.9.0" + version: "1.8.3" path_parsing: dependency: transitive description: @@ -1185,10 +1161,10 @@ packages: dependency: transitive description: name: path_provider_android - sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" + sha256: e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72 url: "https://pub.dev" source: hosted - version: "2.2.2" + version: "2.2.1" path_provider_foundation: dependency: transitive description: @@ -1273,26 +1249,26 @@ packages: dependency: transitive description: name: petitparser - sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750 url: "https://pub.dev" source: hosted - version: "6.0.2" + version: "5.4.0" platform: dependency: transitive description: name: platform - sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" + sha256: "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59" url: "https://pub.dev" source: hosted - version: "3.1.4" + version: "3.1.3" plugin_platform_interface: dependency: "direct main" description: name: plugin_platform_interface - sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + sha256: f4f88d4a900933e7267e2b353594774fc0d07fb072b47eedcd5b54e1ea3269f8 url: "https://pub.dev" source: hosted - version: "2.1.8" + version: "2.1.7" pointycastle: dependency: "direct main" description: @@ -1449,10 +1425,10 @@ packages: dependency: transitive description: name: shared_preferences_web - sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" + sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf url: "https://pub.dev" source: hosted - version: "2.2.2" + version: "2.2.1" shared_preferences_windows: dependency: transitive description: @@ -1502,10 +1478,10 @@ packages: dependency: transitive description: name: source_gen - sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" + sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 url: "https://pub.dev" source: hosted - version: "1.5.0" + version: "1.4.0" source_helper: dependency: transitive description: @@ -1522,14 +1498,6 @@ packages: url: "https://pub.dev" source: hosted version: "1.10.0" - sprintf: - dependency: transitive - description: - name: sprintf - sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" - url: "https://pub.dev" - source: hosted - version: "7.0.0" sqflite: dependency: transitive description: @@ -1590,10 +1558,10 @@ packages: dependency: transitive description: name: syncfusion_flutter_core - sha256: "083d4a0ddb25435d267328a30c3938d09599f7578f5f0d28fbd9fd5424c1cd51" + sha256: "1b40729aa10a727150a6cc56e532c770f4baded83846fca8700efd908d0f4d0a" url: "https://pub.dev" source: hosted - version: "24.1.44" + version: "24.1.43" syncfusion_flutter_datepicker: dependency: "direct main" description: @@ -1606,10 +1574,10 @@ packages: dependency: transitive description: name: synchronized - sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" + sha256: "5fcbd27688af6082f5abd611af56ee575342c30e87541d0245f7ff99faa02c60" url: "https://pub.dev" source: hosted - version: "3.1.0+1" + version: "3.1.0" talawa_lint: dependency: "direct dev" description: @@ -1765,10 +1733,10 @@ packages: dependency: transitive description: name: uuid - sha256: bb55f38968b9427ce5dcdb8aaaa41049282195e0cfa4cf48593572fa3d1f36bc + sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313" url: "https://pub.dev" source: hosted - version: "4.3.1" + version: "3.0.7" vector_graphics: dependency: transitive description: @@ -1813,26 +1781,26 @@ packages: dependency: "direct main" description: name: video_player - sha256: fbf28ce8bcfe709ad91b5789166c832cb7a684d14f571a81891858fefb5bb1c2 + sha256: e16f0a83601a78d165dabc17e4dac50997604eb9e4cc76e10fa219046b70cef3 url: "https://pub.dev" source: hosted - version: "2.8.2" + version: "2.8.1" video_player_android: dependency: transitive description: name: video_player_android - sha256: "7f8f25d7ad56819a82b2948357f3c3af071f6a678db33833b26ec36bbc221316" + sha256: "3fe89ab07fdbce786e7eb25b58532d6eaf189ceddc091cb66cba712f8d9e8e55" url: "https://pub.dev" source: hosted - version: "2.4.11" + version: "2.4.10" video_player_avfoundation: dependency: transitive description: name: video_player_avfoundation - sha256: "08da93071ef322603839aa42e90e23d4820b03cf2db7eb6a45de5d41fe85c2aa" + sha256: bc923884640d6dc403050586eb40713cdb8d1d84e6886d8aca50ab04c59124c2 url: "https://pub.dev" source: hosted - version: "2.5.4" + version: "2.5.2" video_player_platform_interface: dependency: transitive description: @@ -1845,10 +1813,10 @@ packages: dependency: transitive description: name: video_player_web - sha256: "34beb3a07d4331a24f7e7b2f75b8e2b103289038e07e65529699a671b6a6e2cb" + sha256: ab7a462b07d9ca80bed579e30fb3bce372468f1b78642e0911b10600f2c5cb5b url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.1.2" visibility_detector: dependency: "direct main" description: @@ -1877,26 +1845,26 @@ packages: dependency: transitive description: name: web - sha256: edc8a9573dd8c5a83a183dae1af2b6fd4131377404706ca4e5420474784906fa + sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 url: "https://pub.dev" source: hosted - version: "0.4.0" + version: "0.3.0" web_socket_channel: dependency: transitive description: name: web_socket_channel - sha256: cc1f6c632a248278a091fd7d9a68f624906830f7c1c5aa66503fae0804633e1c + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b url: "https://pub.dev" source: hosted - version: "2.4.2" + version: "2.4.0" win32: dependency: transitive description: name: win32 - sha256: "464f5674532865248444b4c3daca12bd9bf2d7c47f759ce2617986e7229494a8" + sha256: "7c99c0e1e2fa190b48d25c81ca5e42036d5cac81430ef249027d97b0935c553f" url: "https://pub.dev" source: hosted - version: "5.2.0" + version: "5.1.0" win32_registry: dependency: transitive description: @@ -1909,18 +1877,18 @@ packages: dependency: transitive description: name: xdg_directories - sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d + sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2" url: "https://pub.dev" source: hosted - version: "1.0.4" + version: "1.0.3" xml: dependency: transitive description: name: xml - sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84" url: "https://pub.dev" source: hosted - version: "6.5.0" + version: "6.3.0" yaml: dependency: transitive description: @@ -1931,4 +1899,4 @@ packages: version: "3.1.2" sdks: dart: ">=3.2.0 <3.13.0" - flutter: ">=3.16.0" + flutter: ">=3.16.0" \ No newline at end of file From 1eddad0fef51f4013e6776359078e2b587a57e41 Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Tue, 2 Jan 2024 23:47:16 +0530 Subject: [PATCH 11/17] removed pubspec.lock --- pubspec.lock | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pubspec.lock b/pubspec.lock index 77e2873cb3..e298424afd 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1843,4 +1843,5 @@ packages: version: "3.1.2" sdks: dart: ">=3.2.0 <3.13.0" - flutter: ">=3.16.0" \ No newline at end of file + flutter: ">=3.16.0" + From 7e6aceefc4fe360c5fcfdec99971b1e8ce549343 Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Tue, 9 Jan 2024 19:42:08 +0530 Subject: [PATCH 12/17] lock file --- pubspec.lock | 265 +++++++++++++++++++++++++-------------------------- 1 file changed, 132 insertions(+), 133 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index e298424afd..787698b4c4 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -17,6 +17,14 @@ packages: url: "https://pub.dev" source: hosted version: "61.0.0" + _flutterfire_internals: + dependency: transitive + description: + name: _flutterfire_internals + sha256: f5628cd9c92ed11083f425fd1f8f1bc60ecdda458c81d73b143aeda036c35fe7 + url: "https://pub.dev" + source: hosted + version: "1.3.16" analyzer: dependency: transitive description: @@ -93,10 +101,10 @@ packages: dependency: transitive description: name: build_resolvers - sha256: "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8" + sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" url: "https://pub.dev" source: hosted - version: "2.4.1" + version: "2.4.2" build_runner: dependency: "direct dev" description: @@ -125,10 +133,10 @@ packages: dependency: transitive description: name: built_value - sha256: "69acb7007eb2a31dc901512bfe0f7b767168be34cb734835d54c070bfa74c1b2" + sha256: c9aabae0718ec394e5bc3c7272e6bb0dc0b32201a08fe185ec1d8401d3e39309 url: "https://pub.dev" source: hosted - version: "8.8.0" + version: "8.8.1" cached_network_image: dependency: "direct main" description: @@ -181,10 +189,10 @@ packages: dependency: transitive description: name: cli_util - sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7 + sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 url: "https://pub.dev" source: hosted - version: "0.4.0" + version: "0.4.1" clock: dependency: transitive description: @@ -197,10 +205,10 @@ packages: dependency: transitive description: name: code_builder - sha256: b2151ce26a06171005b379ecff6e08d34c470180ffe16b8e14b6d52be292b55f + sha256: feee43a5c05e7b3199bb375a86430b8ada1b04104f2923d0e03cc01ca87b6d84 url: "https://pub.dev" source: hosted - version: "4.8.0" + version: "4.9.0" collection: dependency: transitive description: @@ -253,10 +261,10 @@ packages: dependency: transitive description: name: cross_file - sha256: "2f9d2cbccb76127ba28528cb3ae2c2326a122446a83de5a056aaa3880d3882c5" + sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e url: "https://pub.dev" source: hosted - version: "0.3.3+7" + version: "0.3.3+8" crypto: dependency: "direct main" description: @@ -333,10 +341,10 @@ packages: dependency: transitive description: name: device_info_plus - sha256: "093b02a284b4969bb641a6236bbb8e626e4035c6ec9e30c20b65d505c24b3080" + sha256: "0042cb3b2a76413ea5f8a2b40cec2a33e01d0c937e91f0f7c211fde4f7739ba6" url: "https://pub.dev" source: hosted - version: "10.0.0" + version: "9.1.1" device_info_plus_platform_interface: dependency: transitive description: @@ -401,6 +409,54 @@ packages: url: "https://pub.dev" source: hosted version: "0.9.3+1" + firebase_core: + dependency: "direct main" + description: + name: firebase_core + sha256: "96607c0e829a581c2a483c658f04e8b159964c3bae2730f73297070bc85d40bb" + url: "https://pub.dev" + source: hosted + version: "2.24.2" + firebase_core_platform_interface: + dependency: "direct main" + description: + name: firebase_core_platform_interface + sha256: c437ae5d17e6b5cc7981cf6fd458a5db4d12979905f9aafd1fea930428a9fe63 + url: "https://pub.dev" + source: hosted + version: "5.0.0" + firebase_core_web: + dependency: transitive + description: + name: firebase_core_web + sha256: d585bdf3c656c3f7821ba1bd44da5f13365d22fcecaf5eb75c4295246aaa83c0 + url: "https://pub.dev" + source: hosted + version: "2.10.0" + firebase_messaging: + dependency: "direct main" + description: + name: firebase_messaging + sha256: "199fe8186a5370d1cf5ce0819191079afc305914e8f38715f5e23943940dfe2d" + url: "https://pub.dev" + source: hosted + version: "14.7.9" + firebase_messaging_platform_interface: + dependency: "direct main" + description: + name: firebase_messaging_platform_interface + sha256: "54e283a0e41d81d854636ad0dad73066adc53407a60a7c3189c9656e2f1b6107" + url: "https://pub.dev" + source: hosted + version: "4.5.18" + firebase_messaging_web: + dependency: transitive + description: + name: firebase_messaging_web + sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4" + url: "https://pub.dev" + source: hosted + version: "3.5.18" fixnum: dependency: transitive description: @@ -434,10 +490,10 @@ packages: dependency: transitive description: name: flutter_hooks - sha256: "7c8db779c2d1010aa7f9ea3fbefe8f86524fcb87b69e8b0af31e1a4b55422dec" + sha256: "09f64db63fee3b2ab8b9038a1346be7d8986977fae3fec601275bf32455ccfc0" url: "https://pub.dev" source: hosted - version: "0.20.3" + version: "0.20.4" flutter_local_notifications: dependency: "direct main" description: @@ -577,18 +633,18 @@ packages: dependency: transitive description: name: geolocator_android - sha256: "93906636752ea4d4e778afa981fdfe7409f545b3147046300df194330044d349" + sha256: "741579fa6c9e412984d2bdb2fbaa54e3c3f7587c60aeacfe6e058358a11f40f8" url: "https://pub.dev" source: hosted - version: "4.3.1" + version: "4.4.0" geolocator_apple: dependency: transitive description: name: geolocator_apple - sha256: ab90ae811c42ec2f6021e01eca71df00dee6ff1e69d2c2dafd4daeb0b793f73d + sha256: "1d938e2462cc5145c1402f89d49e70b60a2a51b89fb57414ced71417f1f479b1" url: "https://pub.dev" source: hosted - version: "2.3.2" + version: "2.3.3" geolocator_platform_interface: dependency: transitive description: @@ -641,26 +697,26 @@ packages: dependency: "direct main" description: name: google_maps_flutter - sha256: c98817e21fcdc8e02db0c77e2411374293641d41f5b4d056dd28ee1ef6982f68 + sha256: d4914cb38b3dcb62c39c085d968d434de0f8050f00f4d9f5ba4a7c7e004934cb url: "https://pub.dev" source: hosted - version: "2.5.1" + version: "2.5.0" google_maps_flutter_android: dependency: transitive description: name: google_maps_flutter_android - sha256: "4023e79184c762e63efe04da629d876085e0c296a7ca26745fb5750d4acd0aa2" + sha256: "4279a338b79288fad5c8b03e5ae6ec30888bff210e0bab10b1f31f31e5a90558" url: "https://pub.dev" source: hosted - version: "2.5.3" + version: "2.6.0" google_maps_flutter_ios: dependency: transitive description: name: google_maps_flutter_ios - sha256: "2aa28eb9b9d5dfdce6932a7b7f096430bf83a1a09b4e21e81939351f407c787f" + sha256: "6ad65362aeeeda44b7c2c807e36bf578ef4b1c163882e085bdb040bf2934b246" url: "https://pub.dev" source: hosted - version: "2.3.2" + version: "2.3.3" google_maps_flutter_platform_interface: dependency: transitive description: @@ -689,18 +745,18 @@ packages: dependency: transitive description: name: gql - sha256: aa3e0be4548353007b6e6fd24fcad0ce8c1179f9cb2ae5239d392fddb84a5ce5 + sha256: f57eb635aa2f134ced585584f3d53006816f1fdd909480bb7626a1d41063ce25 url: "https://pub.dev" source: hosted - version: "1.0.1-alpha+1700868214564" + version: "1.0.1-alpha+1704118137418" gql_dedupe_link: dependency: transitive description: name: gql_dedupe_link - sha256: e97e3f9490add43ba96cf5cc02d9d10a3723965c0bcc7bb1e04ef4f2e7a31a00 + sha256: d0ba6388a52dab95e7e9a9fa3fec43c11172d3d3feda21bf88df39427c8e282f url: "https://pub.dev" source: hosted - version: "2.0.4-alpha+1700868214643" + version: "2.0.4-alpha+1704118137496" gql_error_link: dependency: transitive description: @@ -729,10 +785,10 @@ packages: dependency: transitive description: name: gql_link - sha256: "48dbf63b4831d800a2ce9675c9fecea3c9f2801de92072c7644a4bc52aa26c13" + sha256: "4cce5019a2ce727023a5e5f9763a9ff85b2770801b10a51738a10472ae779786" url: "https://pub.dev" source: hosted - version: "1.0.1-alpha+1700868214578" + version: "1.0.1-alpha+1704118137432" gql_transform_link: dependency: transitive description: @@ -745,10 +801,10 @@ packages: dependency: transitive description: name: graphql - sha256: "4ac531068107dffef188c74e7ff662777b729e9d5e0686f71623d4af1e3751c8" + sha256: d066e53446166c12537458386b507f7426f2b8801ebafc184576aab3cbc64d56 url: "https://pub.dev" source: hosted - version: "5.2.0-beta.6" + version: "5.2.0-beta.7" graphql_flutter: dependency: "direct main" description: @@ -849,18 +905,18 @@ packages: dependency: "direct main" description: name: image_picker - sha256: "340efe08645537d6b088a30620ee5752298b1630f23a829181172610b868262b" + sha256: fc712337719239b0b6e41316aa133350b078fa39b6cbd706b61f3fd421b03c77 url: "https://pub.dev" source: hosted - version: "1.0.6" + version: "1.0.5" image_picker_android: dependency: transitive description: name: image_picker_android - sha256: d6a6e78821086b0b737009b09363018309bbc6de3fd88cc5c26bc2bb44a4957f + sha256: ecdc963d2aa67af5195e723a40580f802d4392e31457a12a562b3e2bd6a396fe url: "https://pub.dev" source: hosted - version: "0.8.8+2" + version: "0.8.9+1" image_picker_for_web: dependency: transitive description: @@ -873,10 +929,10 @@ packages: dependency: transitive description: name: image_picker_ios - sha256: "76ec722aeea419d03aa915c2c96bf5b47214b053899088c9abb4086ceecf97a7" + sha256: eac0a62104fa12feed213596df0321f57ce5a572562f72a68c4ff81e9e4caacf url: "https://pub.dev" source: hosted - version: "0.8.8+4" + version: "0.8.9" image_picker_linux: dependency: transitive description: @@ -1017,10 +1073,10 @@ packages: dependency: transitive description: name: mocktail - sha256: bac151b31e4ed78bd59ab89aa4c0928f297b1180186d5daf03734519e5f596c1 + sha256: f603ebd85a576e5914870b02e5839fc5d0243b867bf710651cf239a28ebb365e url: "https://pub.dev" source: hosted - version: "1.0.1" + version: "1.0.2" mocktail_image_network: dependency: "direct dev" description: @@ -1105,10 +1161,10 @@ packages: dependency: transitive description: name: path_provider_android - sha256: e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72 + sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" url: "https://pub.dev" source: hosted - version: "2.2.1" + version: "2.2.2" path_provider_foundation: dependency: transitive description: @@ -1193,10 +1249,10 @@ packages: dependency: transitive description: name: petitparser - sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750 + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 url: "https://pub.dev" source: hosted - version: "5.4.0" + version: "6.0.2" platform: dependency: transitive description: @@ -1369,10 +1425,10 @@ packages: dependency: transitive description: name: shared_preferences_web - sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf + sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" url: "https://pub.dev" source: hosted - version: "2.2.1" + version: "2.2.2" shared_preferences_windows: dependency: transitive description: @@ -1422,10 +1478,10 @@ packages: dependency: transitive description: name: source_gen - sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 + sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" url: "https://pub.dev" source: hosted - version: "1.4.0" + version: "1.5.0" source_helper: dependency: transitive description: @@ -1442,6 +1498,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.10.0" + sprintf: + dependency: transitive + description: + name: sprintf + sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" + url: "https://pub.dev" + source: hosted + version: "7.0.0" sqflite: dependency: transitive description: @@ -1502,26 +1566,26 @@ packages: dependency: transitive description: name: syncfusion_flutter_core - sha256: "083d4a0ddb25435d267328a30c3938d09599f7578f5f0d28fbd9fd5424c1cd51" + sha256: "1b40729aa10a727150a6cc56e532c770f4baded83846fca8700efd908d0f4d0a" url: "https://pub.dev" source: hosted - version: "24.1.44" + version: "24.1.43" syncfusion_flutter_datepicker: dependency: "direct main" description: name: syncfusion_flutter_datepicker - sha256: "3bad2603b77d5a65e1a324b09480865531ae8026b95e63b1b253b93c26204f0a" + sha256: "3f9a8e8b585dd992d2321c899ec8d914634fb99eba02cf7a91c48a098bf62820" url: "https://pub.dev" source: hosted - version: "24.1.44" + version: "24.1.43" synchronized: dependency: transitive description: name: synchronized - sha256: "5fcbd27688af6082f5abd611af56ee575342c30e87541d0245f7ff99faa02c60" + sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "3.1.0+1" talawa_lint: dependency: "direct dev" description: @@ -1609,78 +1673,14 @@ packages: url: "https://pub.dev" source: hosted version: "0.1.0" - url_launcher: - dependency: "direct main" - description: - name: url_launcher - sha256: e9aa5ea75c84cf46b3db4eea212523591211c3cf2e13099ee4ec147f54201c86 - url: "https://pub.dev" - source: hosted - version: "6.2.2" - url_launcher_android: - dependency: transitive - description: - name: url_launcher_android - sha256: "31222ffb0063171b526d3e569079cf1f8b294075ba323443fdc690842bfd4def" - url: "https://pub.dev" - source: hosted - version: "6.2.0" - url_launcher_ios: - dependency: transitive - description: - name: url_launcher_ios - sha256: bba3373219b7abb6b5e0d071b0fe66dfbe005d07517a68e38d4fc3638f35c6d3 - url: "https://pub.dev" - source: hosted - version: "6.2.1" - url_launcher_linux: - dependency: transitive - description: - name: url_launcher_linux - sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 - url: "https://pub.dev" - source: hosted - version: "3.1.1" - url_launcher_macos: - dependency: transitive - description: - name: url_launcher_macos - sha256: b7244901ea3cf489c5335bdacda07264a6e960b1c1b1a9f91e4bc371d9e68234 - url: "https://pub.dev" - source: hosted - version: "3.1.0" - url_launcher_platform_interface: - dependency: "direct dev" - description: - name: url_launcher_platform_interface - sha256: "4aca1e060978e19b2998ee28503f40b5ba6226819c2b5e3e4d1821e8ccd92198" - url: "https://pub.dev" - source: hosted - version: "2.3.0" - url_launcher_web: - dependency: transitive - description: - name: url_launcher_web - sha256: "7286aec002c8feecc338cc33269e96b73955ab227456e9fb2a91f7fab8a358e9" - url: "https://pub.dev" - source: hosted - version: "2.2.2" - url_launcher_windows: - dependency: transitive - description: - name: url_launcher_windows - sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 - url: "https://pub.dev" - source: hosted - version: "3.1.1" uuid: dependency: transitive description: name: uuid - sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313" + sha256: bb55f38968b9427ce5dcdb8aaaa41049282195e0cfa4cf48593572fa3d1f36bc url: "https://pub.dev" source: hosted - version: "3.0.7" + version: "4.3.1" vector_graphics: dependency: transitive description: @@ -1725,10 +1725,10 @@ packages: dependency: "direct main" description: name: video_player - sha256: fbf28ce8bcfe709ad91b5789166c832cb7a684d14f571a81891858fefb5bb1c2 + sha256: e16f0a83601a78d165dabc17e4dac50997604eb9e4cc76e10fa219046b70cef3 url: "https://pub.dev" source: hosted - version: "2.8.2" + version: "2.8.1" video_player_android: dependency: transitive description: @@ -1741,10 +1741,10 @@ packages: dependency: transitive description: name: video_player_avfoundation - sha256: bc923884640d6dc403050586eb40713cdb8d1d84e6886d8aca50ab04c59124c2 + sha256: "01a57940e1dabc8769ccd457c4ae9ea50274e7d5a7617f7820dae5fe1d8436ae" url: "https://pub.dev" source: hosted - version: "2.5.2" + version: "2.5.3" video_player_platform_interface: dependency: transitive description: @@ -1789,26 +1789,26 @@ packages: dependency: transitive description: name: web - sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 + sha256: edc8a9573dd8c5a83a183dae1af2b6fd4131377404706ca4e5420474784906fa url: "https://pub.dev" source: hosted - version: "0.3.0" + version: "0.4.0" web_socket_channel: dependency: transitive description: name: web_socket_channel - sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b + sha256: "045ec2137c27bf1a32e6ffa0e734d532a6677bf9016a0d1a406c54e499ff945b" url: "https://pub.dev" source: hosted - version: "2.4.0" + version: "2.4.1" win32: dependency: transitive description: name: win32 - sha256: "7c99c0e1e2fa190b48d25c81ca5e42036d5cac81430ef249027d97b0935c553f" + sha256: b0f37db61ba2f2e9b7a78a1caece0052564d1bc70668156cf3a29d676fe4e574 url: "https://pub.dev" source: hosted - version: "5.1.0" + version: "5.1.1" win32_registry: dependency: transitive description: @@ -1829,10 +1829,10 @@ packages: dependency: transitive description: name: xml - sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84" + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 url: "https://pub.dev" source: hosted - version: "6.3.0" + version: "6.5.0" yaml: dependency: transitive description: @@ -1844,4 +1844,3 @@ packages: sdks: dart: ">=3.2.0 <3.13.0" flutter: ">=3.16.0" - From b2c0efaecbdf7f4d6bebb032b13827a9da797c69 Mon Sep 17 00:00:00 2001 From: Parag Gupta <103507835+Dante291@users.noreply.github.com> Date: Tue, 2 Jan 2024 21:38:32 +0530 Subject: [PATCH 13/17] Comprehensive Language Translation Enhancement for App Globalization (#2290) * Comprehensive Language Translation Enhancement for App Globalization * adding more translations * testing * test * test * test * proper format for translation files * formating * formating * formating * fixing translation * fixing linting errors * writing test for missing lines * writing test for missing lines * writing test for missing lines * fixing translations * fixing translations * fixing translations * fixing translations --- .../profile/profile_page.dart | 55 ++++++++++++++++++- 1 file changed, 54 insertions(+), 1 deletion(-) diff --git a/lib/views/after_auth_screens/profile/profile_page.dart b/lib/views/after_auth_screens/profile/profile_page.dart index 8c0f8584f4..787bbd875e 100644 --- a/lib/views/after_auth_screens/profile/profile_page.dart +++ b/lib/views/after_auth_screens/profile/profile_page.dart @@ -60,7 +60,60 @@ class ProfilePage extends StatelessWidget { IconButton( key: const Key('settingIcon'), onPressed: () { - navigationService.pushScreen(Routes.appSettings); + showModalBottomSheet( + context: context, + builder: (BuildContext context) { + return Container( + key: const Key('sheetContainer'), + height: SizeConfig.screenHeight! * 0.17, + decoration: const BoxDecoration( + borderRadius: BorderRadius.only( + bottomLeft: Radius.zero, + bottomRight: Radius.zero, + topLeft: Radius.circular(16), + topRight: Radius.circular(16), + ), + ), + child: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + mainAxisSize: MainAxisSize.min, + children: [ + TextButton( + onPressed: () { + navigationService + .pushScreen("/editProfilePage"); + }, + child: Text( + AppLocalizations.of(context)! + .strictTranslate("Edit Profile"), + style: const TextStyle( + fontFamily: 'open-sans', + ), + ), + ), + Divider( + endIndent: SizeConfig.screenHeight! * 0.03, + indent: SizeConfig.screenHeight! * 0.03, + ), + TextButton( + onPressed: () { + model.logout(context); + }, + child: Text( + AppLocalizations.of(context)! + .strictTranslate("Log Out"), + style: const TextStyle( + fontFamily: 'open-sans', + ), + ), + ), + ], + ), + ), + ); + }, + ); }, icon: const Icon(Icons.settings), ), From e98141deb694df4b8305cf1b4ad1281b340b6e2b Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Tue, 9 Jan 2024 19:49:03 +0530 Subject: [PATCH 14/17] fix --- .../profile/profile_page.dart | 55 +------------------ 1 file changed, 1 insertion(+), 54 deletions(-) diff --git a/lib/views/after_auth_screens/profile/profile_page.dart b/lib/views/after_auth_screens/profile/profile_page.dart index 787bbd875e..8c0f8584f4 100644 --- a/lib/views/after_auth_screens/profile/profile_page.dart +++ b/lib/views/after_auth_screens/profile/profile_page.dart @@ -60,60 +60,7 @@ class ProfilePage extends StatelessWidget { IconButton( key: const Key('settingIcon'), onPressed: () { - showModalBottomSheet( - context: context, - builder: (BuildContext context) { - return Container( - key: const Key('sheetContainer'), - height: SizeConfig.screenHeight! * 0.17, - decoration: const BoxDecoration( - borderRadius: BorderRadius.only( - bottomLeft: Radius.zero, - bottomRight: Radius.zero, - topLeft: Radius.circular(16), - topRight: Radius.circular(16), - ), - ), - child: Center( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - mainAxisSize: MainAxisSize.min, - children: [ - TextButton( - onPressed: () { - navigationService - .pushScreen("/editProfilePage"); - }, - child: Text( - AppLocalizations.of(context)! - .strictTranslate("Edit Profile"), - style: const TextStyle( - fontFamily: 'open-sans', - ), - ), - ), - Divider( - endIndent: SizeConfig.screenHeight! * 0.03, - indent: SizeConfig.screenHeight! * 0.03, - ), - TextButton( - onPressed: () { - model.logout(context); - }, - child: Text( - AppLocalizations.of(context)! - .strictTranslate("Log Out"), - style: const TextStyle( - fontFamily: 'open-sans', - ), - ), - ), - ], - ), - ), - ); - }, - ); + navigationService.pushScreen(Routes.appSettings); }, icon: const Icon(Icons.settings), ), From 701623b90af5afa0b8a8c65f5e0bf8fc066c018f Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Tue, 9 Jan 2024 19:49:57 +0530 Subject: [PATCH 15/17] fix --- pubspec.lock | 265 ++++++++++++++++++++++++++------------------------- 1 file changed, 133 insertions(+), 132 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 787698b4c4..37ea707661 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -17,14 +17,6 @@ packages: url: "https://pub.dev" source: hosted version: "61.0.0" - _flutterfire_internals: - dependency: transitive - description: - name: _flutterfire_internals - sha256: f5628cd9c92ed11083f425fd1f8f1bc60ecdda458c81d73b143aeda036c35fe7 - url: "https://pub.dev" - source: hosted - version: "1.3.16" analyzer: dependency: transitive description: @@ -101,10 +93,10 @@ packages: dependency: transitive description: name: build_resolvers - sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" + sha256: "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8" url: "https://pub.dev" source: hosted - version: "2.4.2" + version: "2.4.1" build_runner: dependency: "direct dev" description: @@ -133,10 +125,10 @@ packages: dependency: transitive description: name: built_value - sha256: c9aabae0718ec394e5bc3c7272e6bb0dc0b32201a08fe185ec1d8401d3e39309 + sha256: "69acb7007eb2a31dc901512bfe0f7b767168be34cb734835d54c070bfa74c1b2" url: "https://pub.dev" source: hosted - version: "8.8.1" + version: "8.8.0" cached_network_image: dependency: "direct main" description: @@ -189,10 +181,10 @@ packages: dependency: transitive description: name: cli_util - sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 + sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7 url: "https://pub.dev" source: hosted - version: "0.4.1" + version: "0.4.0" clock: dependency: transitive description: @@ -205,10 +197,10 @@ packages: dependency: transitive description: name: code_builder - sha256: feee43a5c05e7b3199bb375a86430b8ada1b04104f2923d0e03cc01ca87b6d84 + sha256: b2151ce26a06171005b379ecff6e08d34c470180ffe16b8e14b6d52be292b55f url: "https://pub.dev" source: hosted - version: "4.9.0" + version: "4.8.0" collection: dependency: transitive description: @@ -261,10 +253,10 @@ packages: dependency: transitive description: name: cross_file - sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e + sha256: "2f9d2cbccb76127ba28528cb3ae2c2326a122446a83de5a056aaa3880d3882c5" url: "https://pub.dev" source: hosted - version: "0.3.3+8" + version: "0.3.3+7" crypto: dependency: "direct main" description: @@ -341,10 +333,10 @@ packages: dependency: transitive description: name: device_info_plus - sha256: "0042cb3b2a76413ea5f8a2b40cec2a33e01d0c937e91f0f7c211fde4f7739ba6" + sha256: "093b02a284b4969bb641a6236bbb8e626e4035c6ec9e30c20b65d505c24b3080" url: "https://pub.dev" source: hosted - version: "9.1.1" + version: "10.0.0" device_info_plus_platform_interface: dependency: transitive description: @@ -409,54 +401,6 @@ packages: url: "https://pub.dev" source: hosted version: "0.9.3+1" - firebase_core: - dependency: "direct main" - description: - name: firebase_core - sha256: "96607c0e829a581c2a483c658f04e8b159964c3bae2730f73297070bc85d40bb" - url: "https://pub.dev" - source: hosted - version: "2.24.2" - firebase_core_platform_interface: - dependency: "direct main" - description: - name: firebase_core_platform_interface - sha256: c437ae5d17e6b5cc7981cf6fd458a5db4d12979905f9aafd1fea930428a9fe63 - url: "https://pub.dev" - source: hosted - version: "5.0.0" - firebase_core_web: - dependency: transitive - description: - name: firebase_core_web - sha256: d585bdf3c656c3f7821ba1bd44da5f13365d22fcecaf5eb75c4295246aaa83c0 - url: "https://pub.dev" - source: hosted - version: "2.10.0" - firebase_messaging: - dependency: "direct main" - description: - name: firebase_messaging - sha256: "199fe8186a5370d1cf5ce0819191079afc305914e8f38715f5e23943940dfe2d" - url: "https://pub.dev" - source: hosted - version: "14.7.9" - firebase_messaging_platform_interface: - dependency: "direct main" - description: - name: firebase_messaging_platform_interface - sha256: "54e283a0e41d81d854636ad0dad73066adc53407a60a7c3189c9656e2f1b6107" - url: "https://pub.dev" - source: hosted - version: "4.5.18" - firebase_messaging_web: - dependency: transitive - description: - name: firebase_messaging_web - sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4" - url: "https://pub.dev" - source: hosted - version: "3.5.18" fixnum: dependency: transitive description: @@ -490,10 +434,10 @@ packages: dependency: transitive description: name: flutter_hooks - sha256: "09f64db63fee3b2ab8b9038a1346be7d8986977fae3fec601275bf32455ccfc0" + sha256: "7c8db779c2d1010aa7f9ea3fbefe8f86524fcb87b69e8b0af31e1a4b55422dec" url: "https://pub.dev" source: hosted - version: "0.20.4" + version: "0.20.3" flutter_local_notifications: dependency: "direct main" description: @@ -633,18 +577,18 @@ packages: dependency: transitive description: name: geolocator_android - sha256: "741579fa6c9e412984d2bdb2fbaa54e3c3f7587c60aeacfe6e058358a11f40f8" + sha256: "93906636752ea4d4e778afa981fdfe7409f545b3147046300df194330044d349" url: "https://pub.dev" source: hosted - version: "4.4.0" + version: "4.3.1" geolocator_apple: dependency: transitive description: name: geolocator_apple - sha256: "1d938e2462cc5145c1402f89d49e70b60a2a51b89fb57414ced71417f1f479b1" + sha256: ab90ae811c42ec2f6021e01eca71df00dee6ff1e69d2c2dafd4daeb0b793f73d url: "https://pub.dev" source: hosted - version: "2.3.3" + version: "2.3.2" geolocator_platform_interface: dependency: transitive description: @@ -697,26 +641,26 @@ packages: dependency: "direct main" description: name: google_maps_flutter - sha256: d4914cb38b3dcb62c39c085d968d434de0f8050f00f4d9f5ba4a7c7e004934cb + sha256: c98817e21fcdc8e02db0c77e2411374293641d41f5b4d056dd28ee1ef6982f68 url: "https://pub.dev" source: hosted - version: "2.5.0" + version: "2.5.1" google_maps_flutter_android: dependency: transitive description: name: google_maps_flutter_android - sha256: "4279a338b79288fad5c8b03e5ae6ec30888bff210e0bab10b1f31f31e5a90558" + sha256: "4023e79184c762e63efe04da629d876085e0c296a7ca26745fb5750d4acd0aa2" url: "https://pub.dev" source: hosted - version: "2.6.0" + version: "2.5.3" google_maps_flutter_ios: dependency: transitive description: name: google_maps_flutter_ios - sha256: "6ad65362aeeeda44b7c2c807e36bf578ef4b1c163882e085bdb040bf2934b246" + sha256: "2aa28eb9b9d5dfdce6932a7b7f096430bf83a1a09b4e21e81939351f407c787f" url: "https://pub.dev" source: hosted - version: "2.3.3" + version: "2.3.2" google_maps_flutter_platform_interface: dependency: transitive description: @@ -745,18 +689,18 @@ packages: dependency: transitive description: name: gql - sha256: f57eb635aa2f134ced585584f3d53006816f1fdd909480bb7626a1d41063ce25 + sha256: aa3e0be4548353007b6e6fd24fcad0ce8c1179f9cb2ae5239d392fddb84a5ce5 url: "https://pub.dev" source: hosted - version: "1.0.1-alpha+1704118137418" + version: "1.0.1-alpha+1700868214564" gql_dedupe_link: dependency: transitive description: name: gql_dedupe_link - sha256: d0ba6388a52dab95e7e9a9fa3fec43c11172d3d3feda21bf88df39427c8e282f + sha256: e97e3f9490add43ba96cf5cc02d9d10a3723965c0bcc7bb1e04ef4f2e7a31a00 url: "https://pub.dev" source: hosted - version: "2.0.4-alpha+1704118137496" + version: "2.0.4-alpha+1700868214643" gql_error_link: dependency: transitive description: @@ -785,10 +729,10 @@ packages: dependency: transitive description: name: gql_link - sha256: "4cce5019a2ce727023a5e5f9763a9ff85b2770801b10a51738a10472ae779786" + sha256: "48dbf63b4831d800a2ce9675c9fecea3c9f2801de92072c7644a4bc52aa26c13" url: "https://pub.dev" source: hosted - version: "1.0.1-alpha+1704118137432" + version: "1.0.1-alpha+1700868214578" gql_transform_link: dependency: transitive description: @@ -801,10 +745,10 @@ packages: dependency: transitive description: name: graphql - sha256: d066e53446166c12537458386b507f7426f2b8801ebafc184576aab3cbc64d56 + sha256: "4ac531068107dffef188c74e7ff662777b729e9d5e0686f71623d4af1e3751c8" url: "https://pub.dev" source: hosted - version: "5.2.0-beta.7" + version: "5.2.0-beta.6" graphql_flutter: dependency: "direct main" description: @@ -905,18 +849,18 @@ packages: dependency: "direct main" description: name: image_picker - sha256: fc712337719239b0b6e41316aa133350b078fa39b6cbd706b61f3fd421b03c77 + sha256: "340efe08645537d6b088a30620ee5752298b1630f23a829181172610b868262b" url: "https://pub.dev" source: hosted - version: "1.0.5" + version: "1.0.6" image_picker_android: dependency: transitive description: name: image_picker_android - sha256: ecdc963d2aa67af5195e723a40580f802d4392e31457a12a562b3e2bd6a396fe + sha256: d6a6e78821086b0b737009b09363018309bbc6de3fd88cc5c26bc2bb44a4957f url: "https://pub.dev" source: hosted - version: "0.8.9+1" + version: "0.8.8+2" image_picker_for_web: dependency: transitive description: @@ -929,10 +873,10 @@ packages: dependency: transitive description: name: image_picker_ios - sha256: eac0a62104fa12feed213596df0321f57ce5a572562f72a68c4ff81e9e4caacf + sha256: "76ec722aeea419d03aa915c2c96bf5b47214b053899088c9abb4086ceecf97a7" url: "https://pub.dev" source: hosted - version: "0.8.9" + version: "0.8.8+4" image_picker_linux: dependency: transitive description: @@ -1073,10 +1017,10 @@ packages: dependency: transitive description: name: mocktail - sha256: f603ebd85a576e5914870b02e5839fc5d0243b867bf710651cf239a28ebb365e + sha256: bac151b31e4ed78bd59ab89aa4c0928f297b1180186d5daf03734519e5f596c1 url: "https://pub.dev" source: hosted - version: "1.0.2" + version: "1.0.1" mocktail_image_network: dependency: "direct dev" description: @@ -1161,10 +1105,10 @@ packages: dependency: transitive description: name: path_provider_android - sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" + sha256: e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72 url: "https://pub.dev" source: hosted - version: "2.2.2" + version: "2.2.1" path_provider_foundation: dependency: transitive description: @@ -1249,10 +1193,10 @@ packages: dependency: transitive description: name: petitparser - sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750 url: "https://pub.dev" source: hosted - version: "6.0.2" + version: "5.4.0" platform: dependency: transitive description: @@ -1425,10 +1369,10 @@ packages: dependency: transitive description: name: shared_preferences_web - sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" + sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf url: "https://pub.dev" source: hosted - version: "2.2.2" + version: "2.2.1" shared_preferences_windows: dependency: transitive description: @@ -1478,10 +1422,10 @@ packages: dependency: transitive description: name: source_gen - sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" + sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 url: "https://pub.dev" source: hosted - version: "1.5.0" + version: "1.4.0" source_helper: dependency: transitive description: @@ -1498,14 +1442,6 @@ packages: url: "https://pub.dev" source: hosted version: "1.10.0" - sprintf: - dependency: transitive - description: - name: sprintf - sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" - url: "https://pub.dev" - source: hosted - version: "7.0.0" sqflite: dependency: transitive description: @@ -1566,26 +1502,26 @@ packages: dependency: transitive description: name: syncfusion_flutter_core - sha256: "1b40729aa10a727150a6cc56e532c770f4baded83846fca8700efd908d0f4d0a" + sha256: "083d4a0ddb25435d267328a30c3938d09599f7578f5f0d28fbd9fd5424c1cd51" url: "https://pub.dev" source: hosted - version: "24.1.43" + version: "24.1.44" syncfusion_flutter_datepicker: dependency: "direct main" description: name: syncfusion_flutter_datepicker - sha256: "3f9a8e8b585dd992d2321c899ec8d914634fb99eba02cf7a91c48a098bf62820" + sha256: "3bad2603b77d5a65e1a324b09480865531ae8026b95e63b1b253b93c26204f0a" url: "https://pub.dev" source: hosted - version: "24.1.43" + version: "24.1.44" synchronized: dependency: transitive description: name: synchronized - sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" + sha256: "5fcbd27688af6082f5abd611af56ee575342c30e87541d0245f7ff99faa02c60" url: "https://pub.dev" source: hosted - version: "3.1.0+1" + version: "3.1.0" talawa_lint: dependency: "direct dev" description: @@ -1673,14 +1609,78 @@ packages: url: "https://pub.dev" source: hosted version: "0.1.0" + url_launcher: + dependency: "direct main" + description: + name: url_launcher + sha256: e9aa5ea75c84cf46b3db4eea212523591211c3cf2e13099ee4ec147f54201c86 + url: "https://pub.dev" + source: hosted + version: "6.2.2" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + sha256: "31222ffb0063171b526d3e569079cf1f8b294075ba323443fdc690842bfd4def" + url: "https://pub.dev" + source: hosted + version: "6.2.0" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + sha256: bba3373219b7abb6b5e0d071b0fe66dfbe005d07517a68e38d4fc3638f35c6d3 + url: "https://pub.dev" + source: hosted + version: "6.2.1" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 + url: "https://pub.dev" + source: hosted + version: "3.1.1" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + sha256: b7244901ea3cf489c5335bdacda07264a6e960b1c1b1a9f91e4bc371d9e68234 + url: "https://pub.dev" + source: hosted + version: "3.1.0" + url_launcher_platform_interface: + dependency: "direct dev" + description: + name: url_launcher_platform_interface + sha256: "4aca1e060978e19b2998ee28503f40b5ba6226819c2b5e3e4d1821e8ccd92198" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + sha256: "7286aec002c8feecc338cc33269e96b73955ab227456e9fb2a91f7fab8a358e9" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 + url: "https://pub.dev" + source: hosted + version: "3.1.1" uuid: dependency: transitive description: name: uuid - sha256: bb55f38968b9427ce5dcdb8aaaa41049282195e0cfa4cf48593572fa3d1f36bc + sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313" url: "https://pub.dev" source: hosted - version: "4.3.1" + version: "3.0.7" vector_graphics: dependency: transitive description: @@ -1725,10 +1725,10 @@ packages: dependency: "direct main" description: name: video_player - sha256: e16f0a83601a78d165dabc17e4dac50997604eb9e4cc76e10fa219046b70cef3 + sha256: fbf28ce8bcfe709ad91b5789166c832cb7a684d14f571a81891858fefb5bb1c2 url: "https://pub.dev" source: hosted - version: "2.8.1" + version: "2.8.2" video_player_android: dependency: transitive description: @@ -1741,10 +1741,10 @@ packages: dependency: transitive description: name: video_player_avfoundation - sha256: "01a57940e1dabc8769ccd457c4ae9ea50274e7d5a7617f7820dae5fe1d8436ae" + sha256: bc923884640d6dc403050586eb40713cdb8d1d84e6886d8aca50ab04c59124c2 url: "https://pub.dev" source: hosted - version: "2.5.3" + version: "2.5.2" video_player_platform_interface: dependency: transitive description: @@ -1789,26 +1789,26 @@ packages: dependency: transitive description: name: web - sha256: edc8a9573dd8c5a83a183dae1af2b6fd4131377404706ca4e5420474784906fa + sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 url: "https://pub.dev" source: hosted - version: "0.4.0" + version: "0.3.0" web_socket_channel: dependency: transitive description: name: web_socket_channel - sha256: "045ec2137c27bf1a32e6ffa0e734d532a6677bf9016a0d1a406c54e499ff945b" + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b url: "https://pub.dev" source: hosted - version: "2.4.1" + version: "2.4.0" win32: dependency: transitive description: name: win32 - sha256: b0f37db61ba2f2e9b7a78a1caece0052564d1bc70668156cf3a29d676fe4e574 + sha256: "7c99c0e1e2fa190b48d25c81ca5e42036d5cac81430ef249027d97b0935c553f" url: "https://pub.dev" source: hosted - version: "5.1.1" + version: "5.1.0" win32_registry: dependency: transitive description: @@ -1829,10 +1829,10 @@ packages: dependency: transitive description: name: xml - sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84" url: "https://pub.dev" source: hosted - version: "6.5.0" + version: "6.3.0" yaml: dependency: transitive description: @@ -1844,3 +1844,4 @@ packages: sdks: dart: ">=3.2.0 <3.13.0" flutter: ">=3.16.0" + \ No newline at end of file From 3cc697fc2c38a5b50232ed520ecf228abb29cd21 Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Tue, 9 Jan 2024 19:50:24 +0530 Subject: [PATCH 16/17] fix --- pubspec.lock | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 37ea707661..77e2873cb3 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1843,5 +1843,4 @@ packages: version: "3.1.2" sdks: dart: ">=3.2.0 <3.13.0" - flutter: ">=3.16.0" - \ No newline at end of file + flutter: ">=3.16.0" \ No newline at end of file From 55ce6b8f33aa32c53b8f20d56ef841ff448c93c2 Mon Sep 17 00:00:00 2001 From: Ankit Varshney Date: Tue, 9 Jan 2024 20:10:23 +0530 Subject: [PATCH 17/17] fix --- pubspec.lock | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pubspec.lock b/pubspec.lock index 77e2873cb3..37ea707661 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1843,4 +1843,5 @@ packages: version: "3.1.2" sdks: dart: ">=3.2.0 <3.13.0" - flutter: ">=3.16.0" \ No newline at end of file + flutter: ">=3.16.0" + \ No newline at end of file