creek

The AI Image Editor of 2030
commit f2fdfa1b34ded69320e81c20521382c253d3838e
parent bdd266f5a84762ed3d6d804e73604f530ea67046
Author: ajcoder13 <avnijhalani@gmail.com>
Date:   Sat, 29 Nov 2025 15:02:32 +0530

UI fixes

Diffstat:
Mlib/ui/pages/share_to_moodboard_page.dart | 253+++++++++++++++++++++++++++++++++++++++++++++++--------------------------------
Apubspec.lock | 746+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 898 insertions(+), 101 deletions(-)

diff --git a/lib/ui/pages/share_to_moodboard_page.dart b/lib/ui/pages/share_to_moodboard_page.dart @@ -29,7 +29,6 @@ class ProjectItemViewModel { class ProjectGroup { final ProjectModel project; - // Holds ViewModels so we have cover paths for events too final List<ProjectItemViewModel> events; final String? coverPath; bool isExpanded; @@ -78,7 +77,6 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { super.dispose(); } - /// Helper to fetch the latest image for a project to use as cover Future<String?> _getProjectCover(int projectId) async { try { final images = await _imageRepo.getImages(projectId); @@ -122,10 +120,7 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { // 3. Build Grouped Projects final List<ProjectGroup> groups = []; for (final p in allProjects) { - // Fetch Events final rawEvents = await _projectRepo.getEvents(p.id!); - - // Convert Events to ViewModels (to get their covers) final List<ProjectItemViewModel> eventVMs = []; for (final e in rawEvents) { final eCover = await _getProjectCover(e.id!); @@ -214,7 +209,11 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { } } - void _navigateToSavePage(int projectId, String projectName, {String? parentProjectName}) { + void _navigateToSavePage( + int projectId, + String projectName, { + String? parentProjectName, + }) { _projectService.openProject(projectId); ReceiveSharingIntent.instance.reset(); @@ -246,7 +245,13 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { ), title: const Text( "MoodBoards", - style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold), + style: TextStyle( + color: Color(0xFF27272A), + fontFamily: 'GeneralSans', + fontSize: 20, + fontWeight: FontWeight.w500, + height: 1.2, + ), ), actions: [ IconButton( @@ -261,40 +266,60 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { ? const Center(child: CircularProgressIndicator()) : Column( children: [ - // Search Bar + // --- Search Bar --- Padding( padding: const EdgeInsets.fromLTRB(16, 8, 16, 16), - child: TextField( - controller: _searchController, - onChanged: _filterProjects, - decoration: InputDecoration( - hintText: "Search", - prefixIcon: const Icon( - Icons.search, - color: Colors.grey, - ), - filled: true, - fillColor: Colors.grey[100], - border: OutlineInputBorder( - borderRadius: BorderRadius.circular(12), - borderSide: BorderSide.none, + child: SizedBox( + height: 42, + child: TextField( + controller: _searchController, + onChanged: _filterProjects, + style: const TextStyle( + fontFamily: "GeneralSans", + fontSize: 16, + fontWeight: FontWeight.w400, + color: Color(0xFF71717B), + height: 1.4, ), - contentPadding: const EdgeInsets.symmetric( - vertical: 14, + decoration: InputDecoration( + hintText: "Search", + hintStyle: const TextStyle( + fontFamily: "GeneralSans", + fontSize: 16, + fontWeight: FontWeight.w400, + color: Color(0xFF71717B), + ), + prefixIcon: const Icon( + Icons.search, + size: 20, + color: Color(0xFF9F9FA9), + ), + filled: true, + fillColor: const Color(0xFFE4E4E7), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + borderSide: BorderSide.none, + ), + contentPadding: const EdgeInsets.symmetric( + vertical: 12, + horizontal: 16, + ), + suffixIcon: + _searchQuery.isNotEmpty + ? IconButton( + icon: const Icon( + Icons.clear, + size: 20, + color: Color(0xFF9F9FA9), + ), + padding: EdgeInsets.zero, + onPressed: () { + _searchController.clear(); + _filterProjects(""); + }, + ) + : null, ), - suffixIcon: - _searchQuery.isNotEmpty - ? IconButton( - icon: const Icon( - Icons.clear, - color: Colors.grey, - ), - onPressed: () { - _searchController.clear(); - _filterProjects(""); - }, - ) - : null, ), ), ), @@ -309,21 +334,23 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { _recentViewModels.isNotEmpty) ...[ const Padding( padding: EdgeInsets.symmetric( - horizontal: 16, - vertical: 12, + horizontal: 20, + vertical: 8, ), child: Text( "Recent Projects/Events", style: TextStyle( - fontSize: 16, - color: Colors.grey, - fontWeight: FontWeight.w500, + fontFamily: 'GeneralSans', + fontSize: 14, + fontWeight: FontWeight.w400, + color: Color(0xFF27272A), + height: 1.43, ), ), ), Padding( padding: const EdgeInsets.symmetric( - horizontal: 16, + horizontal: 20, ), child: Column( children: @@ -338,22 +365,24 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { // --- ALL PROJECTS SECTION --- Padding( padding: const EdgeInsets.symmetric( - horizontal: 16, - vertical: 12, + horizontal: 20, + vertical: 8, ), child: Text( _searchQuery.isEmpty ? "All Projects/Events" : "Search Results", style: const TextStyle( - fontSize: 16, - color: Colors.grey, - fontWeight: FontWeight.w500, + fontFamily: 'GeneralSans', + fontSize: 14, + fontWeight: FontWeight.w400, + color: Color(0xFF27272A), + height: 1.43, ), ), ), Padding( - padding: const EdgeInsets.symmetric(horizontal: 16), + padding: const EdgeInsets.symmetric(horizontal: 20), child: ListView.builder( shrinkWrap: true, physics: const NeverScrollableScrollPhysics(), @@ -364,7 +393,7 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { ), ), ), - const SizedBox(height: 20), + const SizedBox(height: 40), ], ), ), @@ -378,33 +407,35 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { Widget _buildRecentItem(ProjectItemViewModel vm) { return Container( - margin: const EdgeInsets.only(bottom: 12), + margin: const EdgeInsets.only(bottom: 8), // Reduced spacing child: InkWell( - onTap: () => _navigateToSavePage(vm.id, vm.title, parentProjectName: vm.parentTitle), + onTap: + () => _navigateToSavePage( + vm.id, + vm.title, + parentProjectName: vm.parentTitle, + ), borderRadius: BorderRadius.circular(16), child: Container( - padding: const EdgeInsets.all(12), + // padding: 4px 0 4px 4px + padding: const EdgeInsets.fromLTRB(4, 4, 0, 4), decoration: BoxDecoration( - color: Colors.white, - borderRadius: BorderRadius.circular(16), - border: Border.all(color: Colors.grey.shade200), - boxShadow: [ - BoxShadow( - color: Colors.grey.withOpacity(0.1), - blurRadius: 8, - offset: const Offset(0, 2), - ), - ], + color: Colors.white, // #FAFAFA + borderRadius: BorderRadius.circular(12), + border: Border.all( + color: const Color(0xFFE4E4E7), + width: 1, + ), // #E4E4E7 ), child: Row( children: [ // Cover Image Container( - width: 60, - height: 60, + width: 56, + height: 56, decoration: BoxDecoration( - color: Colors.grey[100], - borderRadius: BorderRadius.circular(12), + color: const Color(0xFFFAFAFA), + borderRadius: BorderRadius.circular(8), image: vm.coverPath != null ? DecorationImage( @@ -415,10 +446,10 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { ), child: vm.coverPath == null - ? Icon(Icons.image, color: Colors.grey[400], size: 30) + ? Icon(Icons.image, color: Colors.grey[400], size: 28) : null, ), - const SizedBox(width: 16), + const SizedBox(width: 10), // 10px Gap // Text Content Expanded( child: Column( @@ -426,19 +457,29 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { mainAxisAlignment: MainAxisAlignment.center, children: [ if (vm.isEvent && vm.parentTitle != null) - Text( - vm.parentTitle!, - style: TextStyle(fontSize: 13, color: Colors.grey[600]), - maxLines: 1, - overflow: TextOverflow.ellipsis, + Padding( + padding: const EdgeInsets.only(bottom: 2), + child: Text( + vm.parentTitle!, + style: const TextStyle( + fontFamily: 'GeneralSans', + fontSize: 12, + color: Color(0xFF27272A), + fontWeight: FontWeight.w400, + ), + maxLines: 1, + overflow: TextOverflow.ellipsis, + ), ), Text( vm.title, style: const TextStyle( + fontFamily: 'GeneralSans', fontSize: 16, - fontWeight: FontWeight.bold, + fontWeight: FontWeight.w500, + color: Color(0xFF27272A), // Same black as event ), - maxLines: 2, + maxLines: 1, overflow: TextOverflow.ellipsis, ), ], @@ -451,33 +492,37 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { ); } - // UPDATED: Main tap saves to Project, Arrow toggles Events Widget _buildProjectGroup(ProjectGroup g) { final project = g.project; final hasEvents = g.events.isNotEmpty; return Container( - margin: const EdgeInsets.only(bottom: 12), // Separate cards + margin: const EdgeInsets.only(bottom: 8), clipBehavior: Clip.antiAlias, decoration: BoxDecoration( color: Colors.white, - borderRadius: BorderRadius.circular(16), - border: Border.all(color: Colors.grey.shade200), // FULL BORDER + borderRadius: BorderRadius.circular(12), // Match recent radius + border: Border.all( + color: const Color(0xFFE4E4E7), + ), // Match recent border ), child: Column( children: [ - // PARENT PROJECT TILE + // Parent Project ListTile( - // ACTION 1: Tap main area -> Save to Project - onTap: () => _navigateToSavePage(project.id!, project.title), - + onTap: + () => + hasEvents + ? setState(() => g.isExpanded = !g.isExpanded) + : _navigateToSavePage(project.id!, project.title), contentPadding: const EdgeInsets.symmetric( horizontal: 16, - vertical: 8, - ), + vertical: 4, + ), // Reduced vertical padding + visualDensity: VisualDensity.compact, // Reduce height leading: Container( - width: 50, - height: 50, + width: 48, + height: 48, decoration: BoxDecoration( color: Colors.grey[100], borderRadius: BorderRadius.circular(12), @@ -496,10 +541,13 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { ), title: Text( project.title, - style: const TextStyle(fontSize: 16, fontWeight: FontWeight.w600), + style: const TextStyle( + fontFamily: 'GeneralSans', + fontSize: 16, + fontWeight: FontWeight.w500, // Matched with Recent + color: Color(0xFF27272A), + ), ), - - // ACTION 2: Tap Dropdown -> Toggle List trailing: hasEvents ? IconButton( @@ -516,30 +564,30 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { : null, ), - // CHILDREN (EVENTS) with GREY BACKGROUND + // Children (Events) if (hasEvents) AnimatedCrossFade( firstChild: const SizedBox.shrink(), secondChild: Container( - width: double.infinity, // Stretch to full width - color: Colors.grey[50], // LIGHT GREY BACKGROUND + width: double.infinity, + color: const Color(0xFFF9FAFB), child: Column( children: g.events.map((e) { return ListTile( - onTap: () => _navigateToSavePage(e.id, e.title, - parentProjectName: g.project.title, - ), + onTap: () => _navigateToSavePage(e.id, e.title), contentPadding: const EdgeInsets.symmetric( - horizontal: 28, - vertical: 6, - ), + horizontal: 24, + vertical: 2, + ), // Reduced vertical padding + visualDensity: VisualDensity.compact, leading: Container( width: 40, height: 40, decoration: BoxDecoration( color: Colors.white, borderRadius: BorderRadius.circular(10), + border: Border.all(color: Colors.grey.shade200), image: e.coverPath != null ? DecorationImage( @@ -552,6 +600,7 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { e.coverPath == null ? const Icon( Icons.event, + size: 20, color: Colors.grey, ) : null, @@ -559,8 +608,10 @@ class _ShareToMoodboardPageState extends State<ShareToMoodboardPage> { title: Text( e.title, style: const TextStyle( + fontFamily: 'GeneralSans', fontSize: 15, - fontWeight: FontWeight.w600, + fontWeight: FontWeight.w500, // Matched + color: Color(0xFF27272A), ), ), ); diff --git a/pubspec.lock b/pubspec.lock @@ -0,0 +1,746 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + archive: + dependency: transitive + description: + name: archive + sha256: "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd" + url: "https://pub.dev" + source: hosted + version: "4.0.7" + args: + dependency: transitive + description: + name: args + sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04 + url: "https://pub.dev" + source: hosted + version: "2.7.0" + async: + dependency: transitive + description: + name: async + sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63 + url: "https://pub.dev" + source: hosted + version: "2.12.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + characters: + dependency: transitive + description: + name: characters + sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + clock: + dependency: transitive + description: + name: clock + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b + url: "https://pub.dev" + source: hosted + version: "1.1.2" + collection: + dependency: transitive + description: + name: collection + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" + url: "https://pub.dev" + source: hosted + version: "1.19.1" + cross_file: + dependency: transitive + description: + name: cross_file + sha256: "942a4791cd385a68ccb3b32c71c427aba508a1bb949b86dff2adbe4049f16239" + url: "https://pub.dev" + source: hosted + version: "0.3.5" + crypto: + dependency: transitive + description: + name: crypto + sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf + url: "https://pub.dev" + source: hosted + version: "3.0.7" + csslib: + dependency: transitive + description: + name: csslib + sha256: "09bad715f418841f976c77db72d5398dc1253c21fb9c0c7f0b0b985860b2d58e" + url: "https://pub.dev" + source: hosted + version: "1.0.2" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6 + url: "https://pub.dev" + source: hosted + version: "1.0.8" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44" + url: "https://pub.dev" + source: hosted + version: "1.3.3" + ffi: + dependency: transitive + description: + name: ffi + sha256: "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + file: + dependency: transitive + description: + name: file + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 + url: "https://pub.dev" + source: hosted + version: "7.0.1" + file_selector_linux: + dependency: transitive + description: + name: file_selector_linux + sha256: "54cbbd957e1156d29548c7d9b9ec0c0ebb6de0a90452198683a7d23aed617a33" + url: "https://pub.dev" + source: hosted + version: "0.9.3+2" + file_selector_macos: + dependency: transitive + description: + name: file_selector_macos + sha256: "19124ff4a3d8864fdc62072b6a2ef6c222d55a3404fe14893a3c02744907b60c" + url: "https://pub.dev" + source: hosted + version: "0.9.4+4" + file_selector_platform_interface: + dependency: transitive + description: + name: file_selector_platform_interface + sha256: "35e0bd61ebcdb91a3505813b055b09b79dfdc7d0aee9c09a7ba59ae4bb13dc85" + url: "https://pub.dev" + source: hosted + version: "2.7.0" + file_selector_windows: + dependency: transitive + description: + name: file_selector_windows + sha256: "320fcfb6f33caa90f0b58380489fc5ac05d99ee94b61aa96ec2bff0ba81d3c2b" + url: "https://pub.dev" + source: hosted + version: "0.9.3+4" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be + url: "https://pub.dev" + source: hosted + version: "1.1.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1" + url: "https://pub.dev" + source: hosted + version: "5.0.0" + flutter_plugin_android_lifecycle: + dependency: transitive + description: + name: flutter_plugin_android_lifecycle + sha256: c2fe1001710127dfa7da89977a08d591398370d099aacdaa6d44da7eb14b8476 + url: "https://pub.dev" + source: hosted + version: "2.0.31" + flutter_svg: + dependency: "direct main" + description: + name: flutter_svg + sha256: "87fbd7c534435b6c5d9d98b01e1fd527812b82e68ddd8bd35fc45ed0fa8f0a95" + url: "https://pub.dev" + source: hosted + version: "2.2.3" + 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" + google_mlkit_commons: + dependency: transitive + description: + name: google_mlkit_commons + sha256: "8f40fbac10685cad4715d11e6a0d86837d9ad7168684dfcad29610282a88e67a" + url: "https://pub.dev" + source: hosted + version: "0.11.0" + google_mlkit_text_recognition: + dependency: "direct main" + description: + name: google_mlkit_text_recognition + sha256: "96173ad4dd7fd06c660e22ac3f9e9f1798a517fe7e48bee68eeec83853224224" + url: "https://pub.dev" + source: hosted + version: "0.15.0" + html: + dependency: "direct main" + description: + name: html + sha256: "6d1264f2dffa1b1101c25a91dff0dc2daee4c18e87cd8538729773c073dbf602" + url: "https://pub.dev" + source: hosted + version: "0.15.6" + http: + dependency: "direct main" + description: + name: http + sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412" + url: "https://pub.dev" + source: hosted + version: "1.6.0" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" + url: "https://pub.dev" + source: hosted + version: "4.1.2" + image: + dependency: "direct main" + description: + name: image + sha256: "4e973fcf4caae1a4be2fa0a13157aa38a8f9cb049db6529aa00b4d71abc4d928" + url: "https://pub.dev" + source: hosted + version: "4.5.4" + image_picker: + dependency: "direct main" + description: + name: image_picker + sha256: "784210112be18ea55f69d7076e2c656a4e24949fa9e76429fe53af0c0f4fa320" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + image_picker_android: + dependency: transitive + description: + name: image_picker_android + sha256: "28f3987ca0ec702d346eae1d90eda59603a2101b52f1e234ded62cff1d5cfa6e" + url: "https://pub.dev" + source: hosted + version: "0.8.13+1" + image_picker_for_web: + dependency: transitive + description: + name: image_picker_for_web + sha256: "40c2a6a0da15556dc0f8e38a3246064a971a9f512386c3339b89f76db87269b6" + url: "https://pub.dev" + source: hosted + version: "3.1.0" + image_picker_ios: + dependency: transitive + description: + name: image_picker_ios + sha256: eb06fe30bab4c4497bad449b66448f50edcc695f1c59408e78aa3a8059eb8f0e + url: "https://pub.dev" + source: hosted + version: "0.8.13" + image_picker_linux: + dependency: transitive + description: + name: image_picker_linux + sha256: "1f81c5f2046b9ab724f85523e4af65be1d47b038160a8c8deed909762c308ed4" + url: "https://pub.dev" + source: hosted + version: "0.2.2" + image_picker_macos: + dependency: transitive + description: + name: image_picker_macos + sha256: d58cd9d67793d52beefd6585b12050af0a7663c0c2a6ece0fb110a35d6955e04 + url: "https://pub.dev" + source: hosted + version: "0.2.2" + image_picker_platform_interface: + dependency: transitive + description: + name: image_picker_platform_interface + sha256: "567e056716333a1647c64bb6bd873cff7622233a5c3f694be28a583d4715690c" + url: "https://pub.dev" + source: hosted + version: "2.11.1" + image_picker_windows: + dependency: transitive + description: + name: image_picker_windows + sha256: d248c86554a72b5495a31c56f060cf73a41c7ff541689327b1a7dbccc33adfae + url: "https://pub.dev" + source: hosted + version: "0.2.2" + intl: + dependency: "direct main" + description: + name: intl + sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5" + url: "https://pub.dev" + source: hosted + version: "0.20.2" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de" + url: "https://pub.dev" + source: hosted + version: "11.0.2" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1" + url: "https://pub.dev" + source: hosted + version: "3.0.10" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + lints: + dependency: transitive + description: + name: lints + sha256: c35bb79562d980e9a453fc715854e1ed39e24e7d0297a880ef54e17f9874a9d7 + url: "https://pub.dev" + source: hosted + version: "5.1.1" + matcher: + dependency: transitive + description: + name: matcher + sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 + url: "https://pub.dev" + source: hosted + version: "0.12.17" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec + url: "https://pub.dev" + source: hosted + version: "0.11.1" + meta: + dependency: transitive + description: + name: meta + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" + url: "https://pub.dev" + source: hosted + version: "1.17.0" + mime: + dependency: transitive + description: + name: mime + sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + onnxruntime: + dependency: "direct main" + description: + name: onnxruntime + sha256: e77ec05acafc135cc5fe7bcdf11b101b39f06513c9d5e9fa02cb1929f6bac72a + url: "https://pub.dev" + source: hosted + version: "1.4.1" + path: + dependency: "direct main" + description: + name: path + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + path_provider: + dependency: "direct main" + description: + name: path_provider + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" + url: "https://pub.dev" + source: hosted + version: "2.1.5" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: "3b4c1fc3aa55ddc9cd4aa6759984330d5c8e66aa7702a6223c61540dc6380c37" + url: "https://pub.dev" + source: hosted + version: "2.2.19" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: "07c8f0b1913bcde1ff0d26e57ace2f3012ccbf2b204e070290dad3bb22797646" + url: "https://pub.dev" + source: hosted + version: "6.1.0" + platform: + dependency: transitive + description: + name: platform + sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" + url: "https://pub.dev" + source: hosted + version: "3.1.6" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + posix: + dependency: transitive + description: + name: posix + sha256: "6323a5b0fa688b6a010df4905a56b00181479e6d10534cecfecede2aa55add61" + url: "https://pub.dev" + source: hosted + version: "6.0.3" + provider: + dependency: "direct main" + description: + name: provider + sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272" + url: "https://pub.dev" + source: hosted + version: "6.1.5+1" + receive_sharing_intent: + dependency: "direct main" + description: + name: receive_sharing_intent + sha256: ec76056e4d258ad708e76d85591d933678625318e411564dcb9059048ca3a593 + url: "https://pub.dev" + source: hosted + version: "1.8.1" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5" + url: "https://pub.dev" + source: hosted + version: "2.5.3" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: bd14436108211b0d4ee5038689a56d4ae3620fd72fd6036e113bf1345bc74d9e + url: "https://pub.dev" + source: hosted + version: "2.4.13" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03" + url: "https://pub.dev" + source: hosted + version: "2.5.4" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019 + url: "https://pub.dev" + source: hosted + version: "2.4.3" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + source_span: + dependency: transitive + description: + name: source_span + sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c" + url: "https://pub.dev" + source: hosted + version: "1.10.1" + sqflite: + dependency: "direct main" + description: + name: sqflite + sha256: e2297b1da52f127bc7a3da11439985d9b536f75070f3325e62ada69a5c585d03 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + sqflite_android: + dependency: transitive + description: + name: sqflite_android + sha256: "2b3070c5fa881839f8b402ee4a39c1b4d561704d4ebbbcfb808a119bc2a1701b" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + sha256: "84731e8bfd8303a3389903e01fb2141b6e59b5973cacbb0929021df08dddbe8b" + url: "https://pub.dev" + source: hosted + version: "2.5.5" + sqflite_darwin: + dependency: transitive + description: + name: sqflite_darwin + sha256: "279832e5cde3fe99e8571879498c9211f3ca6391b0d818df4e17d9fff5c6ccb3" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + sqflite_platform_interface: + dependency: transitive + description: + name: sqflite_platform_interface + sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920" + url: "https://pub.dev" + source: hosted + version: "2.4.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" + url: "https://pub.dev" + source: hosted + version: "1.12.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43" + url: "https://pub.dev" + source: hosted + version: "1.4.1" + synchronized: + dependency: transitive + description: + name: synchronized + sha256: "0669c70faae6270521ee4f05bffd2919892d42d1276e6c495be80174b6bc0ef6" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e" + url: "https://pub.dev" + source: hosted + version: "1.2.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55 + url: "https://pub.dev" + source: hosted + version: "0.7.7" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + uuid: + dependency: "direct main" + description: + name: uuid + sha256: a11b666489b1954e01d992f3d601b1804a33937b5a8fe677bd26b8a9f96f96e8 + url: "https://pub.dev" + source: hosted + version: "4.5.2" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: a4f059dc26fc8295b5921376600a194c4ec7d55e72f2fe4c7d2831e103d461e6 + url: "https://pub.dev" + source: hosted + version: "1.1.19" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146" + url: "https://pub.dev" + source: hosted + version: "1.1.13" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: d354a7ec6931e6047785f4db12a1f61ec3d43b207fc0790f863818543f8ff0dc + url: "https://pub.dev" + source: hosted + version: "1.1.19" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b + url: "https://pub.dev" + source: hosted + version: "2.2.0" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: "0968250880a6c5fe7edc067ed0a13d4bae1577fe2771dcf3010d52c4a9d3ca14" + url: "https://pub.dev" + source: hosted + version: "14.3.1" + web: + dependency: transitive + description: + name: web + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" +sdks: + dart: ">=3.8.0 <4.0.0" + flutter: ">=3.32.0"