diff --git a/lib/new_ui/colors.dart b/lib/new_ui/colors.dart index 4e2c6e41..50f119ff 100644 --- a/lib/new_ui/colors.dart +++ b/lib/new_ui/colors.dart @@ -8,6 +8,8 @@ const commonbgLLightblack = Color(0xff323232); const cardcolorblue = Color(0xff0077b6); const oldDateSelectBlue = Color(0xff2196F3); const cardlightblue = Color(0xff90e0ef); +const timePickerBg = Color(0xff252526); +const timePickerBorder = Color(0xff313334); // const commonbgwhite = Color(0xfff1f5f8); const greencontainercolor = Color(0xff2e9d59); //the red container uses a gradient, unsure of its start and end values diff --git a/lib/new_ui/screens/home_screen/home_screen.dart b/lib/new_ui/screens/home_screen/home_screen.dart index 171cc63f..77432e30 100644 --- a/lib/new_ui/screens/home_screen/home_screen.dart +++ b/lib/new_ui/screens/home_screen/home_screen.dart @@ -9,6 +9,40 @@ import 'package:tsec_app/new_ui/screens/timetable_screen/timetable_screen.dart'; import 'package:tsec_app/provider/auth_provider.dart'; import 'package:tsec_app/new_ui/screens/profile_screen/profile_screen.dart'; import 'package:tsec_app/provider/railway_concession_provider.dart'; + + + + + + + + + + + +///////////////////////// THIS SCREEN ISNT BEING USED . HOME WIDGET IS BRING USWED //////////////////////////////////////////////////////////// + + + + + + + + + + + + + + + + + + + + + + class HomeScreen extends ConsumerStatefulWidget { String currentBottomNavPage; diff --git a/lib/new_ui/screens/home_screen/widgets/home_widget.dart b/lib/new_ui/screens/home_screen/widgets/home_widget.dart index fc1c44c4..c22537c3 100644 --- a/lib/new_ui/screens/home_screen/widgets/home_widget.dart +++ b/lib/new_ui/screens/home_screen/widgets/home_widget.dart @@ -490,37 +490,44 @@ class _HomeWidgetState extends ConsumerState { //DATE SELECTOR if(_onlyUserLoggedIn) Padding( - padding: const EdgeInsets.all(15), + padding: const EdgeInsets.fromLTRB(0, 7, 0, 20), child: Container( width: _size.width * 0.9, // color: Colors.red, - height: 85, + height: 70, // could have used _size but fuck it whore-licks child: ClipRRect( - borderRadius: BorderRadius.circular(15.0), - child: DatePicker( - DateTime.now(), - width: 50, - monthTextStyle: _theme.textTheme.headlineSmall!.copyWith( - fontSize: 14, - color: Colors.grey, + borderRadius: BorderRadius.circular(10.0), + child: Container( + decoration: BoxDecoration( + border: Border.all(color: timePickerBorder, width: 1.0), // Change the color and width as needed + borderRadius: BorderRadius.circular(10.0), + color: timePickerBg, ), - dayTextStyle: _theme.textTheme.headlineSmall!.copyWith( - fontSize: 14, - color: Colors.grey, - ), - dateTextStyle: _theme.textTheme.titleSmall!.copyWith( - fontSize: 13, - color: Colors.grey, + child: DatePicker( + DateTime.now(), + width: 45, + monthTextStyle: _theme.textTheme.headlineSmall!.copyWith( + fontSize: 11, + color: Colors.grey, + ), + dayTextStyle: _theme.textTheme.headlineSmall!.copyWith( + fontSize: 11, + color: Colors.grey, + ), + dateTextStyle: _theme.textTheme.titleSmall!.copyWith( + fontSize: 11, + color: Colors.grey, + ), + initialSelectedDate: DateTime.now(), + selectionColor: oldDateSelectBlue, + selectedTextColor: Colors.white, + onDateChange: (selectedDate) { + ref + .read(dayProvider.notifier) + .update((state) => selectedDate); + }, ), - initialSelectedDate: DateTime.now(), - selectionColor: oldDateSelectBlue, - selectedTextColor: Colors.white, - onDateChange: (selectedDate) { - ref - .read(dayProvider.notifier) - .update((state) => selectedDate); - }, ), ), ), diff --git a/lib/new_ui/screens/notes_screen/widgets/notes_filter.dart b/lib/new_ui/screens/notes_screen/widgets/notes_filter.dart index d577fac9..a7bda088 100644 --- a/lib/new_ui/screens/notes_screen/widgets/notes_filter.dart +++ b/lib/new_ui/screens/notes_screen/widgets/notes_filter.dart @@ -3,6 +3,7 @@ import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:intl/intl.dart'; import 'package:tsec_app/models/subject_model/subject_model.dart'; import 'package:tsec_app/models/user_model/user_model.dart'; +import 'package:tsec_app/new_ui/colors.dart'; import 'package:tsec_app/provider/auth_provider.dart'; import 'package:tsec_app/provider/subjects_provider.dart'; import 'package:tsec_app/utils/custom_snackbar.dart'; @@ -146,7 +147,7 @@ class _NotesFilterBarState extends ConsumerState pinned: true, // toolbarHeight: _isFilterVisible ? 500 : 60, toolbarHeight: sizeAnimation.value, - surfaceTintColor: Colors.transparent, + automaticallyImplyLeading: false, backgroundColor: Colors.transparent, title: AnimatedCrossFade( @@ -192,9 +193,11 @@ class _NotesFilterBarState extends ConsumerState // Second child is the filter bar secondChild: Container( + decoration: BoxDecoration( borderRadius: BorderRadius.circular(18), - color: Theme.of(context).colorScheme.tertiary, + color: timePickerBorder, + border: Border.all(color: timePickerBorder, width: 1.0), // Change the color and width as needed // boxShadow: isItDarkMode // ? shadowLightModeTextFields // : shadowDarkModeTextFields, @@ -241,7 +244,7 @@ class _NotesFilterBarState extends ConsumerState ? Column( mainAxisSize: MainAxisSize.max, children: [ - const Text("Subjects"), + const Text("Subjects",style: TextStyle(color: Colors.white),), SizedBox( height: 250, child: GridView.builder( @@ -353,9 +356,7 @@ class _NotesFilterBarState extends ConsumerState }, icon: Icon( Icons.cancel_outlined, - color: Theme.of(context) - .colorScheme - .onSecondaryContainer, + color: Colors.white, size: 30, ), ), @@ -366,9 +367,7 @@ class _NotesFilterBarState extends ConsumerState }, icon: Icon( Icons.refresh, - color: Theme.of(context) - .colorScheme - .onSecondaryContainer, + color: Colors.white, size: 30, ), ), diff --git a/lib/new_ui/screens/railway_screen/railway_screen.dart b/lib/new_ui/screens/railway_screen/railway_screen.dart index c165e001..044c95d9 100644 --- a/lib/new_ui/screens/railway_screen/railway_screen.dart +++ b/lib/new_ui/screens/railway_screen/railway_screen.dart @@ -574,7 +574,7 @@ class _RailwayConcessionScreenState SizedBox( height: size.height * .075, ), - if (concessionDetails?.status != null && (concessionDetails!.status == 'serviced' || concessionDetails!.status == 'unserviced')) + if (concessionDetails!= null && concessionDetails.status != null && (concessionDetails!.status == 'serviced' || concessionDetails!.status == 'unserviced')) //Old UI Container /*Container( width: size.width * 0.8, @@ -704,13 +704,7 @@ class _RailwayConcessionScreenState height: 60, child: Padding( padding: const EdgeInsets.all(10.0), - child: - (concessionDetails!.status == 'serviced') - ? Text( - futurePassMessage(concessionDetails), - textAlign: TextAlign.justify, - style: const TextStyle(color: Colors.white),) - : Row( + child: Row( children: [ Image.asset('assets/images/icons/box_imp.png',width: 16,), SizedBox(width: 10.0,), @@ -852,32 +846,35 @@ class _RailwayConcessionScreenState Column( children: [ SizedBox(height: 20.0,), - Container( - width: size.width*0.75, - decoration: BoxDecoration( - color: oldDateSelectBlue, - borderRadius: BorderRadius.circular(size.width*0.05), - border: Border.all(color: Colors.white), - boxShadow: [ - BoxShadow(offset: Offset.fromDirection(2),spreadRadius: 2,color: Colors.black,blurRadius: 2) - ], - ), - alignment: Alignment.center, - height: 60, - child: Padding( - padding: const EdgeInsets.all(10.0), - child: - Row( - children: [ - Image.asset('assets/images/icons/box_imp.png',width: 16,), - SizedBox(width: 10.0,), - Expanded( - child: Text( - futurePassMessage(concessionDetails), - style: const TextStyle(color: Colors.white),), - ) - ], - ), + GestureDetector( + onTap: ()=>Navigator.push(context, MaterialPageRoute(builder: (context)=> GuideLinesScreen(),),), + child: Container( + width: size.width*0.75, + decoration: BoxDecoration( + color: oldDateSelectBlue, + borderRadius: BorderRadius.circular(size.width*0.05), + border: Border.all(color: Colors.white), + boxShadow: [ + BoxShadow(offset: Offset.fromDirection(2),spreadRadius: 2,color: Colors.black,blurRadius: 2) + ], + ), + alignment: Alignment.center, + height: 60, + child: Padding( + padding: const EdgeInsets.all(10.0), + child: + Row( + children: [ + Image.asset('assets/images/icons/box_imp.png',width: 16,), + SizedBox(width: 10.0,), + Expanded( + child: Text( + futurePassMessage(concessionDetails), + style: const TextStyle(color: Colors.white),), + ) + ], + ), + ), ), ), Container( diff --git a/lib/new_ui/screens/railway_screen/widgets/stepperwidget.dart b/lib/new_ui/screens/railway_screen/widgets/stepperwidget.dart index 2878eaee..96420532 100644 --- a/lib/new_ui/screens/railway_screen/widgets/stepperwidget.dart +++ b/lib/new_ui/screens/railway_screen/widgets/stepperwidget.dart @@ -128,7 +128,7 @@ class StatusStepper extends StatelessWidget { if (concessionStatus == "unserviced") { return EasyStep( customStep: getStatusCircle(1), - title: "Under Review", + title: "Reviewing", ); } else if(concessionStatus == "serviced" || concessionStatus == "rejected") { diff --git a/pubspec.lock b/pubspec.lock index 7c4da636..d9535a35 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,26 +5,26 @@ packages: dependency: transitive description: name: _fe_analyzer_shared - sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7" + sha256: eb376e9acf6938204f90eb3b1f00b578640d3188b4c8a8ec054f9f479af8d051 url: "https://pub.dev" source: hosted - version: "67.0.0" + version: "64.0.0" _flutterfire_internals: dependency: transitive description: name: _flutterfire_internals - sha256: "37a42d06068e2fe3deddb2da079a8c4d105f241225ba27b7122b37e9865fd8f7" + sha256: "4eec93681221723a686ad580c2e7d960e1017cf1a4e0a263c2573c2c6b0bf5cd" url: "https://pub.dev" source: hosted - version: "1.3.35" + version: "1.3.25" analyzer: dependency: transitive description: name: analyzer - sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d" + sha256: "69f54f967773f6c26c7dcb13e93d7ccee8b17a641689da39e878d5cf13b06893" url: "https://pub.dev" source: hosted - version: "6.4.1" + version: "6.2.0" animations: dependency: "direct main" description: @@ -93,10 +93,10 @@ packages: dependency: transitive description: name: build_daemon - sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9" + sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" url: "https://pub.dev" source: hosted - version: "4.0.2" + version: "4.0.1" build_resolvers: dependency: transitive description: @@ -109,18 +109,18 @@ packages: dependency: "direct dev" description: name: build_runner - sha256: "644dc98a0f179b872f612d3eb627924b578897c629788e858157fa5e704ca0c7" + sha256: "3ac61a79bfb6f6cc11f693591063a7f19a7af628dc52f141743edac5c16e8c22" url: "https://pub.dev" source: hosted - version: "2.4.11" + version: "2.4.9" build_runner_core: dependency: transitive description: name: build_runner_core - sha256: e3c79f69a64bdfcd8a776a3c28db4eb6e3fb5356d013ae5eb2e52007706d5dbe + sha256: "4ae8ffe5ac758da294ecf1802f2aff01558d8b1b00616aa7538ea9a8a5d50799" url: "https://pub.dev" source: hosted - version: "7.3.1" + version: "7.3.0" built_collection: dependency: transitive description: @@ -205,26 +205,26 @@ packages: dependency: "direct main" description: name: cloud_firestore - sha256: a0f161b92610e078b4962d7e6ebeb66dc9cce0ada3514aeee442f68165d78185 + sha256: "31cfa4d65d6e9ea837234fffe121304034c30c9214c06207b4a35867e3757900" url: "https://pub.dev" source: hosted - version: "4.17.5" + version: "4.15.8" cloud_firestore_platform_interface: dependency: transitive description: name: cloud_firestore_platform_interface - sha256: "6a55b319f8d33c307396b9104512e8130a61904528ab7bd8b5402678fca54b81" + sha256: a0097a26569b015faf8142e159e855241609ea9a1738b5fd1c40bfe8411b41a0 url: "https://pub.dev" source: hosted - version: "6.2.5" + version: "6.1.9" cloud_firestore_web: dependency: transitive description: name: cloud_firestore_web - sha256: "89dfa1304d3da48b3039abbb2865e3d30896ef858e569a16804a99f4362283a9" + sha256: ed680ece29a5750985119c09cdc276b460c3a2fa80e8c12f9b7241f6b4a7ca16 url: "https://pub.dev" source: hosted - version: "3.12.5" + version: "3.10.8" code_builder: dependency: transitive description: @@ -253,10 +253,10 @@ packages: dependency: transitive description: name: cross_file - sha256: "55d7b444feb71301ef6b8838dbc1ae02e63dd48c8773f3810ff53bb1e2945b32" + sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e url: "https://pub.dev" source: hosted - version: "0.3.4+1" + version: "0.3.3+8" crypto: dependency: transitive description: @@ -349,10 +349,10 @@ packages: dependency: transitive description: name: ffi - sha256: "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21" + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" url: "https://pub.dev" source: hosted - version: "2.1.2" + version: "2.1.0" file: dependency: transitive description: @@ -405,34 +405,34 @@ packages: dependency: "direct main" description: name: firebase_auth - sha256: cfc2d970829202eca09e2896f0a5aa7c87302817ecc0bdfa954f026046bf10ba + sha256: "17b841e1b000c3441b8ffceca88f468e078d0443db9643e77541bdfb7a3fd16b" url: "https://pub.dev" source: hosted - version: "4.20.0" + version: "4.17.8" firebase_auth_platform_interface: dependency: transitive description: name: firebase_auth_platform_interface - sha256: a0270e1db3b2098a14cb2a2342b3cd2e7e458e0c391b1f64f6f78b14296ec093 + sha256: f294ceef40409a36c819a14280ca864fe487b44033e5276443377c66cb448310 url: "https://pub.dev" source: hosted - version: "7.3.0" + version: "7.1.8" firebase_auth_web: dependency: transitive description: name: firebase_auth_web - sha256: "64e067e763c6378b7e774e872f0f59f6812885e43020e25cde08f42e9459837b" + sha256: "1f231da900fe7ff9f2974f8adcbdb3363c410c24725978afa5dc33e1e7e62e06" url: "https://pub.dev" source: hosted - version: "5.12.0" + version: "5.9.8" firebase_core: dependency: "direct main" description: name: firebase_core - sha256: "26de145bb9688a90962faec6f838247377b0b0d32cc0abecd9a4e43525fc856c" + sha256: "53316975310c8af75a96e365f9fccb67d1c544ef0acdbf0d88bbe30eedd1c4f9" url: "https://pub.dev" source: hosted - version: "2.32.0" + version: "2.27.0" firebase_core_platform_interface: dependency: transitive description: @@ -445,58 +445,58 @@ packages: dependency: transitive description: name: firebase_core_web - sha256: "23509cb3cddfb3c910c143279ac3f07f06d3120f7d835e4a5d4b42558e978712" + sha256: c8e1d59385eee98de63c92f961d2a7062c5d9a65e7f45bdc7f1b0b205aab2492 url: "https://pub.dev" source: hosted - version: "2.17.3" + version: "2.11.5" firebase_messaging: dependency: "direct main" description: name: firebase_messaging - sha256: a1662cc95d9750a324ad9df349b873360af6f11414902021f130c68ec02267c4 + sha256: e41586e0fd04fe9a40424f8b0053d0832e6d04f49e020cdaf9919209a28497e9 url: "https://pub.dev" source: hosted - version: "14.9.4" + version: "14.7.19" firebase_messaging_platform_interface: dependency: transitive description: name: firebase_messaging_platform_interface - sha256: "87c4a922cb6f811cfb7a889bdbb3622702443c52a0271636cbc90d813ceac147" + sha256: f7a9d74ff7fc588a924f6b2eaeaa148b0db521b13a9db55f6ad45864fa98c06e url: "https://pub.dev" source: hosted - version: "4.5.37" + version: "4.5.27" firebase_messaging_web: dependency: transitive description: name: firebase_messaging_web - sha256: "0d34dca01a7b103ed7f20138bffbb28eb0e61a677bf9e78a028a932e2c7322d5" + sha256: fc21e771166860c55b103701c5ac7cdb2eec28897b97c42e6e5703cbedf9e02e url: "https://pub.dev" source: hosted - version: "3.8.7" + version: "3.6.8" firebase_storage: dependency: "direct main" description: name: firebase_storage - sha256: "2ae478ceec9f458c1bcbf0ee3e0100e4e909708979e83f16d5d9fba35a5b42c1" + sha256: ce1b0efe8dc111058c5f079b2f2ce84906d030d0fd2eef70c42ca1253c67039a url: "https://pub.dev" source: hosted - version: "11.7.7" + version: "11.6.9" firebase_storage_platform_interface: dependency: transitive description: name: firebase_storage_platform_interface - sha256: "4e18662e6a66e2e0e181c06f94707de06d5097d70cfe2b5141bf64660c5b5da9" + sha256: "4a2b64d4dac096390a0b7f2e7b6d086d0546c4a1bf7ee3fc4b5ae4cc41005c46" url: "https://pub.dev" source: hosted - version: "5.1.22" + version: "5.1.12" firebase_storage_web: dependency: transitive description: name: firebase_storage_web - sha256: "3a44aacd38a372efb159f6fe36bb4a7d79823949383816457fd43d3d47602a53" + sha256: "4153814db8d59138e816d9f016736e4095c45675a2c18f2868d11ffd8cc6a4ca" url: "https://pub.dev" source: hosted - version: "3.9.7" + version: "3.7.3" fixnum: dependency: transitive description: @@ -522,10 +522,10 @@ packages: dependency: transitive description: name: flutter_cache_manager - sha256: "395d6b7831f21f3b989ebedbb785545932adb9afe2622c1ffacf7f4b53a7e544" + sha256: "8207f27539deb83732fdda03e259349046a39a4c767269285f449ade355d54ba" url: "https://pub.dev" source: hosted - version: "3.3.2" + version: "3.3.1" flutter_launcher_icons: dependency: "direct dev" description: @@ -554,10 +554,10 @@ packages: dependency: transitive description: name: flutter_plugin_android_lifecycle - sha256: c6b0b4c05c458e1c01ad9bcc14041dd7b1f6783d487be4386f793f47a8a4d03e + sha256: "8cf40eebf5dec866a6d1956ad7b4f7016e6c0cc69847ab946833b7d43743809f" url: "https://pub.dev" source: hosted - version: "2.0.20" + version: "2.0.19" flutter_riverpod: dependency: "direct main" description: @@ -588,10 +588,10 @@ packages: dependency: "direct main" description: name: get_it - sha256: d85128a5dae4ea777324730dc65edd9c9f43155c109d5cc0a69cab74139fbac1 + sha256: e6017ce7fdeaf218dc51a100344d8cb70134b80e28b760f8bb23c242437bafd7 url: "https://pub.dev" source: hosted - version: "7.7.0" + version: "7.6.7" glob: dependency: transitive description: @@ -620,10 +620,10 @@ packages: dependency: transitive description: name: http - sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" + sha256: a2bbf9d017fcced29139daa8ed2bba4ece450ab222871df93ca9eec6f80c34ba url: "https://pub.dev" source: hosted - version: "1.2.1" + version: "1.2.0" http_multi_server: dependency: transitive description: @@ -652,34 +652,34 @@ packages: dependency: "direct main" description: name: image_picker - sha256: "021834d9c0c3de46bf0fe40341fa07168407f694d9b2bb18d532dc1261867f7a" + sha256: "1f498d086203360cca099d20ffea2963f48c39ce91bdd8a3b6d4a045786b02c8" url: "https://pub.dev" source: hosted - version: "1.1.2" + version: "1.0.8" image_picker_android: dependency: transitive description: name: image_picker_android - sha256: ff39a10ab4f48f4ac70776d0494a97bf073cd2570892cd46bc8a5cac162c25db + sha256: "844c6da4e4f2829dffdab97816bca09d0e0977e8dcef7450864aba4e07967a58" url: "https://pub.dev" source: hosted - version: "0.8.12+4" + version: "0.8.9+6" image_picker_for_web: dependency: transitive description: name: image_picker_for_web - sha256: "5d6eb13048cd47b60dbf1a5495424dea226c5faf3950e20bf8120a58efb5b5f3" + sha256: e2423c53a68b579a7c37a1eda967b8ae536c3d98518e5db95ca1fe5719a730a3 url: "https://pub.dev" source: hosted - version: "3.0.4" + version: "3.0.2" image_picker_ios: dependency: transitive description: name: image_picker_ios - sha256: "6703696ad49f5c3c8356d576d7ace84d1faf459afb07accbb0fae780753ff447" + sha256: "917a5cadd67d052554cfb258595e54217de53fac5b52939426e26319a02e6297" url: "https://pub.dev" source: hosted - version: "0.8.12" + version: "0.8.9+2" image_picker_linux: dependency: transitive description: @@ -700,10 +700,10 @@ packages: dependency: transitive description: name: image_picker_platform_interface - sha256: "9ec26d410ff46f483c5519c29c02ef0e02e13a543f882b152d4bfd2f06802f80" + sha256: fa4e815e6fcada50e35718727d83ba1c92f1edf95c0b4436554cec301b56233b url: "https://pub.dev" source: hosted - version: "2.10.0" + version: "2.9.3" image_picker_windows: dependency: transitive description: @@ -732,10 +732,10 @@ packages: dependency: transitive description: name: js - sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 url: "https://pub.dev" source: hosted - version: "0.7.1" + version: "0.6.7" json_annotation: dependency: "direct main" description: @@ -752,30 +752,6 @@ packages: url: "https://pub.dev" source: hosted version: "6.8.0" - leak_tracker: - dependency: transitive - description: - name: leak_tracker - sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a" - url: "https://pub.dev" - source: hosted - version: "10.0.4" - leak_tracker_flutter_testing: - dependency: transitive - description: - name: leak_tracker_flutter_testing - sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8" - url: "https://pub.dev" - source: hosted - version: "3.0.3" - leak_tracker_testing: - dependency: transitive - description: - name: leak_tracker_testing - sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" - url: "https://pub.dev" - source: hosted - version: "3.0.1" linkify: dependency: transitive description: @@ -812,26 +788,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: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136" + sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e url: "https://pub.dev" source: hosted - version: "1.12.0" + version: "1.10.0" mime: dependency: transitive description: @@ -868,10 +844,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_provider: dependency: "direct main" description: @@ -884,10 +860,10 @@ packages: dependency: transitive description: name: path_provider_android - sha256: "30c5aa827a6ae95ce2853cdc5fe3971daaac00f6f081c419c013f7f57bff2f5e" + sha256: a248d8146ee5983446bf03ed5ea8f6533129a12b11f12057ad1b4a67a2b3b41d url: "https://pub.dev" source: hosted - version: "2.2.7" + version: "2.2.4" path_provider_foundation: dependency: transitive description: @@ -1036,10 +1012,10 @@ packages: dependency: transitive description: name: shared_preferences_android - sha256: "93d0ec9dd902d85f326068e6a899487d1f65ffcd5798721a95330b26c8131577" + sha256: "1ee8bf911094a1b592de7ab29add6f826a7331fb854273d55918693d5364a1f2" url: "https://pub.dev" source: hosted - version: "2.2.3" + version: "2.2.2" shared_preferences_foundation: dependency: transitive description: @@ -1068,10 +1044,10 @@ packages: dependency: transitive description: name: shared_preferences_web - sha256: "9aee1089b36bd2aafe06582b7d7817fd317ef05fc30e6ba14bff247d0933042a" + sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" url: "https://pub.dev" source: hosted - version: "2.3.0" + version: "2.2.2" shared_preferences_windows: dependency: transitive description: @@ -1092,10 +1068,10 @@ packages: dependency: transitive description: name: shelf_web_socket - sha256: "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611" + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" url: "https://pub.dev" source: hosted - version: "2.0.0" + version: "1.0.4" sky_engine: dependency: transitive description: flutter @@ -1145,18 +1121,18 @@ packages: dependency: transitive description: name: sqflite - sha256: a43e5a27235518c03ca238e7b4732cf35eabe863a369ceba6cbefa537a66f16d + sha256: a9016f495c927cb90557c909ff26a6d92d9bd54fc42ba92e19d4e79d61e798c6 url: "https://pub.dev" source: hosted - version: "2.3.3+1" + version: "2.3.2" sqflite_common: dependency: transitive description: name: sqflite_common - sha256: "3da423ce7baf868be70e2c0976c28a1bb2f73644268b7ffa7d2e08eab71f16a4" + sha256: "28d8c66baee4968519fb8bd6cdbedad982d6e53359091f0b74544a9f32ec72d5" url: "https://pub.dev" source: hosted - version: "2.5.4" + version: "2.5.3" stack_trace: dependency: transitive description: @@ -1217,10 +1193,10 @@ packages: dependency: transitive description: name: test_api - sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f" + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" url: "https://pub.dev" source: hosted - version: "0.7.0" + version: "0.6.1" textfield_search: dependency: "direct main" description: @@ -1265,10 +1241,10 @@ packages: dependency: transitive description: name: url_launcher_android - sha256: ceb2625f0c24ade6ef6778d1de0b2e44f2db71fded235eb52295247feba8c5cf + sha256: "17cd5e205ea615e2c6ea7a77323a11712dffa0720a8a90540db57a01347f9ad9" url: "https://pub.dev" source: hosted - version: "6.3.3" + version: "6.3.2" url_launcher_ios: dependency: transitive description: @@ -1305,10 +1281,10 @@ packages: dependency: transitive description: name: url_launcher_web - sha256: "8d9e750d8c9338601e709cd0885f95825086bd8b642547f26bda435aade95d8a" + sha256: fff0932192afeedf63cdd50ecbb1bc825d31aed259f02bb8dba0f3b729a5e88b url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.2.3" url_launcher_windows: dependency: transitive description: @@ -1333,14 +1309,6 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.4" - vm_service: - dependency: transitive - description: - name: vm_service - sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec" - url: "https://pub.dev" - source: hosted - version: "14.2.1" watcher: dependency: transitive description: @@ -1353,26 +1321,18 @@ packages: dependency: transitive description: name: web - sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 url: "https://pub.dev" source: hosted - version: "0.5.1" - web_socket: - dependency: transitive - description: - name: web_socket - sha256: "24301d8c293ce6fe327ffe6f59d8fd8834735f0ec36e4fd383ec7ff8a64aa078" - url: "https://pub.dev" - source: hosted - version: "0.1.5" + version: "0.3.0" web_socket_channel: dependency: transitive description: name: web_socket_channel - sha256: a2d56211ee4d35d9b344d9d4ce60f362e4f5d1aafb988302906bd732bc731276 + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b url: "https://pub.dev" source: hosted - version: "3.0.0" + version: "2.4.0" webview_flutter: dependency: "direct main" description: @@ -1385,10 +1345,10 @@ packages: dependency: "direct main" description: name: webview_flutter_android - sha256: f42447ca49523f11d8f70abea55ea211b3cafe172dd7a0e7ac007bb35dd356dc + sha256: "0d21cfc3bfdd2e30ab2ebeced66512b91134b39e72e97b43db2d47dda1c4e53a" url: "https://pub.dev" source: hosted - version: "3.16.4" + version: "3.16.3" webview_flutter_platform_interface: dependency: transitive description: @@ -1409,10 +1369,10 @@ packages: dependency: transitive description: name: win32 - sha256: a79dbe579cb51ecd6d30b17e0cae4e0ea15e2c0e66f69ad4198f22a6789e94f4 + sha256: "464f5674532865248444b4c3daca12bd9bf2d7c47f759ce2617986e7229494a8" url: "https://pub.dev" source: hosted - version: "5.5.1" + version: "5.2.0" xdg_directories: dependency: transitive description: @@ -1438,5 +1398,5 @@ packages: source: hosted version: "3.1.2" sdks: - dart: ">=3.4.0 <4.0.0" - flutter: ">=3.22.0" + dart: ">=3.2.3 <4.0.0" + flutter: ">=3.16.6"