From 795de496cd5f833ce99237caf001d3bf29016842 Mon Sep 17 00:00:00 2001 From: 98spag Date: Thu, 1 Jun 2023 13:59:12 +0200 Subject: [PATCH 01/32] feat: show only food list from today on today page --- .../meal_page_text/days_component.dart | 6 +++--- lib/android/config/statistics.dart | 17 +++++++++++------ lib/android/pages/nav_pages/main_page.dart | 2 +- lib/android/pages/nav_pages/today_page.dart | 14 ++++++-------- 4 files changed, 21 insertions(+), 18 deletions(-) diff --git a/lib/android/components/meal_page_text/days_component.dart b/lib/android/components/meal_page_text/days_component.dart index 00451e3..b7ade1e 100644 --- a/lib/android/components/meal_page_text/days_component.dart +++ b/lib/android/components/meal_page_text/days_component.dart @@ -23,11 +23,11 @@ class _DaysMealPageState extends State { setState(() { activatedIndex = index; if(activatedIndex == 0){ - StatisticsService.instance.updateReducedBoxByTimespan(TimeSpan.day); + StatisticsService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.day); }else if(activatedIndex == 1){ - StatisticsService.instance.updateReducedBoxByTimespan(TimeSpan.week); + StatisticsService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.week); }else if(activatedIndex == 2){ - StatisticsService.instance.updateReducedBoxByTimespan(TimeSpan.month); + StatisticsService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.month); } }); } diff --git a/lib/android/config/statistics.dart b/lib/android/config/statistics.dart index 5790811..25f1831 100644 --- a/lib/android/config/statistics.dart +++ b/lib/android/config/statistics.dart @@ -35,7 +35,7 @@ class StatisticsService { putIfKeyNotExists([reducedBox,progressBox], 'FRÜHSTÜCK', []); putIfKeyNotExists([reducedBox,progressBox], 'MITTAGESSEN', []); putIfKeyNotExists([reducedBox,progressBox], 'ABENDESSEN', []); - updateReducedBoxByTimespan(TimeSpan.day); + updateStatisticsTodayBoxByTimespan(TimeSpan.day); } void putIfKeyNotExists(List boxes, String key, dynamic value) { @@ -46,10 +46,10 @@ class StatisticsService { } } - updateReducedBoxByTimespan(TimeSpan timeSpan){ - clearReducedBoxBeforeUpdate(); + updateStatisticsTodayBoxByTimespan(TimeSpan timespan){ + clearBoxByBox(Hive.box(todayStatisticsBoxName)); int timestamp = getTimestampFromNow(); - switch(timeSpan){ + switch(timespan){ case TimeSpan.day: getNewFoodAndUpdateBoxByTimestampAndBox(timestamp, Hive.box(todayStatisticsBoxName)); break; @@ -99,8 +99,7 @@ class StatisticsService { return timestampsForWeekdays; } - clearReducedBoxBeforeUpdate(){ - Box box = Hive.box(todayStatisticsBoxName); + clearBoxByBox(Box box){ for(int i = 0; i < box.keys.length;i++){ box.put(box.keys.elementAt(i), []); } @@ -419,6 +418,12 @@ class StatisticsService { return now.millisecondsSinceEpoch.toInt() ~/ 1000; } + List getMealsOfTodayByMealtype(String mealtype){ + int timestamp = getTimestampFromNow(); + return getFoodMapForGivenTimestampFromMainBox(timestamp)[mealtype] ?? []; + + } + showItems(){ print("Statistics.dart - showItems() - ITEMS"); //Hive.box(boxName).clear(); diff --git a/lib/android/pages/nav_pages/main_page.dart b/lib/android/pages/nav_pages/main_page.dart index 2543c92..6945c05 100644 --- a/lib/android/pages/nav_pages/main_page.dart +++ b/lib/android/pages/nav_pages/main_page.dart @@ -25,7 +25,7 @@ class MainPageState extends State { setState(() { currentIndex = index; if(currentIndex == 1){ - StatisticsService.instance.updateReducedBoxByTimespan(TimeSpan.day); + StatisticsService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.day); }else if(currentIndex == 2){ StatisticsService.instance.updateProgressBoxValues(); } diff --git a/lib/android/pages/nav_pages/today_page.dart b/lib/android/pages/nav_pages/today_page.dart index 34e39e0..4f894e6 100644 --- a/lib/android/pages/nav_pages/today_page.dart +++ b/lib/android/pages/nav_pages/today_page.dart @@ -1,4 +1,5 @@ import 'package:ernaehrung/android/components/card/card_component.dart'; +import 'package:ernaehrung/android/config/statistics.dart'; import 'package:flutter/material.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:hive_flutter/adapters.dart'; @@ -26,14 +27,11 @@ class _TodayPageState extends State { shrinkWrap: true, itemCount: box.keys.length, itemBuilder: (context, i) { - if (box.keyAt(i).toString() == "DATE") { - return const SizedBox.shrink(); - } else { - return CardComponent( - box.keyAt(i).toString(), - box.getAt(i) - ); - } + String mealTypeAsString = box.keyAt(i).toString(); + return CardComponent( + mealTypeAsString, + StatisticsService.instance.getMealsOfTodayByMealtype(mealTypeAsString) + ); }); }))); } -- 2.51.0 From a56fed5450e1f5b4bfade05423d6d7a90a4a00bc Mon Sep 17 00:00:00 2001 From: 98spag Date: Thu, 1 Jun 2023 14:58:12 +0200 Subject: [PATCH 02/32] feat: show only food list from today on today page - test with mock data --- lib/android/config/mock_data_helper.dart | 63 ++++++++++++++++++++++++ lib/main.dart | 5 +- 2 files changed, 64 insertions(+), 4 deletions(-) create mode 100644 lib/android/config/mock_data_helper.dart diff --git a/lib/android/config/mock_data_helper.dart b/lib/android/config/mock_data_helper.dart new file mode 100644 index 0000000..c1ddd45 --- /dev/null +++ b/lib/android/config/mock_data_helper.dart @@ -0,0 +1,63 @@ + +import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; +import 'package:ernaehrung/android/config/statistics.dart'; +import 'package:hive/hive.dart'; +import '../models/food.dart'; + +// TODO REMOVE IN PROD + +mockDataForWholeWeek(){ + StatisticsService statisticsService = StatisticsService.instance; + Box box = Hive.box('STATISTICS_MAIN'); + int timestamp = statisticsService.getTimestampFromNow(); + List currentWeek = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.week, timestamp); + for(int i = 0;i < currentWeek.length;i++){ + print(mockFood(i)); + box.put(currentWeek[i], mockFood(i)); + } +} + + +mockFood(int i) { + List>> foods = [ + { + 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + }, + { + 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + }, + { + 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + }, + { + 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + }, + { + 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + }, + { + 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + }, + { + 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], + }, + ]; + return foods[i]; +} + + + diff --git a/lib/main.dart b/lib/main.dart index 2ec1e7f..0054c1c 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -12,16 +12,12 @@ import 'android/config/setup_todaybox_config.dart'; void main() async { await dotenv.load(fileName: ".env"); await Hive.initFlutter(); - if (!Hive.isAdapterRegistered(0)) { Hive.registerAdapter(FoodAdapter()); } - if (!Hive.isAdapterRegistered(1)) { Hive.registerAdapter(UserAdapter()); } - - await Hive.openBox(dotenv.env['STATISTICS_TODAY_BOX'] ?? 'STATISTICS_TODAY_BOX'); await Hive.openBox( dotenv.env['STATISTICS_PROGRESS_BOX'] ?? 'STATISTICS_PROGRESS_BOX'); await Hive.openBox(dotenv.env['STATISTICS_MAIN_BOX'] ?? 'STATISTICS_MAIN_BOX'); @@ -29,6 +25,7 @@ void main() async { await Hive.openBox('USER_BOX'); //Hive.deleteFromDisk(); setupTodayBox(); + //mockDataForWholeWeek(); if (defaultTargetPlatform == TargetPlatform.android) { runApp(const AndroidApp()); -- 2.51.0 From 851fc0e44d9e54e4483cc7d55528d596fdbfa471 Mon Sep 17 00:00:00 2001 From: 98spag Date: Thu, 1 Jun 2023 14:58:33 +0200 Subject: [PATCH 03/32] feat: show only food list from today on today page - test with mock data --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 0054c1c..f8bc977 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,4 +1,4 @@ -import 'package:ernaehrung/android/models/food.dart'; +gitimport 'package:ernaehrung/android/models/food.dart'; import 'package:ernaehrung/android/models/user.dart'; import 'package:ernaehrung/web/web_app.dart'; import 'package:flutter/material.dart'; -- 2.51.0 From be6609837c33d1cbc709b6dc3d4eca95cdb33823 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Fri, 2 Jun 2023 00:38:19 +0200 Subject: [PATCH 04/32] woche, monat kalorien, fett, kohlenhydrate, etc, bug fixes --- .dart_tool/package_config.json | 220 ++++----- .dart_tool/package_config_subset | 428 +++++++++--------- .flutter-plugins-dependencies | 2 +- lib/android/andoird_app.dart | 1 - .../components/card/card_component.dart | 14 +- .../card/card_data_food_component.dart | 49 +- .../card/card_food_item_component.dart | 44 +- .../circular/circular_component.dart | 58 ++- ...ent.dart => meal_page_food_component.dart} | 0 .../statistics_today_component.dart | 68 ++- ...atistics_circular_indicator_component.dart | 17 +- lib/android/config/statistics.dart | 63 ++- .../pages/nav_pages/meal_plan_page.dart | 2 +- .../pages/nav_pages/progress_page.dart | 4 +- lib/android/pages/welcome.dart | 18 +- lib/web/component/section_component.dart | 18 +- pubspec.lock | 48 +- pubspec.yaml | 4 +- 18 files changed, 535 insertions(+), 523 deletions(-) rename lib/android/components/{MealPageFoodComponent.dart => meal_page_food_component.dart} (100%) diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index 039d79c..efef7a0 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -3,601 +3,601 @@ "packages": [ { "name": "_fe_analyzer_shared", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "analyzer", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "animate_gradient", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "args", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "assorted_layout_widgets", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "async", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "basic_utils", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "boolean_selector", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build_config", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_daemon", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_resolvers", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "build_runner", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_runner_core", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "built_collection", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "built_value", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "card_swiper", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "characters", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "checked_yaml", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "clock", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "code_builder", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "collection", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0", "packageUri": "lib/", - "languageVersion": "2.18" + "languageVersion": "2.12" }, { "name": "convert", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "crypto", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "cupertino_icons", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "dart_style", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "empty_widget", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "equatable", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fake_async", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "ffi", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "file", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fixnum", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "fl_chart", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter", "packageUri": "lib/", - "languageVersion": "3.0" + "languageVersion": "2.17" }, { "name": "flutter_dotenv", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_form_builder", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-9.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0", "packageUri": "lib/", - "languageVersion": "3.0" + "languageVersion": "2.19" }, { "name": "flutter_lints", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_localizations", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations", "packageUri": "lib/", - "languageVersion": "3.0" + "languageVersion": "2.17" }, { "name": "flutter_test", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test", "packageUri": "lib/", - "languageVersion": "3.0" + "languageVersion": "2.17" }, { "name": "form_builder_validators", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-9.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1", "packageUri": "lib/", - "languageVersion": "3.0" + "languageVersion": "2.19" }, { "name": "frontend_server_client", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "glob", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "graphs", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_flutter", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_generator", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "http_multi_server", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http_parser", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intl", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "io", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "js", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5", "packageUri": "lib/", - "languageVersion": "2.19" + "languageVersion": "2.16" }, { "name": "json_annotation", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "lints", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "logging", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "matcher", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.15", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "material_color_utilities", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "matrix4_transform", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "meta", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "mime", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "package_config", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_android", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_foundation", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "path_provider_linux", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_platform_interface", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider_windows", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "percent_indicator", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "platform", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "plugin_platform_interface", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pointycastle", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pool", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "process", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pub_semver", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pubspec_parse", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "responsive_framework", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "searchable_listview", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "shelf", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "shelf_web_socket", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "sizer", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "sky_engine", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine", "packageUri": "lib/", - "languageVersion": "3.0" + "languageVersion": "2.12" }, { "name": "source_gen", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "source_helper", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "source_span", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stack_trace", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "stream_channel", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stream_transform", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "string_scanner", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "term_glyph", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "test_api", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.5.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "timing", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "typed_data", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "universal_io", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "vector_math", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "watcher", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "web_socket_channel", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "win32", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "xdg_directories", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "yaml", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2", "packageUri": "lib/", "languageVersion": "2.19" }, @@ -608,7 +608,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-01T11:12:57.602326Z", + "generated": "2023-06-01T16:44:17.796384Z", "generator": "pub", - "generatorVersion": "3.0.2" + "generatorVersion": "2.19.6" } diff --git a/.dart_tool/package_config_subset b/.dart_tool/package_config_subset index ec9aa2f..fe09e4c 100644 --- a/.dart_tool/package_config_subset +++ b/.dart_tool/package_config_subset @@ -1,405 +1,405 @@ _fe_analyzer_shared 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ analyzer 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/lib/ animate_gradient 2.16 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ args 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/lib/ assorted_layout_widgets 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ async 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/lib/ basic_utils 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/lib/ boolean_selector 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ build 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/lib/ build_config 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/lib/ build_daemon 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/lib/ build_resolvers 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ build_runner 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/lib/ build_runner_core 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ built_collection 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/ built_value 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0/lib/ card_swiper 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/lib/ characters 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/lib/ checked_yaml 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ clock 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/lib/ code_builder 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0/lib/ collection -2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.1/lib/ +2.12 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/lib/ convert 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/lib/ crypto 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/lib/ cupertino_icons 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ dart_style 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/lib/ empty_widget 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/lib/ equatable 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/lib/ fake_async 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/lib/ ffi 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1/lib/ file 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/lib/ fixnum 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib/ fl_chart 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/lib/ flutter_dotenv 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ flutter_form_builder -3.0 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-9.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-9.0.0/lib/ +2.19 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ flutter_lints 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ form_builder_validators -3.0 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-9.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-9.0.0/lib/ +2.19 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ frontend_server_client 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ glob 2.15 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1/lib/ graphs 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0/lib/ hive 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/lib/ hive_flutter 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ hive_generator 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/lib/ http 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/lib/ http_multi_server 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ http_parser 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib/ intl 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/lib/ io 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/lib/ js -2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7/lib/ +2.16 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/lib/ json_annotation 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/lib/ lints 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/lib/ logging 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/lib/ matcher 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.15/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.15/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/lib/ material_color_utilities 2.13 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ matrix4_transform 2.13 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ meta 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/lib/ mime 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/lib/ package_config 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/lib/ path 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/lib/ path_provider 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14/lib/ path_provider_android 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ path_provider_foundation 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ path_provider_linux 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ path_provider_platform_interface 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ path_provider_windows 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ percent_indicator 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ platform 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/lib/ plugin_platform_interface 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ pointycastle 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/lib/ pool 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/lib/ process 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/lib/ pub_semver 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib/ pubspec_parse 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ responsive_framework 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ searchable_listview 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ shelf 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/lib/ shelf_web_socket 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ sizer 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/lib/ source_gen 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0/lib/ source_helper 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/lib/ source_span 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/lib/ stack_trace 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/lib/ stream_channel 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/lib/ stream_transform 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/lib/ string_scanner 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/lib/ term_glyph 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/lib/ test_api 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.5.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.5.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/lib/ timing 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/lib/ typed_data 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1/lib/ universal_io 2.15 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/lib/ vector_math 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/ watcher 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/lib/ web_socket_channel 2.15 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ win32 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/lib/ xdg_directories 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ yaml 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/lib/ -sky_engine -3.0 -file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine/ -file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine/lib/ -flutter -3.0 -file:///C:/Users/FUCHSLAU/flutter/packages/flutter/ -file:///C:/Users/FUCHSLAU/flutter/packages/flutter/lib/ -flutter_localizations -3.0 -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations/ -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations/lib/ -flutter_test -3.0 -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test/ -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/lib/ ernaehrung 2.19 -file:///C:/Users/FUCHSLAU/repos/Uni/Flutter-Ernaehrungsapp/ -file:///C:/Users/FUCHSLAU/repos/Uni/Flutter-Ernaehrungsapp/lib/ +file:///Users/bogdan/IdeaProjects/ernaehrung/ +file:///Users/bogdan/IdeaProjects/ernaehrung/lib/ +sky_engine +2.12 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine/lib/ +flutter +2.17 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter/lib/ +flutter_localizations +2.17 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations/lib/ +flutter_test +2.17 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test/lib/ 2 diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 2b7f1ca..1311292 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"android":[{"name":"path_provider_android","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.0.27\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.1.10\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.1.6\\\\","native_build":false,"dependencies":[]}],"web":[]},"dependencyGraph":[{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-01 13:16:00.226015","version":"3.10.2"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[]},"dependencyGraph":[{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-01 21:59:58.395996","version":"3.7.9"} \ No newline at end of file diff --git a/lib/android/andoird_app.dart b/lib/android/andoird_app.dart index 7663da4..b5062be 100644 --- a/lib/android/andoird_app.dart +++ b/lib/android/andoird_app.dart @@ -11,7 +11,6 @@ class AndroidApp extends StatelessWidget { @override Widget build(BuildContext context) { final box = Hive.box('USER_BOX'); - print("got it ${box.get("USER")}"); return MaterialApp( title: 'Flutter Demo', theme: ThemeData( diff --git a/lib/android/components/card/card_component.dart b/lib/android/components/card/card_component.dart index 92cd565..0f5c3a3 100644 --- a/lib/android/components/card/card_component.dart +++ b/lib/android/components/card/card_component.dart @@ -3,6 +3,7 @@ import 'package:ernaehrung/android/components/card/card_data_food_component.dart import 'package:ernaehrung/android/components/card/card_title_component.dart'; import 'package:ernaehrung/android/config/cast_helper.dart'; import 'package:flutter/material.dart'; +import '../../models/food.dart'; import '../../pages/nav_pages/search_food.dart'; class CardComponent extends StatelessWidget { @@ -31,6 +32,15 @@ class CardComponent extends StatelessWidget { ); } + int countCalories(List foods){ + int summary = 0; + for(int i=0; i("USER_BOX").get("USER")?.kalorien; + final int totalCalories; + const CircularLoadingComponent(this.totalCalories, {Key? key}) : super(key: key); @override - Widget build(BuildContext context) {; + Widget build(BuildContext context) { + return ValueListenableBuilder( + valueListenable: StatisticsService.instance.eatenCalories, + builder: (context, value, child) { + double progress = + double.parse((value / totalCalories).toStringAsFixed(1)); + progress = progress > 1.0 ? 1.0 : progress; - return ValueListenableBuilder( - valueListenable: StatisticsService.instance.eatenCalories, - builder: (context, value, child) { - double progress = double.parse((value / targetCaolries!).toStringAsFixed(1)); - progress = progress > 1.0 ? 1.0 : progress; - - return Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - CircularPercentIndicator( - animation: true, - radius: 60.0, - lineWidth: 5.0, - percent: progress, - center: Text( - "$value/$targetCaolries Kcal", - textAlign: TextAlign.center, + return Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + CircularPercentIndicator( + animation: true, + radius: 60.0, + lineWidth: 5.0, + percent: progress, + center: Text( + "$value/$totalCalories Kcal", + textAlign: TextAlign.center, + ), + progressColor: Colors.lightGreen, ), - progressColor: Colors.lightGreen, - ), - ], - ); - }, - ); - - + ], + ); + }, + ); } -} \ No newline at end of file +} diff --git a/lib/android/components/MealPageFoodComponent.dart b/lib/android/components/meal_page_food_component.dart similarity index 100% rename from lib/android/components/MealPageFoodComponent.dart rename to lib/android/components/meal_page_food_component.dart diff --git a/lib/android/components/meal_page_text/statistics_today_component.dart b/lib/android/components/meal_page_text/statistics_today_component.dart index 9fed7c2..10ef4d2 100644 --- a/lib/android/components/meal_page_text/statistics_today_component.dart +++ b/lib/android/components/meal_page_text/statistics_today_component.dart @@ -11,46 +11,44 @@ class StatisticsPercentage extends StatelessWidget { @override Widget build(BuildContext context) { - return Container( - decoration: - BoxDecoration(border: Border.all(width: 2.0, color: Colors.black)), - height: heightStatisticsContainer, - padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 0), - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - Expanded( - child: SizedBox( - child: Padding( - padding: const EdgeInsets.symmetric(vertical: 0, horizontal: 8), - child: FittedBox( - child: CircularLoadingComponent(), + return ValueListenableBuilder>( + valueListenable: StatisticsService.instance.ingredients, + builder: (context, value, child) { + return Container( + decoration: BoxDecoration( + border: Border.all(width: 2.0, color: Colors.black)), + height: heightStatisticsContainer, + padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 0), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Expanded( + child: SizedBox( + child: Padding( + padding: const EdgeInsets.symmetric( + vertical: 0, horizontal: 8), + child: FittedBox( + child: CircularLoadingComponent(value[6].toInt()), + ), + ), + ), ), - ), - ), - ), - Expanded( - child: ValueListenableBuilder>( - valueListenable: StatisticsService.instance.ingredients, - builder: (context, value, child) { - print("value ${value}"); - return Column( + Expanded( + child: Column( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: [ // TODO adjust 200 to values from user box - LineCircularWiTextComponent( - Colors.lightGreen, value[0], 200, "Fat (g)"), - LineCircularWiTextComponent( - Colors.lightGreen, value[1], 200, "Protein (g)"), - LineCircularWiTextComponent( - Colors.lightGreen, value[2], 200, "Carbohydrate (g)"), + LineCircularWiTextComponent(Colors.lightGreen, value[0], + value[3].toInt(), "Fat (g)"), + LineCircularWiTextComponent(Colors.lightGreen, value[1], + value[4].toInt(), "Protein (g)"), + LineCircularWiTextComponent(Colors.lightGreen, value[2], + value[5].toInt(), "Carbohydrate (g)"), ], - ); - }, + )) + ], ), - ) - ], - ), - ); + ); + }); } } diff --git a/lib/android/components/statistics_circular_indicator_component.dart b/lib/android/components/statistics_circular_indicator_component.dart index fcd648a..9a68cab 100644 --- a/lib/android/components/statistics_circular_indicator_component.dart +++ b/lib/android/components/statistics_circular_indicator_component.dart @@ -2,14 +2,14 @@ import 'package:ernaehrung/android/components/circular/circular_component.dart'; import 'package:flutter/material.dart'; class StatisticsPercentComponent extends StatelessWidget { - late int eaten, calorienBurned, calorienLeft, calorienLeftPercent; + final int eaten, calorienBurned, calorienLeft, calorienLeftPercent; - StatisticsPercentComponent(this.eaten, this.calorienBurned, this.calorienLeft, {super.key}); - - int get getEaten => eaten; - get getCalorienBurned => calorienBurned; - get getCalorienLeft => calorienLeft; - get getCalorienLeftPercent => calorienLeftPercent; + const StatisticsPercentComponent( + {super.key, + required this.calorienLeftPercent, + required this.eaten, + required this.calorienBurned, + required this.calorienLeft}); @override Widget build(BuildContext context) { @@ -18,10 +18,9 @@ class StatisticsPercentComponent extends StatelessWidget { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text("$eaten gegessen"), - CircularLoadingComponent(), + const CircularLoadingComponent(123), Text("$calorienBurned verbrannt"), ], ); } - } diff --git a/lib/android/config/statistics.dart b/lib/android/config/statistics.dart index 25f1831..09c289b 100644 --- a/lib/android/config/statistics.dart +++ b/lib/android/config/statistics.dart @@ -6,6 +6,7 @@ import 'package:flutter/material.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:hive/hive.dart'; import '../models/food.dart'; +import '../models/user.dart'; import 'format_helper.dart'; class StatisticsService { @@ -23,7 +24,16 @@ class StatisticsService { final String progressStatisticsBoxName = dotenv.env['STATISTICS_PROGRESS_BOX'] ?? 'STATISTICS_PROGRESS_BOX'; ValueNotifier eatenCalories = ValueNotifier(0); - ValueNotifier> ingredients = ValueNotifier>([0,0,0]); + /* + * fat 0 + * protein 1 + * carbon 2 + * fat for one day, week, month, 3 + * protein for one day, week, month 4 + * carbon for one day, week, month 5 + * calories for one day, week, month 6 + * */ + ValueNotifier> ingredients = ValueNotifier>([0,0,0,0,0,0,0]); ValueNotifier dailyAverageForCurrentWeek = ValueNotifier(0); ValueNotifier> weeklyCaloryRanking = ValueNotifier>([]); ValueNotifier> barChartData = ValueNotifier>([]); @@ -49,6 +59,7 @@ class StatisticsService { updateStatisticsTodayBoxByTimespan(TimeSpan timespan){ clearBoxByBox(Hive.box(todayStatisticsBoxName)); int timestamp = getTimestampFromNow(); + int dayLen = 1; switch(timespan){ case TimeSpan.day: getNewFoodAndUpdateBoxByTimestampAndBox(timestamp, Hive.box(todayStatisticsBoxName)); @@ -58,22 +69,22 @@ class StatisticsService { for(int i = 0;i < currentWeek.length;i++){ getNewFoodAndUpdateBoxByTimestampAndBox(currentWeek[i],Hive.box(todayStatisticsBoxName)); } + dayLen = currentWeek.length; break; case TimeSpan.month: List currentMonth = getTimestampsByTimestampAndTimespan(TimeSpan.month,timestamp); for(int i = 0;i < currentMonth.length;i++){ getNewFoodAndUpdateBoxByTimestampAndBox(currentMonth[i],Hive.box(todayStatisticsBoxName)); } + dayLen = currentMonth.length; break; } - updateCalculationsAndNotfiyListenersForPorgressStatistics(); + updateCalculationsAndNotfiyListenersForPorgressStatistics(dayLen); } - void updateCalculationsAndNotfiyListenersForPorgressStatistics(){ + void updateCalculationsAndNotfiyListenersForPorgressStatistics(int dayLen){ eatenCalories.value = getAllEatenCaloriesByBox(Hive.box(todayStatisticsBoxName)); - eatenCalories.notifyListeners(); - ingredients.value = getAllEatenIngredientsForTodayStatistics(); - ingredients.notifyListeners(); + ingredients.value = getAllEatenIngredientsForTodayStatistics(dayLen.roundToDouble()); } void getNewFoodAndUpdateBoxByTimestampAndBox(int timestamp, Box box){ @@ -203,8 +214,19 @@ class StatisticsService { return sum as int; } - List getAllEatenIngredientsForTodayStatistics(){ + List getAllEatenIngredientsForTodayStatistics(double dayLen){ Box box = Hive.box(todayStatisticsBoxName); + final Box userBox = Hive.box("USER_BOX"); + final calorieSummary = userBox.get("USER").kalorien; + + const double fatPercentPerThousandCalorie = 3.7; + const double proteinPercentPerThousandCalorie = 4.5; + const double carbsPercentPerThousandCalorie = 12.8; + + double fatSummary = (calorieSummary / 100) * fatPercentPerThousandCalorie; + double carbSummary = (calorieSummary / 100) * carbsPercentPerThousandCalorie; + double proteinSummary = (calorieSummary / 100) * proteinPercentPerThousandCalorie; + num fat = 0; num protein = 0; num carbs = 0; @@ -215,16 +237,22 @@ class StatisticsService { carbs += food.carbohydrateg; } } - return [fat.roundToDouble(),protein.roundToDouble(),carbs.roundToDouble()]; + + return [ + fat.roundToDouble(), + protein.roundToDouble(), + carbs.roundToDouble(), + fatSummary * dayLen, + proteinSummary * dayLen, + carbSummary * dayLen, + calorieSummary * dayLen + ]; } void updateCalculationsAndNotfiyListenersForTodayStatistics(){ dailyAverageForCurrentWeek.value = getAverageCaloriesForCurrentWeekOnDailyBasis(); - dailyAverageForCurrentWeek.notifyListeners(); weeklyCaloryRanking.value = getWeeklyCaloryRanking(); - weeklyCaloryRanking.notifyListeners(); barChartData.value = getBarChartData(); - barChartData.notifyListeners(); } void updateProgressBoxValues(){ @@ -424,17 +452,4 @@ class StatisticsService { } - showItems(){ - print("Statistics.dart - showItems() - ITEMS"); - //Hive.box(boxName).clear(); - print(Hive.box(mainStatisticsBoxName).keys.length); - for(int i = 0; i < Hive.box(mainStatisticsBoxName).keys.length; i++){ - print(Hive.box(mainStatisticsBoxName).keys.elementAt(i)); - print(Hive.box(mainStatisticsBoxName).values.elementAt(i)); - //print(Hive.box(boxName).keys.elementAt(i) + " " + Hive.box(boxName).values.elementAt(i)); - } - } - - - } \ No newline at end of file diff --git a/lib/android/pages/nav_pages/meal_plan_page.dart b/lib/android/pages/nav_pages/meal_plan_page.dart index d926423..ebe74dc 100644 --- a/lib/android/pages/nav_pages/meal_plan_page.dart +++ b/lib/android/pages/nav_pages/meal_plan_page.dart @@ -1,4 +1,4 @@ -import 'package:ernaehrung/android/components/MealPageFoodComponent.dart'; +import 'package:ernaehrung/android/components/meal_page_food_component.dart'; import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; import 'package:ernaehrung/android/components/meal_page_text/statistics_today_component.dart'; import 'package:flutter/material.dart'; diff --git a/lib/android/pages/nav_pages/progress_page.dart b/lib/android/pages/nav_pages/progress_page.dart index f2d5796..2cbd688 100644 --- a/lib/android/pages/nav_pages/progress_page.dart +++ b/lib/android/pages/nav_pages/progress_page.dart @@ -34,7 +34,7 @@ class ProgressPage extends StatelessWidget { ValueListenableBuilder( valueListenable: StatisticsService.instance.dailyAverageForCurrentWeek, builder: (context, value, child) { - return Container( + return SizedBox( height: 100, width: 400, child: Column( @@ -262,7 +262,7 @@ class ProgressPage extends StatelessWidget { getTitlesWidget: (value, _) { // Return a custom widget for each axis value return Container( - constraints: BoxConstraints.tightFor(width: double.infinity), + constraints: const BoxConstraints.tightFor(width: double.infinity), child: Padding( padding: const EdgeInsets.only(right: 3.0), // Adjust the margin value as needed child: FittedBox( diff --git a/lib/android/pages/welcome.dart b/lib/android/pages/welcome.dart index 0ee92cb..b70d208 100644 --- a/lib/android/pages/welcome.dart +++ b/lib/android/pages/welcome.dart @@ -27,7 +27,7 @@ class _OnboardingPageState extends State { @override Widget build(BuildContext context) { - final _formKey = GlobalKey(); + final formKey = GlobalKey(); return Scaffold( appBar: AppBar( @@ -35,7 +35,7 @@ class _OnboardingPageState extends State { backgroundColor: Colors.grey.shade100, ), body: FormBuilder( - key: _formKey, + key: formKey, child: Padding( padding: const EdgeInsets.all(8), child: SingleChildScrollView( @@ -183,16 +183,14 @@ class _OnboardingPageState extends State { onPressed: () { final Box box = Hive.box("USER_BOX"); box.put("USER", User( - _formKey.currentState?.fields['vorname']?.value, - _formKey.currentState?.fields['nachname']?.value, - int.parse(_formKey.currentState?.fields['gewicht']?.value), - int.parse(_formKey.currentState?.fields['groesse']?.value), - int.parse(_formKey.currentState?.fields['alter']?.value), - int.parse(_formKey.currentState?.fields['kalorien']?.value) + formKey.currentState?.fields['vorname']?.value, + formKey.currentState?.fields['nachname']?.value, + int.parse(formKey.currentState?.fields['gewicht']?.value), + int.parse(formKey.currentState?.fields['groesse']?.value), + int.parse(formKey.currentState?.fields['alter']?.value), + int.parse(formKey.currentState?.fields['kalorien']?.value) )); - print(box.get("USER")); - Navigator .of(context) .pushReplacement(MaterialPageRoute(builder: (BuildContext context) => const MainPage())); diff --git a/lib/web/component/section_component.dart b/lib/web/component/section_component.dart index 7f49866..17c96a7 100644 --- a/lib/web/component/section_component.dart +++ b/lib/web/component/section_component.dart @@ -13,7 +13,12 @@ class SectionComponent extends StatelessWidget { return SingleChildScrollView( child: Column( children: [ - StatisticsPercentComponent(300, 100, 400), + const StatisticsPercentComponent( + calorienLeftPercent: 0, + eaten: 0, + calorienBurned: 0, + calorienLeft: 0, + ), DietChatComponent(1500), ValueListenableBuilder( valueListenable: Hive.box("TODAY").listenable(), @@ -23,16 +28,15 @@ class SectionComponent extends StatelessWidget { shrinkWrap: true, itemCount: box.keys.length, itemBuilder: (context, i) { - if(box.keyAt(i).toString() == "DATE"){ + if (box.keyAt(i).toString() == "DATE") { return const SizedBox.shrink(); - }else{ + } else { return CardComponent( - eatingMealName: box.keyAt(i).toString(), - selectedMeal: castDynamicToListFood(box.getAt(i)), + eatingMealName: box.keyAt(i).toString(), + selectedMeal: castDynamicToListFood(box.getAt(i)), ); } - } - ); + }); }), ], ), diff --git a/pubspec.lock b/pubspec.lock index c0d1a8b..a0ea314 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -45,10 +45,10 @@ packages: dependency: transitive description: name: async - sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + sha256: bfe67ef28df125b7dddcea62755991f807aa39a2492a23e1550161692950bbe0 url: "https://pub.dev" source: hosted - version: "2.11.0" + version: "2.10.0" basic_utils: dependency: "direct main" description: @@ -141,10 +141,10 @@ packages: dependency: transitive description: name: characters - sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c url: "https://pub.dev" source: hosted - version: "1.3.0" + version: "1.2.1" checked_yaml: dependency: transitive description: @@ -173,10 +173,10 @@ packages: dependency: transitive description: name: collection - sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c" + sha256: cfc915e6923fe5ce6e153b0723c753045de46de1b4d63771530504004a45fae0 url: "https://pub.dev" source: hosted - version: "1.17.1" + version: "1.17.0" convert: dependency: transitive description: @@ -282,10 +282,10 @@ packages: dependency: "direct main" description: name: flutter_form_builder - sha256: "9b098f6a5f8a6381016a5fe9cdccc900683917d1fb930e1c6c6c051ca0f01f08" + sha256: "236c96dad143a0e67c0f11522606d6b17b6510e97530cb73af355b018ded7c10" url: "https://pub.dev" source: hosted - version: "9.0.0" + version: "8.0.0" flutter_lints: dependency: "direct dev" description: @@ -308,10 +308,10 @@ packages: dependency: "direct main" description: name: form_builder_validators - sha256: e04998b1597d76a51da7f009ed3b2f12d4173f13e146e8744fd2453e8595a2c9 + sha256: f2d90439c56345c23ad8d0c2912e4002cd02563d816f4387c9495051c10d3321 url: "https://pub.dev" source: hosted - version: "9.0.0" + version: "8.6.1" frontend_server_client: dependency: transitive description: @@ -388,10 +388,10 @@ packages: dependency: transitive description: name: intl - sha256: a3715e3bc90294e971cb7dc063fbf3cd9ee0ebf8604ffeafabd9e6f16abbdbe6 + sha256: "910f85bce16fb5c6f614e117efa303e85a1731bb0081edf3604a2ae6e9a3cc91" url: "https://pub.dev" source: hosted - version: "0.18.0" + version: "0.17.0" io: dependency: transitive description: @@ -404,10 +404,10 @@ packages: dependency: transitive description: name: js - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + sha256: "5528c2f391ededb7775ec1daa69e65a2d61276f7552de2b5f7b8d34ee9fd4ab7" url: "https://pub.dev" source: hosted - version: "0.6.7" + version: "0.6.5" json_annotation: dependency: transitive description: @@ -436,10 +436,10 @@ packages: dependency: transitive description: name: matcher - sha256: "6501fbd55da300384b768785b83e5ce66991266cec21af89ab9ae7f5ce1c4cbb" + sha256: "16db949ceee371e9b99d22f88fa3a73c4e59fd0afed0bd25fc336eb76c198b72" url: "https://pub.dev" source: hosted - version: "0.12.15" + version: "0.12.13" material_color_utilities: dependency: transitive description: @@ -460,10 +460,10 @@ packages: dependency: transitive description: name: meta - sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" + sha256: "6c268b42ed578a53088d834796959e4a1814b5e9e164f147f580a386e5decf42" url: "https://pub.dev" source: hosted - version: "1.9.1" + version: "1.8.0" mime: dependency: transitive description: @@ -484,10 +484,10 @@ packages: dependency: transitive description: name: path - sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + sha256: db9d4f58c908a4ba5953fcee2ae317c94889433e5024c27ce74a37f94267945b url: "https://pub.dev" source: hosted - version: "1.8.3" + version: "1.8.2" path_provider: dependency: transitive description: @@ -713,10 +713,10 @@ packages: dependency: transitive description: name: test_api - sha256: eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb + sha256: ad540f65f92caa91bf21dfc8ffb8c589d6e4dc0c2267818b4cc2792857706206 url: "https://pub.dev" source: hosted - version: "0.5.1" + version: "0.4.16" timing: dependency: transitive description: @@ -790,5 +790,5 @@ packages: source: hosted version: "3.1.2" sdks: - dart: ">=3.0.0 <4.0.0" - flutter: ">=3.10.0" + dart: ">=2.19.6 <3.0.0" + flutter: ">=3.7.0" diff --git a/pubspec.yaml b/pubspec.yaml index 0cbeda4..79a821b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -47,8 +47,8 @@ dependencies: sizer: ^2.0.15 fl_chart: ^0.62.0 basic_utils: ^5.5.4 - flutter_form_builder: ^9.0.0 - form_builder_validators: ^9.0.0 + flutter_form_builder: ^8.0.0 + form_builder_validators: ^8.0.0 dev_dependencies: -- 2.51.0 From 4fbb5f58a5752021a89dbf7996bf0d695ed2fd1b Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Fri, 2 Jun 2023 00:39:40 +0200 Subject: [PATCH 05/32] woche, monat kalorien, fett, kohlenhydrate, etc, bug fixes --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index f8bc977..0054c1c 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,4 +1,4 @@ -gitimport 'package:ernaehrung/android/models/food.dart'; +import 'package:ernaehrung/android/models/food.dart'; import 'package:ernaehrung/android/models/user.dart'; import 'package:ernaehrung/web/web_app.dart'; import 'package:flutter/material.dart'; -- 2.51.0 From a989878cca03d55bc1b788859823462e43dd7928 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Fri, 2 Jun 2023 01:42:56 +0200 Subject: [PATCH 06/32] optimierung --- lib/android/andoird_app.dart | 2 +- .../components/card/card_component.dart | 9 +- lib/android/components/card_component.dart | 91 ++-- .../components/meal_page_food_component.dart | 13 +- .../meal_page_text/days_component.dart | 5 +- .../statistics_today_component.dart | 2 - lib/android/pages/nav_pages/main_page.dart | 5 +- .../pages/nav_pages/meal_plan_page.dart | 24 +- .../pages/nav_pages/progress_page.dart | 402 ++++++++++-------- lib/main.dart | 2 - 10 files changed, 301 insertions(+), 254 deletions(-) diff --git a/lib/android/andoird_app.dart b/lib/android/andoird_app.dart index b5062be..02c049c 100644 --- a/lib/android/andoird_app.dart +++ b/lib/android/andoird_app.dart @@ -14,7 +14,7 @@ class AndroidApp extends StatelessWidget { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( - scaffoldBackgroundColor: Colors.grey.shade100, //<-- SEE + scaffoldBackgroundColor: Colors.grey.shade200, //<-- SEE ), home: box.get("USER") == null ? const OnboardingPage() : const MainPage(), routes: { diff --git a/lib/android/components/card/card_component.dart b/lib/android/components/card/card_component.dart index 0f5c3a3..a7a1e68 100644 --- a/lib/android/components/card/card_component.dart +++ b/lib/android/components/card/card_component.dart @@ -45,12 +45,9 @@ class CardComponent extends StatelessWidget { Widget build(BuildContext context) { return Container( height: 300, - decoration: BoxDecoration( - color: const Color(0xFF6E7BFB), - borderRadius: const BorderRadius.all(Radius.circular(16)), - border: Border.all( - color: Colors.black, - ), + decoration: const BoxDecoration( + color: Color(0xFF6E7BFB), + borderRadius: BorderRadius.all(Radius.circular(16)), ), margin: const EdgeInsets.fromLTRB(0, 16, 0, 16), child: Column( diff --git a/lib/android/components/card_component.dart b/lib/android/components/card_component.dart index d5405b2..1bd69d5 100644 --- a/lib/android/components/card_component.dart +++ b/lib/android/components/card_component.dart @@ -11,7 +11,10 @@ class CardComponent extends StatefulWidget { final bool addButtonVisible; const CardComponent( - {Key? key, required this.eatingMealName, required this.selectedMeal, this.addButtonVisible = true}) + {Key? key, + required this.eatingMealName, + required this.selectedMeal, + this.addButtonVisible = true}) : super(key: key); @override @@ -40,11 +43,14 @@ class _CardComponentState extends State { } getImageOfMeal() { - if (widget.eatingMealName.toLowerCase() == dotenv.env['BREAKFAST_FIELD']!.toLowerCase()) { + if (widget.eatingMealName.toLowerCase() == + dotenv.env['BREAKFAST_FIELD']!.toLowerCase()) { return const Image(image: AssetImage('assets/images/tea.png')); - } else if (widget.eatingMealName.toLowerCase() == dotenv.env['LUNCH_FIELD']!.toLowerCase()) { + } else if (widget.eatingMealName.toLowerCase() == + dotenv.env['LUNCH_FIELD']!.toLowerCase()) { return const Image(image: AssetImage('assets/images/fries.png')); - } else if (widget.eatingMealName.toLowerCase() == dotenv.env['DINNER_FIELD']!.toLowerCase()) { + } else if (widget.eatingMealName.toLowerCase() == + dotenv.env['DINNER_FIELD']!.toLowerCase()) { return const Image(image: AssetImage('assets/images/ice.png')); } } @@ -60,7 +66,7 @@ class _CardComponentState extends State { } Widget getElevatedButton() { - if(widget.addButtonVisible){ + if (widget.addButtonVisible) { return ElevatedButton( onPressed: () async { Navigator.of(context).push(createRoute(widget.eatingMealName)); @@ -74,18 +80,17 @@ class _CardComponentState extends State { style: TextStyle(fontSize: 28), ), ); - }else{ + } else { return const SizedBox.shrink(); } - } int getCountedCalories() { double calories = 0; for (Food food in widget.selectedMeal) { - if (food.calories is int){ + if (food.calories is int) { calories += food.calories as int; - }else if(food.calories is double){ + } else if (food.calories is double) { calories += food.calories as double; } } @@ -94,60 +99,52 @@ class _CardComponentState extends State { @override Widget build(BuildContext context) { - return Card( - margin: const EdgeInsets.fromLTRB(0, 24, 0, 0), + return Container( + margin: const EdgeInsets.fromLTRB(0, 16, 0, 0), child: Column( children: [ Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - Row( - children: [ - getImageOfMeal(), - Column( - mainAxisAlignment: MainAxisAlignment.start, - children: [ - SizedBox( - width: MediaQuery.of(context).size.width * 0.6, - child: Text( - StringUtils.capitalize(widget.eatingMealName), - maxLines: 1, - overflow: TextOverflow.ellipsis, - softWrap: false, - style: const TextStyle( - color: Colors.black, - fontWeight: FontWeight.w500, - fontSize: 14), - ), - ), - ], - ) - ], + getImageOfMeal(), + Text( + StringUtils.capitalize(widget.eatingMealName), + maxLines: 1, + overflow: TextOverflow.ellipsis, + softWrap: false, + style: const TextStyle( + color: Colors.black, + fontWeight: FontWeight.w500, + fontSize: 14), ), getElevatedButton(), ], ), SizedBox( - width: MediaQuery.of(context).size.width * 0.8, - child:ListView.builder( + width: MediaQuery.of(context).size.width * 1, + child: ListView.builder( primary: false, shrinkWrap: true, - itemCount: getMapOfDistinctElementsWithCounterAndCalories(widget.selectedMeal).keys.length, + itemCount: getMapOfDistinctElementsWithCounterAndCalories( + widget.selectedMeal) + .keys + .length, itemBuilder: (context, i) { - Map> map = getMapOfDistinctElementsWithCounterAndCalories(widget.selectedMeal); + Map> map = + getMapOfDistinctElementsWithCounterAndCalories( + widget.selectedMeal); String foodName = map.keys.elementAt(i); List values = map.values.elementAt(i); - return Text( - getFoodListStringByFood(foodName, values[0], values[1]) - ); - } - ), + return Text(getFoodListStringByFood( + foodName, values[0], values[1])); + }), ), widget.selectedMeal.isNotEmpty - ? const Divider() - : const SizedBox.shrink(), - widget.selectedMeal.isNotEmpty - ? Text("${getCountedCalories()} kcal") + ? Column( + children: [ + const Divider(), + Text("${getCountedCalories()} kcal") + ], + ) : const SizedBox.shrink(), ], )); diff --git a/lib/android/components/meal_page_food_component.dart b/lib/android/components/meal_page_food_component.dart index c62a067..08321d4 100644 --- a/lib/android/components/meal_page_food_component.dart +++ b/lib/android/components/meal_page_food_component.dart @@ -10,17 +10,18 @@ class MealPageStatisticsFoodComponent extends StatelessWidget { @override Widget build(BuildContext context) { return Container( + margin: const EdgeInsets.fromLTRB(0, 16, 0, 0), + padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 16), decoration: const BoxDecoration( - color: Colors.white - ), + color: Colors.white, + borderRadius: BorderRadius.all(Radius.circular(8))), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - const SizedBox( - height: 24, - ), const TitleComponent("Nahrung"), - FoodComponent(box: Hive.box(StatisticsService.instance.todayStatisticsBoxName),) + FoodComponent( + box: Hive.box(StatisticsService.instance.todayStatisticsBoxName), + ) ], ), ); diff --git a/lib/android/components/meal_page_text/days_component.dart b/lib/android/components/meal_page_text/days_component.dart index b7ade1e..4a3811d 100644 --- a/lib/android/components/meal_page_text/days_component.dart +++ b/lib/android/components/meal_page_text/days_component.dart @@ -34,9 +34,7 @@ class _DaysMealPageState extends State { @override Widget build(BuildContext context) { - return Padding( - padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: Row( + return Row( mainAxisAlignment: MainAxisAlignment.start, children: [ DaysTextComponent( @@ -65,7 +63,6 @@ class _DaysMealPageState extends State { index: 2 ), ], - ), ); } } diff --git a/lib/android/components/meal_page_text/statistics_today_component.dart b/lib/android/components/meal_page_text/statistics_today_component.dart index 10ef4d2..4386065 100644 --- a/lib/android/components/meal_page_text/statistics_today_component.dart +++ b/lib/android/components/meal_page_text/statistics_today_component.dart @@ -15,8 +15,6 @@ class StatisticsPercentage extends StatelessWidget { valueListenable: StatisticsService.instance.ingredients, builder: (context, value, child) { return Container( - decoration: BoxDecoration( - border: Border.all(width: 2.0, color: Colors.black)), height: heightStatisticsContainer, padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 0), child: Row( diff --git a/lib/android/pages/nav_pages/main_page.dart b/lib/android/pages/nav_pages/main_page.dart index 6945c05..d33c526 100644 --- a/lib/android/pages/nav_pages/main_page.dart +++ b/lib/android/pages/nav_pages/main_page.dart @@ -36,9 +36,12 @@ class MainPageState extends State { @override Widget build(BuildContext context) { return Scaffold( + extendBodyBehindAppBar: false, appBar: AppBar( title: Text(pages[currentIndex].title), - backgroundColor: Colors.grey.shade100, + backgroundColor: Colors.transparent, + foregroundColor: Colors.grey.shade400, + elevation: 0, ), body: Padding( padding: const EdgeInsets.symmetric(vertical: 0, horizontal: 8), diff --git a/lib/android/pages/nav_pages/meal_plan_page.dart b/lib/android/pages/nav_pages/meal_plan_page.dart index ebe74dc..ecc3411 100644 --- a/lib/android/pages/nav_pages/meal_plan_page.dart +++ b/lib/android/pages/nav_pages/meal_plan_page.dart @@ -24,16 +24,28 @@ class _MealPlanState extends State { @override Widget build(BuildContext context) { return Scaffold( - body: Container( - margin: const EdgeInsets.all(8), + body: SizedBox( width: double.infinity, height: double.infinity, child: SingleChildScrollView( child: Column( - children: const [ - DaysMealPageComponent(), - StatisticsPercentage(), - MealPageStatisticsFoodComponent(), + children: [ + Container( + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.all(Radius.circular(8))), + child: Padding( + padding: const EdgeInsets.symmetric( + vertical: 8, horizontal: 16), + child: Column( + children: const [ + DaysMealPageComponent(), + StatisticsPercentage(), + ], + ), + ), + ), + const MealPageStatisticsFoodComponent(), ], ), ))); diff --git a/lib/android/pages/nav_pages/progress_page.dart b/lib/android/pages/nav_pages/progress_page.dart index 2cbd688..d2c200b 100644 --- a/lib/android/pages/nav_pages/progress_page.dart +++ b/lib/android/pages/nav_pages/progress_page.dart @@ -20,160 +20,204 @@ class ProgressPage extends StatelessWidget { return getTitle; } - /* - * TODO: in versch. Dateien auslagern, damit der Code nicht voll gemüllt wird - * */ @override Widget build(BuildContext context) { return Scaffold( body: SingleChildScrollView( - child: Padding( - padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 8), - child: Column( - children: [ - ValueListenableBuilder( - valueListenable: StatisticsService.instance.dailyAverageForCurrentWeek, - builder: (context, value, child) { - return SizedBox( - height: 100, - width: 400, - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - const TitleComponent("Täglicher Durchschnitt (in kcal)"), - const SizedBox( - height: 10, - ), - const SecondaryTextComponent("Durchschnittlich"), - SecondaryBigTextComponent("${value.toString()} kcal/Tag"), - ], - ), - ); - }, - ), - ValueListenableBuilder( - valueListenable: StatisticsService.instance.barChartData, - builder: (context, value, child) { - return SizedBox( - height: 325, - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - SizedBox( - height: 15, // Adjust the height of the legend as needed - child: Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Container( - margin: const EdgeInsets.symmetric(horizontal: 8.0), // Adjust the spacing between legend items + child: Column( + children: [ + Container( + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.all(Radius.circular(8))), + child: Padding( + padding: + const EdgeInsets.symmetric(vertical: 8, horizontal: 16), + child: Column( + children: [ + ValueListenableBuilder( + valueListenable: StatisticsService + .instance.dailyAverageForCurrentWeek, + builder: (context, value, child) { + return SizedBox( + height: 100, + width: 400, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const TitleComponent("Kalorien"), + const SizedBox( + height: 10, + ), + const SecondaryTextComponent( + "Durchschnittlich"), + SecondaryBigTextComponent( + "${value.toString()} kcal/Tag"), + ], + ), + ); + }, + ), + ValueListenableBuilder( + valueListenable: + StatisticsService.instance.barChartData, + builder: (context, value, child) { + return SizedBox( + height: 300, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + SizedBox( + height: 15, + // Adjust the height of the legend as needed child: Row( + mainAxisAlignment: MainAxisAlignment.center, children: [ Container( - width: 12, - height: 12, - decoration: const BoxDecoration( - color: Colors.red, // Use the color of the first bar rod for the legend item - shape: BoxShape.circle, + margin: const EdgeInsets.symmetric( + horizontal: 8.0), + // Adjust the spacing between legend items + child: Row( + children: [ + Container( + width: 12, + height: 12, + decoration: const BoxDecoration( + color: Colors.red, + // Use the color of the first bar rod for the legend item + shape: BoxShape.circle, + ), + ), + const SizedBox(width: 4.0), + // Adjust the spacing between the color indicator and the legend label + const Text( + 'Frühstück', + // Replace with your desired legend label + style: TextStyle( + fontSize: + 12), // Adjust the font size of the legend labels + ), + ], ), ), - const SizedBox(width: 4.0), // Adjust the spacing between the color indicator and the legend label - const Text( - 'Frühstück', // Replace with your desired legend label - style: TextStyle(fontSize: 12), // Adjust the font size of the legend labels + Container( + margin: const EdgeInsets.symmetric( + horizontal: 8.0), + // Adjust the spacing between legend items + child: Row( + children: [ + Container( + width: 12, + height: 12, + decoration: const BoxDecoration( + color: Colors.green, + // Use the color of the first bar rod for the legend item + shape: BoxShape.circle, + ), + ), + const SizedBox(width: 4.0), + // Adjust the spacing between the color indicator and the legend label + const Text( + 'Mittagessen', + // Replace with your desired legend label + style: TextStyle( + fontSize: + 12), // Adjust the font size of the legend labels + ), + ], + ), + ), + Container( + margin: const EdgeInsets.symmetric( + horizontal: 8.0), + // Adjust the spacing between legend items + child: Row( + children: [ + Container( + width: 12, + height: 12, + decoration: const BoxDecoration( + color: Colors.yellow, + // Use the color of the first bar rod for the legend item + shape: BoxShape.circle, + ), + ), + const SizedBox(width: 4.0), + // Adjust the spacing between the color indicator and the legend label + const Text( + 'Abendessen', + // Replace with your desired legend label + style: TextStyle( + fontSize: + 12), // Adjust the font size of the legend labels + ), + ], + ), ), ], ), ), - Container( - margin: const EdgeInsets.symmetric(horizontal: 8.0), // Adjust the spacing between legend items - child: Row( - children: [ - Container( - width: 12, - height: 12, - decoration: const BoxDecoration( - color: Colors.green, // Use the color of the first bar rod for the legend item - shape: BoxShape.circle, - ), + Container( + margin: + const EdgeInsets.fromLTRB(0, 24, 0, 0), + height: 250, + child: BarChart( + BarChartData( + barTouchData: barTouchData, + titlesData: titlesData, + borderData: borderData, + barGroups: value, + gridData: FlGridData(show: false), + alignment: BarChartAlignment.spaceAround, ), - const SizedBox(width: 4.0), // Adjust the spacing between the color indicator and the legend label - const Text( - 'Mittagessen', // Replace with your desired legend label - style: TextStyle(fontSize: 12), // Adjust the font size of the legend labels - ), - ], + ), ), - ), - Container( - margin: const EdgeInsets.symmetric(horizontal: 8.0), // Adjust the spacing between legend items - child: Row( - children: [ - Container( - width: 12, - height: 12, - decoration: const BoxDecoration( - color: Colors.yellow, // Use the color of the first bar rod for the legend item - shape: BoxShape.circle, - ), - ), - const SizedBox(width: 4.0), // Adjust the spacing between the color indicator and the legend label - const Text( - 'Abendessen', // Replace with your desired legend label - style: TextStyle(fontSize: 12), // Adjust the font size of the legend labels - ), - ], - ), - ), - ], - ), - ), - Padding( - padding: const EdgeInsets.only(top:50.0), // Adjust the margin value as needed - child: SizedBox( - height: 250, - child: BarChart( - BarChartData( - barTouchData: barTouchData, - titlesData: titlesData, - borderData: borderData, - barGroups: value, - gridData: FlGridData(show: false), - alignment: BarChartAlignment.spaceAround, - ), + ], ), - ), - ), - ], - ), - ); - }, - ), - ValueListenableBuilder( - valueListenable: StatisticsService.instance.weeklyCaloryRanking, - builder: (context, value, child) { - return Column( - //TODO: Loop through the values and display them dynamically - children: [ - const TitleComponent("Lebensmittel mit dem höchsten Kaloriengehalt"), - const SizedBox(height: 24,), - for (var item in value.toSet()) - Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - SecondaryTextComponent(getWeeklyRankingString(item.name)), - SecondaryTextComponent(item.calories.toString()), - ], - ), + ); + }, + ), ], - ); - }, - ), - ], - ), + ), + )), + Container( + margin: const EdgeInsets.fromLTRB(0, 16, 0, 0), + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.all(Radius.circular(8))), + child: Padding( + padding: + const EdgeInsets.symmetric(vertical: 8, horizontal: 16), + child: ValueListenableBuilder( + valueListenable: + StatisticsService.instance.weeklyCaloryRanking, + builder: (context, value, child) { + return Column( + children: [ + const TitleComponent( + "Lebensmittel mit dem höchsten Kaloriengehalt"), + const SizedBox( + height: 24, + ), + for (var item in value.toSet()) + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + SecondaryTextComponent( + getWeeklyRankingString(item.name)), + SecondaryTextComponent( + item.calories.toString()), + ], + ), + ], + ); + }, + ), + )) + ], ), ), ); - } BarTouchData get barTouchData => BarTouchData( @@ -240,56 +284,56 @@ class ProgressPage extends StatelessWidget { } FlTitlesData get titlesData => FlTitlesData( - show: true, - bottomTitles: AxisTitles( - sideTitles: SideTitles( - showTitles: true, - reservedSize: 30, - getTitlesWidget: getTitles, - ), + show: true, + bottomTitles: AxisTitles( + sideTitles: SideTitles( + showTitles: true, + reservedSize: 30, + getTitlesWidget: getTitles, ), - topTitles: AxisTitles( - sideTitles: SideTitles(showTitles: false), + ), + topTitles: AxisTitles( + sideTitles: SideTitles(showTitles: false), + ), + rightTitles: AxisTitles( + sideTitles: SideTitles( + showTitles: false, ), - rightTitles: AxisTitles( - sideTitles: SideTitles( - showTitles: false, - ), - ), - leftTitles: AxisTitles( - sideTitles: SideTitles( - showTitles: true, - getTitlesWidget: (value, _) { - // Return a custom widget for each axis value - return Container( - constraints: const BoxConstraints.tightFor(width: double.infinity), - child: Padding( - padding: const EdgeInsets.only(right: 3.0), // Adjust the margin value as needed - child: FittedBox( - fit: BoxFit.scaleDown, - alignment: Alignment.centerLeft, - child: Text( - value.toInt().toString(), - style: const TextStyle( - color: Colors.orange, - fontWeight: FontWeight.bold, - ), + ), + leftTitles: AxisTitles( + sideTitles: SideTitles( + showTitles: true, + getTitlesWidget: (value, _) { + // Return a custom widget for each axis value + return Container( + constraints: + const BoxConstraints.tightFor(width: double.infinity), + child: Padding( + padding: const EdgeInsets.only(right: 3.0), + // Adjust the margin value as needed + child: FittedBox( + fit: BoxFit.scaleDown, + alignment: Alignment.centerLeft, + child: Text( + value.toInt().toString(), + style: const TextStyle( + color: Colors.orange, + fontWeight: FontWeight.bold, ), ), ), - ); - }, - ), - ) - ); + ), + ); + }, + ), + )); FlBorderData get borderData => FlBorderData( - show: true, // Set to true to display the chart border - border: const Border( - bottom: BorderSide(color: Colors.black, width: 1), - left: BorderSide(color: Colors.black, width: 1),// Hide the left border - ), - ); - - + show: true, // Set to true to display the chart border + border: const Border( + bottom: BorderSide(color: Colors.black, width: 1), + left: + BorderSide(color: Colors.black, width: 1), // Hide the left border + ), + ); } diff --git a/lib/main.dart b/lib/main.dart index 0054c1c..e396c02 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -23,9 +23,7 @@ void main() async { await Hive.openBox(dotenv.env['STATISTICS_MAIN_BOX'] ?? 'STATISTICS_MAIN_BOX'); await Hive.openBox(dotenv.env['MEALPLAN_BOX'] ?? 'MEALPLAN'); await Hive.openBox('USER_BOX'); - //Hive.deleteFromDisk(); setupTodayBox(); - //mockDataForWholeWeek(); if (defaultTargetPlatform == TargetPlatform.android) { runApp(const AndroidApp()); -- 2.51.0 From d131e1263c1afe21f704e4693dffe3346a19dfb2 Mon Sep 17 00:00:00 2001 From: 2211260 <2211260@hs-mannheim.de> Date: Fri, 2 Jun 2023 18:18:08 +0200 Subject: [PATCH 07/32] feat: add loading spinner for search component, adjust filtering and add success toast --- .dart_tool/package_config.json | 214 ++++----- .dart_tool/package_config_subset | 416 +++++++++--------- .flutter-plugins-dependencies | 2 +- .../{andoird_app.dart => android_app.dart} | 0 .../components/founded_search_component.dart | 15 + lib/android/components/search_component.dart | 71 +-- lib/android/config/format_helper.dart | 6 + lib/android/pages/nav_pages/search_food.dart | 7 +- lib/main.dart | 2 +- pubspec.lock | 13 + pubspec.yaml | 2 +- 11 files changed, 413 insertions(+), 335 deletions(-) rename lib/android/{andoird_app.dart => android_app.dart} (100%) diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index efef7a0..f7f6132 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -3,601 +3,613 @@ "packages": [ { "name": "_fe_analyzer_shared", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "analyzer", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "animate_gradient", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "args", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "assorted_layout_widgets", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "async", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "basic_utils", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "boolean_selector", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build_config", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_daemon", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_resolvers", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "build_runner", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_runner_core", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "built_collection", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "built_value", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "card_swiper", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "characters", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "checked_yaml", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "clock", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "code_builder", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "collection", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "convert", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "crypto", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "cupertino_icons", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "dart_style", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "empty_widget", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "equatable", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fake_async", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "ffi", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "file", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fixnum", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "fl_chart", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter", + "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_dotenv", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_form_builder", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "flutter_lints", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_localizations", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations", + "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_test", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test", + "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test", "packageUri": "lib/", "languageVersion": "2.17" }, + { + "name": "flutter_web_plugins", + "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter_web_plugins", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "fluttertoast", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2", + "packageUri": "lib/", + "languageVersion": "2.12" + }, { "name": "form_builder_validators", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "frontend_server_client", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "glob", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "graphs", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_flutter", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_generator", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "http_multi_server", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http_parser", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intl", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "io", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "js", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "json_annotation", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "lints", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "logging", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "matcher", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "material_color_utilities", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "matrix4_transform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "meta", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "mime", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "package_config", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_android", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_foundation", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "path_provider_linux", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_platform_interface", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider_windows", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "percent_indicator", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "platform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "plugin_platform_interface", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pointycastle", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pool", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "process", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pub_semver", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pubspec_parse", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "responsive_framework", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "searchable_listview", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "shelf", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "shelf_web_socket", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "sizer", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "sky_engine", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine", + "rootUri": "file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "source_gen", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "source_helper", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "source_span", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stack_trace", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "stream_channel", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stream_transform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "string_scanner", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "term_glyph", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "test_api", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "timing", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "typed_data", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "universal_io", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "vector_math", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "watcher", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "web_socket_channel", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "win32", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "xdg_directories", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "yaml", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2", + "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2", "packageUri": "lib/", "languageVersion": "2.19" }, @@ -608,7 +620,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-01T16:44:17.796384Z", + "generated": "2023-06-02T16:08:25.124323Z", "generator": "pub", "generatorVersion": "2.19.6" } diff --git a/.dart_tool/package_config_subset b/.dart_tool/package_config_subset index fe09e4c..0fdc3f4 100644 --- a/.dart_tool/package_config_subset +++ b/.dart_tool/package_config_subset @@ -1,405 +1,413 @@ _fe_analyzer_shared 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ analyzer 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/lib/ animate_gradient 2.16 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ args 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/lib/ assorted_layout_widgets 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ async 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/lib/ basic_utils 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/lib/ boolean_selector 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ build 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/lib/ build_config 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/lib/ build_daemon 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/lib/ build_resolvers 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ build_runner 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/lib/ build_runner_core 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ built_collection 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/lib/ built_value 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/lib/ card_swiper 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/lib/ characters 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/lib/ checked_yaml 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ clock 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/ code_builder 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/lib/ collection 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/lib/ convert 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/ crypto 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/ cupertino_icons 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ dart_style 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/lib/ empty_widget 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/lib/ equatable 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/lib/ fake_async 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/ ffi 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/lib/ file 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/lib/ fixnum 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/lib/ fl_chart 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/lib/ flutter_dotenv 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ flutter_form_builder 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ flutter_lints 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ +fluttertoast +2.12 +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ form_builder_validators 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ frontend_server_client 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ glob 2.15 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/lib/ graphs 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/lib/ hive 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/lib/ hive_flutter 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ hive_generator 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/lib/ http 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/lib/ http_multi_server 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ http_parser 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/ intl 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/lib/ io 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/lib/ js 2.16 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/lib/ json_annotation 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/lib/ lints 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/lib/ logging 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/lib/ matcher 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/lib/ material_color_utilities 2.13 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ matrix4_transform 2.13 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ meta 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/lib/ mime 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/lib/ package_config 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/lib/ path 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/lib/ path_provider 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/lib/ path_provider_android 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ path_provider_foundation 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ path_provider_linux 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ path_provider_platform_interface 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ path_provider_windows 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ percent_indicator 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ platform 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/lib/ plugin_platform_interface 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ pointycastle 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib/ pool 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/lib/ process 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/lib/ pub_semver 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/lib/ pubspec_parse 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ responsive_framework 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ searchable_listview 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ shelf 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/lib/ shelf_web_socket 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ sizer 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/lib/ source_gen 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/lib/ source_helper 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/lib/ source_span 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/lib/ stack_trace 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/ stream_channel 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/ stream_transform 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/lib/ string_scanner 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/ term_glyph 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/ test_api 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/lib/ timing 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/lib/ typed_data 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/lib/ universal_io 2.15 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/lib/ vector_math 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/ watcher 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/lib/ web_socket_channel 2.15 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ win32 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/lib/ xdg_directories 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ yaml 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/lib/ -ernaehrung -2.19 -file:///Users/bogdan/IdeaProjects/ernaehrung/ -file:///Users/bogdan/IdeaProjects/ernaehrung/lib/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/ +file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/lib/ sky_engine 2.12 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine/lib/ +file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine/ +file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine/lib/ flutter 2.17 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter/lib/ +file:///C:/Users/FUCHSLAU/flutter/packages/flutter/ +file:///C:/Users/FUCHSLAU/flutter/packages/flutter/lib/ flutter_localizations 2.17 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations/lib/ +file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations/ +file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations/lib/ flutter_test 2.17 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test/lib/ +file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test/ +file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test/lib/ +flutter_web_plugins +2.17 +file:///C:/Users/FUCHSLAU/flutter/packages/flutter_web_plugins/ +file:///C:/Users/FUCHSLAU/flutter/packages/flutter_web_plugins/lib/ +ernaehrung +2.19 +file:///C:/Users/FUCHSLAU/repos/Uni/Flutter-Ernaehrungsapp/ +file:///C:/Users/FUCHSLAU/repos/Uni/Flutter-Ernaehrungsapp/lib/ 2 diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 1311292..26a9714 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[]},"dependencyGraph":[{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-01 21:59:58.395996","version":"3.7.9"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.0.27\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.1.10\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.1.6\\\\","native_build":false,"dependencies":[]}],"web":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"fluttertoast","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-02 18:10:34.082096","version":"3.7.12"} \ No newline at end of file diff --git a/lib/android/andoird_app.dart b/lib/android/android_app.dart similarity index 100% rename from lib/android/andoird_app.dart rename to lib/android/android_app.dart diff --git a/lib/android/components/founded_search_component.dart b/lib/android/components/founded_search_component.dart index 2d55583..6c8f838 100644 --- a/lib/android/components/founded_search_component.dart +++ b/lib/android/components/founded_search_component.dart @@ -1,9 +1,12 @@ import 'package:assorted_layout_widgets/assorted_layout_widgets.dart'; +import 'package:basic_utils/basic_utils.dart'; import 'package:ernaehrung/android/config/cast_helper.dart'; import 'package:ernaehrung/android/config/statistics.dart'; import 'package:flutter/material.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; +import 'package:fluttertoast/fluttertoast.dart'; import 'package:hive/hive.dart'; +import '../config/format_helper.dart'; import '../models/food.dart'; class SearchedFoodComponent extends StatefulWidget { @@ -18,6 +21,7 @@ class SearchedFoodComponent extends StatefulWidget { class _SearchFoodComponentState extends State { void storeFood() async { + showSuccessToast(); StatisticsService.instance.addItemToMainBox(widget.food, widget.cardName); final mealplanBox = Hive.box(dotenv.env['MEALPLAN_BOX']!); if (!mealplanBox.isOpen){ @@ -26,6 +30,17 @@ class _SearchFoodComponentState extends State { addValuesToList(mealplanBox, widget.cardName, [widget.food]); } + void showSuccessToast(){ + Fluttertoast.showToast( + msg: "${getToastFoodNameString(widget.food)} erfolgreich zu ${StringUtils.capitalize(widget.cardName)} hinzugefügt", + toastLength: Toast.LENGTH_SHORT, + gravity: ToastGravity.BOTTOM, + timeInSecForIosWeb: 5, + backgroundColor: Colors.green, + textColor: Colors.black, + ); + } + void addValuesToList(box, String key, List newValues){ List existingList = castDynamicToListFood(box.get(key)); for(int i = 0; i < newValues.length;i++){ diff --git a/lib/android/components/search_component.dart b/lib/android/components/search_component.dart index f8c41b7..8652164 100644 --- a/lib/android/components/search_component.dart +++ b/lib/android/components/search_component.dart @@ -25,34 +25,54 @@ class _SearchComponentState extends State { @override Widget build(BuildContext context) { return Container( - constraints: const BoxConstraints.expand(), - child: Padding( - padding: const EdgeInsets.fromLTRB(0, 16, 0, 0), - child: Column( - children: [ - TextField( - controller: controller, - decoration: InputDecoration( - prefix: const Icon(Icons.search), - hintText: 'Suche nach Gericht', - border: OutlineInputBorder( - borderRadius: BorderRadius.circular(10), - borderSide: const BorderSide(color: Colors.blue))), - onChanged: findOnChanged, + constraints: const BoxConstraints.expand(), + child: Padding( + padding: const EdgeInsets.fromLTRB(16, 16, 16, 0), // Add padding on the X-axis + child: Column( + children: [ + TextField( + controller: controller, + decoration: InputDecoration( + contentPadding: const EdgeInsets.symmetric(horizontal: 16), // Add padding on the X-axis for text input + prefix: const Icon(Icons.search), + hintText: 'Suche nach Gericht', + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(10), + borderSide: const BorderSide(color: Colors.blue), ), - Expanded( - child: controller.text.isNotEmpty && foundedFood.isNotEmpty - ? ListView.builder( - itemCount: foundedFood.length, - itemBuilder: (context, index) { - final food = foundedFood[index]; - return SearchedFoodComponent(food, widget.cardName); - }) - : EmptyWidget()) - ], - ))); + ), + onChanged: findOnChanged, + ), + Expanded( + child: controller.text.isNotEmpty && foundedFood.isNotEmpty + ? ListView.builder( + itemCount: foundedFood.length, + itemBuilder: (context, index) { + final food = foundedFood[index]; + return SearchedFoodComponent(food, widget.cardName); + }, + ) + : EmptyWidget(), + ), + ], + ), + ), + ); } + void findOnChanged(String searchedFood) async{ + foundedFood = + allFoods + .where((food) => food.name + .toString() + .toLowerCase() + .startsWith(searchedFood.toLowerCase())) + .toList(); + setState(() { + foundedFood; + }); + } +/* void findOnChanged(String searchedFood) async { foundedFood.clear(); if(searchedFood.isEmpty){ @@ -67,4 +87,5 @@ class _SearchComponentState extends State { setState(() => {foundedFood}); } } +*/ } diff --git a/lib/android/config/format_helper.dart b/lib/android/config/format_helper.dart index fc79dd8..752c265 100644 --- a/lib/android/config/format_helper.dart +++ b/lib/android/config/format_helper.dart @@ -12,6 +12,12 @@ String getWeeklyRankingString(String foodName){ return limitedText; } +String getToastFoodNameString(Food food){ + int maxWidth = 25; + String limitedText = food.name.length > maxWidth ? "${food.name.substring(0, maxWidth - 3)} ... " : food.name; + return limitedText; +} + Map> getMapOfDistinctElementsWithCounterAndCalories(List foods){ Map> resultMap = >{}; for(int i = 0; i < foods.length;i++){ diff --git a/lib/android/pages/nav_pages/search_food.dart b/lib/android/pages/nav_pages/search_food.dart index d29caa5..b847313 100644 --- a/lib/android/pages/nav_pages/search_food.dart +++ b/lib/android/pages/nav_pages/search_food.dart @@ -28,8 +28,11 @@ class _SearchFoodPageState extends State { if (snapshot.hasData) { return SearchComponent(snapshot.data!, widget.cardName); }else { - return const Placeholder(); + return const Center( + child: CircularProgressIndicator(), // Loading animation + ); } - }))); + }) + )); } } diff --git a/lib/main.dart b/lib/main.dart index e396c02..ce2e36e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -4,7 +4,7 @@ import 'package:ernaehrung/web/web_app.dart'; import 'package:flutter/material.dart'; import 'package:hive_flutter/hive_flutter.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; -import 'android/andoird_app.dart'; +import 'android/android_app.dart'; import 'package:flutter/foundation.dart' show defaultTargetPlatform, kIsWeb; import 'android/config/setup_todaybox_config.dart'; diff --git a/pubspec.lock b/pubspec.lock index a0ea314..23a8c19 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -304,6 +304,19 @@ packages: description: flutter source: sdk version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + fluttertoast: + dependency: "direct main" + description: + name: fluttertoast + sha256: "474f7d506230897a3cd28c965ec21c5328ae5605fc9c400cd330e9e9d6ac175c" + url: "https://pub.dev" + source: hosted + version: "8.2.2" form_builder_validators: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index 79a821b..72d22a1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -49,7 +49,7 @@ dependencies: basic_utils: ^5.5.4 flutter_form_builder: ^8.0.0 form_builder_validators: ^8.0.0 - + fluttertoast: ^8.0.7 dev_dependencies: flutter_test: -- 2.51.0 From 6ebdb39760363f2e454241be9e60af2973e7dfa0 Mon Sep 17 00:00:00 2001 From: 2211260 <2211260@hs-mannheim.de> Date: Fri, 2 Jun 2023 18:35:07 +0200 Subject: [PATCH 08/32] feat: adjust search styling --- .../components/founded_search_component.dart | 121 ++++++++++-------- 1 file changed, 65 insertions(+), 56 deletions(-) diff --git a/lib/android/components/founded_search_component.dart b/lib/android/components/founded_search_component.dart index 6c8f838..9b68f32 100644 --- a/lib/android/components/founded_search_component.dart +++ b/lib/android/components/founded_search_component.dart @@ -54,64 +54,73 @@ class _SearchFoodComponentState extends State { @override Widget build(BuildContext context) { return Container( - padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 16), - decoration: - const BoxDecoration(color: Color.fromARGB(234, 234, 123, 5)), - child: WrapSuper( - spacing: 32, - wrapType: WrapType.balanced, - wrapFit: WrapFit.larger, - children: [ - Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - SizedBox( - width: MediaQuery.of(context).size.width * 0.6, - child: Text( - widget.food.name, - maxLines: 1, - overflow: TextOverflow.ellipsis, - softWrap: false, - style: const TextStyle( - color: Colors.black, - fontWeight: FontWeight.bold, - fontSize: 20.0), + padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 16), + margin: const EdgeInsets.only(top:8), + decoration: BoxDecoration( + color: Colors.lightGreen, + borderRadius: BorderRadius.circular(5), // Rounded corners with 5px radius + ), + child: WrapSuper( + spacing: 32, + wrapType: WrapType.balanced, + wrapFit: WrapFit.larger, + children: [ + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + SizedBox( + width: MediaQuery.of(context).size.width * 0.8, + child: Text( + widget.food.name, + maxLines: 2, + overflow: TextOverflow.ellipsis, + softWrap: false, + style: const TextStyle( + color: Colors.black, + fontWeight: FontWeight.bold, + fontSize: 20.0, ), ), - SizedBox( - width: MediaQuery.of(context).size.width * 0.6, - child: Text( - "${widget.food.fatg} 100g " - "${widget.food.calories} 100g " - "${widget.food.carbohydrateg.toString()} 100g", - maxLines: 1, - overflow: TextOverflow.ellipsis, - softWrap: false, - style: const TextStyle( - color: Colors.black, - fontWeight: FontWeight.bold, - fontSize: 20.0), - ), - ), - ], - ), - ElevatedButton( - onPressed: () async { - storeFood(); - }, - style: ElevatedButton.styleFrom( - foregroundColor: Colors.white, - backgroundColor: Colors.green, - shadowColor: Colors.greenAccent, - elevation: 3, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(32.0)), - maximumSize: Size( - MediaQuery.of(context).size.width * 0.2, 36), //////// HERE ), - child: const Text('+'), - ) - ], - )); + SizedBox( + width: MediaQuery.of(context).size.width * 0.8, + child: Text( + "${widget.food.calories} kcal/100g", + maxLines: 1, + overflow: TextOverflow.ellipsis, + softWrap: false, + style: const TextStyle( + color: Colors.black, + fontWeight: FontWeight.bold, + fontSize: 20.0, + ), + ), + ), + ], + ), + ElevatedButton( + onPressed: () async { + storeFood(); + }, + style: ElevatedButton.styleFrom( + foregroundColor: Colors.white, + backgroundColor: Colors.green, + shadowColor: Colors.greenAccent, + elevation: 3, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(32.0), + ), + ), + child: const Text( + '+', + style: TextStyle( + fontSize: 25 + ), + ), + ), + ], + ), + ); + } } -- 2.51.0 From af5a4384c694cea4ea2147b4b6387d9e64dce378 Mon Sep 17 00:00:00 2001 From: 2211260 <2211260@hs-mannheim.de> Date: Fri, 2 Jun 2023 18:38:19 +0200 Subject: [PATCH 09/32] feat: make page title black --- lib/android/pages/nav_pages/main_page.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/android/pages/nav_pages/main_page.dart b/lib/android/pages/nav_pages/main_page.dart index d33c526..ab3e1d2 100644 --- a/lib/android/pages/nav_pages/main_page.dart +++ b/lib/android/pages/nav_pages/main_page.dart @@ -38,7 +38,12 @@ class MainPageState extends State { return Scaffold( extendBodyBehindAppBar: false, appBar: AppBar( - title: Text(pages[currentIndex].title), + title: Text( + pages[currentIndex].title, + style: const TextStyle( + color: Colors.black + ), + ), backgroundColor: Colors.transparent, foregroundColor: Colors.grey.shade400, elevation: 0, -- 2.51.0 From 5553a521d13a9273eb3348c3b8570e1a25418b60 Mon Sep 17 00:00:00 2001 From: 2211260 <2211260@hs-mannheim.de> Date: Fri, 2 Jun 2023 19:21:06 +0200 Subject: [PATCH 10/32] feat: styling adjustments --- .flutter-plugins-dependencies | 2 +- .../components/card/card_component.dart | 57 ++++++++++------- .../card/card_data_food_component.dart | 63 ++++++++++--------- .../card/card_food_item_component.dart | 9 ++- .../components/card/card_title_component.dart | 22 ++++--- .../components/founded_search_component.dart | 2 +- lib/android/pages/nav_pages/main_page.dart | 6 +- lib/android/pages/nav_pages/today_page.dart | 6 +- 8 files changed, 97 insertions(+), 70 deletions(-) diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 26a9714..64f681c 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.0.27\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.1.10\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.1.6\\\\","native_build":false,"dependencies":[]}],"web":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"fluttertoast","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-02 18:10:34.082096","version":"3.7.12"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.0.27\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.1.10\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.1.6\\\\","native_build":false,"dependencies":[]}],"web":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"fluttertoast","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-02 19:13:28.478232","version":"3.7.12"} \ No newline at end of file diff --git a/lib/android/components/card/card_component.dart b/lib/android/components/card/card_component.dart index a7a1e68..0f0b634 100644 --- a/lib/android/components/card/card_component.dart +++ b/lib/android/components/card/card_component.dart @@ -8,9 +8,11 @@ import '../../pages/nav_pages/search_food.dart'; class CardComponent extends StatelessWidget { final String title; + final Color color; final List foods; - const CardComponent(this.title, this.foods, {super.key}); + const CardComponent(this.title, this.foods, {super.key, Color? color}) + : color = color ?? Colors.black; Route createRoute(String cardName) { return PageRouteBuilder( @@ -44,38 +46,47 @@ class CardComponent extends StatelessWidget { @override Widget build(BuildContext context) { return Container( - height: 300, - decoration: const BoxDecoration( - color: Color(0xFF6E7BFB), - borderRadius: BorderRadius.all(Radius.circular(16)), + decoration: BoxDecoration( + color: color, + borderRadius: const BorderRadius.all(Radius.circular(12)), ), - margin: const EdgeInsets.fromLTRB(0, 16, 0, 16), + margin: const EdgeInsets.fromLTRB(0, 0, 0, 16), child: Column( children: [ CardTitleComponent( - StringUtils.capitalize(title), "${countCalories(castDynamicToListFood(foods))} Kalorien"), + StringUtils.capitalize(title), + "${countCalories(castDynamicToListFood(foods))} Kalorien", + ), CardDataFoodComponent( - castDynamicToListFood(foods) + castDynamicToListFood(foods), + color, ), Padding( - padding: const EdgeInsets.symmetric(vertical: 0, horizontal: 8), - child: Container( - margin: const EdgeInsets.fromLTRB(0, 8, 0, 0), - child: ElevatedButton( - style: ElevatedButton.styleFrom( - minimumSize: const Size.fromHeight(40), // - backgroundColor: const Color(0xFFffffff), - foregroundColor: const Color(0xFF6E7BFB), - shape: const StadiumBorder(), + padding: const EdgeInsets.only(left: 8, right: 8,bottom: 8), + child: ElevatedButton( + style: ElevatedButton.styleFrom( + minimumSize: const Size.fromHeight(40), + backgroundColor: const Color(0xFFffffff), + foregroundColor: color, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), ), - onPressed: () async { - Navigator.of(context).push(createRoute(title)); - }, - child: Text('Gericht zum ${StringUtils.capitalize(title)} hinzufügen'), + ), + onPressed: () async { + Navigator.of(context).push(createRoute(title)); + }, + child: const Text( + '+ Gericht hinzufügen', + style:TextStyle( + fontSize: 17 + ) , ), ), - ) + ), + ], - )); + ), + ); + } } diff --git a/lib/android/components/card/card_data_food_component.dart b/lib/android/components/card/card_data_food_component.dart index 54151ff..90735ee 100644 --- a/lib/android/components/card/card_data_food_component.dart +++ b/lib/android/components/card/card_data_food_component.dart @@ -4,42 +4,43 @@ import 'package:flutter/material.dart'; class CardDataFoodComponent extends StatelessWidget { final List foods; + final Color color; - const CardDataFoodComponent(this.foods, {Key? key}) : super(key: key); + const CardDataFoodComponent(this.foods,this.color, {Key? key,}) : super(key: key); @override Widget build(BuildContext context) { - return SizedBox( - height: 180, - child: Padding( - padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 8), - child: foods.isNotEmpty - ? SingleChildScrollView( - child: Column( - mainAxisAlignment: MainAxisAlignment.start, - children: [ - ListView.builder( - physics: const NeverScrollableScrollPhysics(), - shrinkWrap: true, - itemCount: foods.length, - itemBuilder: (context, i) { - return Column( - children: [ - CardFoodItemComponent(foods[i]), - Divider( - color: Colors.grey.shade300, - thickness: 1.2, - ) - ], - ); - }) - ], + return Padding( + padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 8), + child: foods.isNotEmpty ? + Column( + mainAxisAlignment: MainAxisAlignment.start, + children: [ + ListView.builder( + physics: const NeverScrollableScrollPhysics(), + shrinkWrap: true, + itemCount: foods.length, + itemBuilder: (context, i) { + return Column( + children: [ + CardFoodItemComponent(foods[i]), + Divider( + color: Colors.grey.shade300, + thickness: 1.2, + ) + ], + ); + }) + ], + ) + : const Center( + child: Text( + "Füge jetzt neue Gerichte hinzu!", + style: TextStyle( + fontSize: 14, + color: Colors.white ), ) - : const Center( - child: Text( - "Die Liste ist momentan leer, aber Sie können sie ändern!"), - )), - ); + )); } } diff --git a/lib/android/components/card/card_food_item_component.dart b/lib/android/components/card/card_food_item_component.dart index 6d413ab..fbad79c 100644 --- a/lib/android/components/card/card_food_item_component.dart +++ b/lib/android/components/card/card_food_item_component.dart @@ -17,11 +17,16 @@ class CardFoodItemComponent extends StatelessWidget { children: [ Text( food.name.toString(), - style: const TextStyle(color: Colors.white), + style: const TextStyle( + color: Colors.white, + fontSize: 17, + fontWeight: FontWeight.bold, + ), softWrap: true, + maxLines: 2, ), Text( - food.calories.toString(), + "\n${food.calories.toString()} kcal | 100g", style: const TextStyle(color: Colors.white), ), ], diff --git a/lib/android/components/card/card_title_component.dart b/lib/android/components/card/card_title_component.dart index 0e099b2..2fd86cc 100644 --- a/lib/android/components/card/card_title_component.dart +++ b/lib/android/components/card/card_title_component.dart @@ -11,18 +11,26 @@ class CardTitleComponent extends StatelessWidget { return Container( decoration: const BoxDecoration( color: Colors.white, - borderRadius: BorderRadius.all(Radius.circular(16)) + borderRadius: BorderRadius.all(Radius.circular(12)) ), child: Padding( padding: - const EdgeInsets - .symmetric( - vertical: 16, - horizontal: 8 - ), + const EdgeInsets.symmetric(vertical: 16,horizontal: 16), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [Text(title), Text(calories)], + children: [ + Text(title, + style: const TextStyle( + fontSize: 20 + ), + ), + Text( + calories, + style: const TextStyle( + fontSize: 17 + ), + ) + ], ), ), ); diff --git a/lib/android/components/founded_search_component.dart b/lib/android/components/founded_search_component.dart index 9b68f32..ddcd786 100644 --- a/lib/android/components/founded_search_component.dart +++ b/lib/android/components/founded_search_component.dart @@ -85,7 +85,7 @@ class _SearchFoodComponentState extends State { SizedBox( width: MediaQuery.of(context).size.width * 0.8, child: Text( - "${widget.food.calories} kcal/100g", + "${widget.food.calories} kcal | 100g", maxLines: 1, overflow: TextOverflow.ellipsis, softWrap: false, diff --git a/lib/android/pages/nav_pages/main_page.dart b/lib/android/pages/nav_pages/main_page.dart index ab3e1d2..abce451 100644 --- a/lib/android/pages/nav_pages/main_page.dart +++ b/lib/android/pages/nav_pages/main_page.dart @@ -14,9 +14,9 @@ class MainPage extends StatefulWidget { class MainPageState extends State { List pages = [ - const TodayPage(title: 'Today'), - const MealPlanPage(title: 'Meal Plan'), - const ProgressPage(title: 'Progress') + const TodayPage(title: 'Essensplan'), + const MealPlanPage(title: 'Gesamtübersicht'), + const ProgressPage(title: 'Statistiken') ]; int currentIndex = 0; diff --git a/lib/android/pages/nav_pages/today_page.dart b/lib/android/pages/nav_pages/today_page.dart index 4f894e6..a653411 100644 --- a/lib/android/pages/nav_pages/today_page.dart +++ b/lib/android/pages/nav_pages/today_page.dart @@ -7,7 +7,6 @@ import 'package:hive_flutter/adapters.dart'; class TodayPage extends StatefulWidget { final String title; final Color backgroundColor = const Color(0xff47a44b); - const TodayPage({Key? key, required this.title}) : super(key: key); @override @@ -15,6 +14,8 @@ class TodayPage extends StatefulWidget { } class _TodayPageState extends State { + final List colors = [Colors.teal,Colors.red,Colors.green]; + @override Widget build(BuildContext context) { return Scaffold( @@ -30,7 +31,8 @@ class _TodayPageState extends State { String mealTypeAsString = box.keyAt(i).toString(); return CardComponent( mealTypeAsString, - StatisticsService.instance.getMealsOfTodayByMealtype(mealTypeAsString) + StatisticsService.instance.getMealsOfTodayByMealtype(mealTypeAsString), + color: colors[i], ); }); }))); -- 2.51.0 From fd4e07fc8c445a0cd62e3504ce1e6e2661b031f4 Mon Sep 17 00:00:00 2001 From: 2211260 <2211260@hs-mannheim.de> Date: Fri, 2 Jun 2023 20:02:32 +0200 Subject: [PATCH 11/32] feat: adjust list logic on today page --- .../components/card/card_component.dart | 4 +- .../card/card_data_food_component.dart | 14 +- .../card/card_food_item_component.dart | 10 +- .../components/founded_search_component.dart | 130 ++++++++++++++---- lib/android/config/format_helper.dart | 1 + 5 files changed, 123 insertions(+), 36 deletions(-) diff --git a/lib/android/components/card/card_component.dart b/lib/android/components/card/card_component.dart index 0f0b634..a653b97 100644 --- a/lib/android/components/card/card_component.dart +++ b/lib/android/components/card/card_component.dart @@ -9,7 +9,7 @@ import '../../pages/nav_pages/search_food.dart'; class CardComponent extends StatelessWidget { final String title; final Color color; - final List foods; + final List foods; const CardComponent(this.title, this.foods, {super.key, Color? color}) : color = color ?? Colors.black; @@ -58,7 +58,7 @@ class CardComponent extends StatelessWidget { "${countCalories(castDynamicToListFood(foods))} Kalorien", ), CardDataFoodComponent( - castDynamicToListFood(foods), + foods, color, ), Padding( diff --git a/lib/android/components/card/card_data_food_component.dart b/lib/android/components/card/card_data_food_component.dart index 90735ee..12cc653 100644 --- a/lib/android/components/card/card_data_food_component.dart +++ b/lib/android/components/card/card_data_food_component.dart @@ -2,6 +2,8 @@ import 'package:ernaehrung/android/components/card/card_food_item_component.dart import 'package:ernaehrung/android/models/food.dart'; import 'package:flutter/material.dart'; +import '../../config/format_helper.dart'; + class CardDataFoodComponent extends StatelessWidget { final List foods; final Color color; @@ -19,11 +21,19 @@ class CardDataFoodComponent extends StatelessWidget { ListView.builder( physics: const NeverScrollableScrollPhysics(), shrinkWrap: true, - itemCount: foods.length, + itemCount: getMapOfDistinctElementsWithCounterAndCalories( + foods) + .keys + .length, itemBuilder: (context, i) { + Map> map = + getMapOfDistinctElementsWithCounterAndCalories( + foods); + String foodName = map.keys.elementAt(i); + List values = map.values.elementAt(i); return Column( children: [ - CardFoodItemComponent(foods[i]), + CardFoodItemComponent(foodName,values), Divider( color: Colors.grey.shade300, thickness: 1.2, diff --git a/lib/android/components/card/card_food_item_component.dart b/lib/android/components/card/card_food_item_component.dart index fbad79c..5041a54 100644 --- a/lib/android/components/card/card_food_item_component.dart +++ b/lib/android/components/card/card_food_item_component.dart @@ -1,10 +1,10 @@ -import 'package:ernaehrung/android/models/food.dart'; import 'package:flutter/material.dart'; class CardFoodItemComponent extends StatelessWidget { - final Food food; + final String foodName; + final List countAndCalories; // [count, calories] - const CardFoodItemComponent(this.food, {Key? key}) : super(key: key); + const CardFoodItemComponent(this.foodName,this.countAndCalories, {Key? key}) : super(key: key); @override Widget build(BuildContext context) { @@ -16,7 +16,7 @@ class CardFoodItemComponent extends StatelessWidget { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - food.name.toString(), + "$foodName - ${countAndCalories[0] * 100}g", style: const TextStyle( color: Colors.white, fontSize: 17, @@ -26,7 +26,7 @@ class CardFoodItemComponent extends StatelessWidget { maxLines: 2, ), Text( - "\n${food.calories.toString()} kcal | 100g", + "\n${countAndCalories[1]} kcal | 100g", style: const TextStyle(color: Colors.white), ), ], diff --git a/lib/android/components/founded_search_component.dart b/lib/android/components/founded_search_component.dart index ddcd786..07528ee 100644 --- a/lib/android/components/founded_search_component.dart +++ b/lib/android/components/founded_search_component.dart @@ -19,15 +19,17 @@ class SearchedFoodComponent extends StatefulWidget { } class _SearchFoodComponentState extends State { - - void storeFood() async { - showSuccessToast(); - StatisticsService.instance.addItemToMainBox(widget.food, widget.cardName); + int counter = 1; + void storeFood(int counter) async { final mealplanBox = Hive.box(dotenv.env['MEALPLAN_BOX']!); if (!mealplanBox.isOpen){ Hive.openBox(dotenv.env['MEALPLAN_BOX']!); } - addValuesToList(mealplanBox, widget.cardName, [widget.food]); + for(int i = 0; i < counter; i++){ + StatisticsService.instance.addItemToMainBox(widget.food, widget.cardName); + addValuesToList(mealplanBox, widget.cardName, [widget.food]); + } + showSuccessToast(); } void showSuccessToast(){ @@ -53,12 +55,13 @@ class _SearchFoodComponentState extends State { @override Widget build(BuildContext context) { + return Container( padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 16), - margin: const EdgeInsets.only(top:8), + margin: const EdgeInsets.only(top: 8), decoration: BoxDecoration( color: Colors.lightGreen, - borderRadius: BorderRadius.circular(5), // Rounded corners with 5px radius + borderRadius: BorderRadius.circular(5), ), child: WrapSuper( spacing: 32, @@ -69,7 +72,7 @@ class _SearchFoodComponentState extends State { crossAxisAlignment: CrossAxisAlignment.start, children: [ SizedBox( - width: MediaQuery.of(context).size.width * 0.8, + width: MediaQuery.of(context).size.width * 0.6, child: Text( widget.food.name, maxLines: 2, @@ -83,7 +86,7 @@ class _SearchFoodComponentState extends State { ), ), SizedBox( - width: MediaQuery.of(context).size.width * 0.8, + width: MediaQuery.of(context).size.width * 0.6, child: Text( "${widget.food.calories} kcal | 100g", maxLines: 1, @@ -98,29 +101,102 @@ class _SearchFoodComponentState extends State { ), ], ), - ElevatedButton( - onPressed: () async { - storeFood(); - }, - style: ElevatedButton.styleFrom( - foregroundColor: Colors.white, - backgroundColor: Colors.green, - shadowColor: Colors.greenAccent, - elevation: 3, - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(32.0), - ), - ), - child: const Text( - '+', - style: TextStyle( - fontSize: 25 - ), + Padding( + padding: const EdgeInsets.only(top:12), + child: Row( + children: [ + Padding( + padding: const EdgeInsets.only(right :12), + child: Container( + width: 40, + height: 40, + decoration: BoxDecoration( + color: Colors.green, + borderRadius: BorderRadius.circular(5), + border: Border.all(color: Colors.white), + ), + child: InkWell( + onTap: () { + setState(() { + counter = counter > 1 ? counter - 1 : 1; + }); + }, + child: const Center( + child: Text( + "-", + style: TextStyle(fontSize: 24, color: Colors.white, fontWeight: FontWeight.bold), + ), + ), + ), + ), + ), + + SizedBox( + width: 20, + child: Text( + counter.toString(), + style: const TextStyle(fontSize: 24, color: Colors.white, fontWeight: FontWeight.bold), + textAlign: TextAlign.center, + ), + ), + Padding( + padding: const EdgeInsets.only(left:12), + child: Container( + width: 40, + height: 38, + decoration: BoxDecoration( + color: Colors.green, + borderRadius: BorderRadius.circular(5), + border: Border.all(color: Colors.white), + ), + child: InkWell( + onTap: () { + setState(() { + counter++; + }); + }, + child: const Center( + child: Text( + "+", + style: TextStyle(fontSize: 24, color: Colors.white, fontWeight: FontWeight.bold), + ), + ), + ), + ), + ) + + ], ), ), + Padding( + padding: const EdgeInsets.only(top:12), + child: ElevatedButton( + onPressed: () async { + storeFood(counter); + }, + style: ElevatedButton.styleFrom( + foregroundColor: Colors.white, + backgroundColor: Colors.green, + shadowColor: Colors.greenAccent, + elevation: 3, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(5.0), + ), + ), + child: const Text( + '+', + style: TextStyle(fontSize: 25), + ), + ), + ) + ], ), ); + + + + } } diff --git a/lib/android/config/format_helper.dart b/lib/android/config/format_helper.dart index 752c265..89dc94e 100644 --- a/lib/android/config/format_helper.dart +++ b/lib/android/config/format_helper.dart @@ -30,6 +30,7 @@ Map> getMapOfDistinctElementsWithCounterAndCalories(List return resultMap; } + List getListOfDistinctElements(List foods){ List result = []; for(int i = 0; i < foods.length;i++){ -- 2.51.0 From 67da75fb3ea6a31dd056004cdbe3665e6a57282a Mon Sep 17 00:00:00 2001 From: 2211260 <2211260@hs-mannheim.de> Date: Fri, 2 Jun 2023 20:21:16 +0200 Subject: [PATCH 12/32] feat: add goal line to progress chart --- lib/android/config/statistics.dart | 5 +++++ lib/android/pages/nav_pages/progress_page.dart | 14 ++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/lib/android/config/statistics.dart b/lib/android/config/statistics.dart index 09c289b..67df099 100644 --- a/lib/android/config/statistics.dart +++ b/lib/android/config/statistics.dart @@ -214,6 +214,11 @@ class StatisticsService { return sum as int; } + double getCaloryTargetForOneDay(){ + final Box userBox = Hive.box("USER_BOX"); + return userBox.get("USER").kalorien.toDouble(); + } + List getAllEatenIngredientsForTodayStatistics(double dayLen){ Box box = Hive.box(todayStatisticsBoxName); final Box userBox = Hive.box("USER_BOX"); diff --git a/lib/android/pages/nav_pages/progress_page.dart b/lib/android/pages/nav_pages/progress_page.dart index d2c200b..a19aafb 100644 --- a/lib/android/pages/nav_pages/progress_page.dart +++ b/lib/android/pages/nav_pages/progress_page.dart @@ -169,6 +169,20 @@ class ProgressPage extends StatelessWidget { barGroups: value, gridData: FlGridData(show: false), alignment: BarChartAlignment.spaceAround, + extraLinesData: ExtraLinesData( + horizontalLines: [ + HorizontalLine( + y: StatisticsService.instance.getCaloryTargetForOneDay(), // Specify the y-value where you want the line to be positioned + color: Colors.black, // Change the color as per your requirement + strokeWidth: 2, // Adjust the width as needed + dashArray: [3, 2], + label: HorizontalLineLabel( + show: true, + labelResolver: (x) => "Zielwert" + ) + ), + ], + ), ), ), ), -- 2.51.0 From 6085297b1c00e46f7771bbdbfafab45bdc03109d Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Sat, 3 Jun 2023 00:40:40 +0200 Subject: [PATCH 13/32] settings page --- .dart_tool/package_config.json | 8 +- .dart_tool/package_config_subset | 4 + .flutter-plugins-dependencies | 2 +- lib/android/components/form/form_builder.dart | 148 ++++++++++++++ .../form_builder_text_field_component.dart | 96 +++++++++ lib/android/models/form_builder.dart | 26 +++ lib/android/pages/nav_pages/main_page.dart | 31 ++- lib/android/pages/settings.dart | 25 +++ lib/android/pages/welcome.dart | 187 +----------------- pubspec.lock | 8 + pubspec.yaml | 1 + 11 files changed, 345 insertions(+), 191 deletions(-) create mode 100644 lib/android/components/form/form_builder.dart create mode 100644 lib/android/components/form/form_builder_text_field_component.dart create mode 100644 lib/android/models/form_builder.dart create mode 100644 lib/android/pages/settings.dart diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index efef7a0..9cfbe85 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -229,6 +229,12 @@ "packageUri": "lib/", "languageVersion": "2.17" }, + { + "name": "flutter_profile_picture", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, { "name": "flutter_test", "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test", @@ -608,7 +614,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-01T16:44:17.796384Z", + "generated": "2023-06-02T11:38:29.193689Z", "generator": "pub", "generatorVersion": "2.19.6" } diff --git a/.dart_tool/package_config_subset b/.dart_tool/package_config_subset index fe09e4c..76af3b9 100644 --- a/.dart_tool/package_config_subset +++ b/.dart_tool/package_config_subset @@ -142,6 +142,10 @@ flutter_lints 2.17 file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/ file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ +flutter_profile_picture +2.12 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0/lib/ form_builder_validators 2.19 file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/ diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 1311292..3457623 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[]},"dependencyGraph":[{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-01 21:59:58.395996","version":"3.7.9"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[]},"dependencyGraph":[{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-02 13:45:10.283479","version":"3.7.9"} \ No newline at end of file diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart new file mode 100644 index 0000000..9874c44 --- /dev/null +++ b/lib/android/components/form/form_builder.dart @@ -0,0 +1,148 @@ +import 'package:ernaehrung/android/components/form/form_builder_text_field_component.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_form_builder/flutter_form_builder.dart'; +import 'package:hive/hive.dart'; +import '../../models/form_builder.dart'; +import '../../models/user.dart'; +import '../../pages/nav_pages/main_page.dart'; + +class FormBuilderComponent extends StatefulWidget { + final bool lockTextFields; + + const FormBuilderComponent({Key? key, required this.lockTextFields}) + : super(key: key); + + @override + State createState() => _FormBuilderComponentState(); +} + +class _FormBuilderComponentState extends State { + final formKey = GlobalKey(); + + final List listOfTextField = [ + FormTextField( + "vorname", + TextInputType.text, + 30, + "Der Vorname sollte maximal 30 Zeichen lang sein", + "Der Vorname sollte mindestens 2 Zeichen lang sein", + 2, + null, + null, + null, + null), + FormTextField( + "nachname", + TextInputType.text, + 30, + "Der Nachname sollte maximal 30 Zeichen lang sein", + "Der Nachname sollte mindestens 2 Zeichen lang sein", + 2, + null, + null, + null, + null), + FormTextField( + "gewicht", + TextInputType.number, + null, + null, + null, + null, + 200, + 10, + "Der Gewicht sollte maximal 200 kg sein", + "Der Gewicht sollte mindestens 10 kg sein"), + FormTextField( + "groesse", + TextInputType.number, + null, + null, + null, + null, + 230, + 60, + "Die Größe sollte maximal 230cm sein", + "Die Größe sollte mindestens 60cm sein"), + FormTextField( + "alter", + TextInputType.number, + null, + null, + null, + null, + 99, + 6, + "Das Alter sollte maximal 99 Jahre alt sein", + "Das Alter sollte mindestens 6 Jahre alt sein"), + FormTextField( + "kalorien", + TextInputType.number, + null, + null, + null, + null, + 30000, + 1000, + "Die Kalorienanzahl sollte mindestens 30000 Kcal sein", + "Die Kalorienanzahl sollte mindestens 1000 Kcal sein") + ]; + + @override + Widget build(BuildContext context) { + print("widget enable ${widget.lockTextFields}"); + return FormBuilder( + key: formKey, + child: Padding( + padding: const EdgeInsets.all(8), + child: SingleChildScrollView( + child: Column( + children: [ + ListView.builder( + primary: false, + itemCount: listOfTextField.length, + shrinkWrap: true, + itemBuilder: (context, index) { + print(listOfTextField[index]); + return FormBuilderTextFieldComponent( + true, listOfTextField[index]); + }), + Container( + margin: + const EdgeInsets.symmetric(vertical: 8, horizontal: 0), + width: double.infinity, + child: ElevatedButton( + style: ElevatedButton.styleFrom( + minimumSize: const Size.fromHeight(40), // + backgroundColor: const Color(0xFF6E7BFB), + foregroundColor: const Color(0xFFffffff), + shape: const StadiumBorder(), + ), + onPressed: () { + final Box box = Hive.box("USER_BOX"); + box.put( + "USER", + User( + formKey.currentState?.fields['vorname']?.value, + formKey.currentState?.fields['nachname']?.value, + int.parse(formKey + .currentState?.fields['gewicht']?.value), + int.parse(formKey + .currentState?.fields['groesse']?.value), + int.parse( + formKey.currentState?.fields['alter']?.value), + int.parse(formKey + .currentState?.fields['kalorien']?.value))); + + print(box.get("USER")); + + Navigator.of(context).pushReplacement(MaterialPageRoute( + builder: (BuildContext context) => const MainPage())); + }, + child: const Text("Eingaben bestätigen"), + )), + ], + )), + )); + } +} diff --git a/lib/android/components/form/form_builder_text_field_component.dart b/lib/android/components/form/form_builder_text_field_component.dart new file mode 100644 index 0000000..1c18a35 --- /dev/null +++ b/lib/android/components/form/form_builder_text_field_component.dart @@ -0,0 +1,96 @@ +import 'package:basic_utils/basic_utils.dart'; +import 'package:ernaehrung/android/models/form_builder.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_form_builder/flutter_form_builder.dart'; +import 'package:form_builder_validators/form_builder_validators.dart'; + +class FormBuilderTextFieldComponent extends StatefulWidget { + final bool isSettingsPage; + final FormTextField formTextField; + + const FormBuilderTextFieldComponent(this.isSettingsPage, this.formTextField, + {super.key}); + + @override + State createState() => _FormBuilderTextFieldComponentState(); +} + +class _FormBuilderTextFieldComponentState extends State { + bool enable = false; + + @override + Widget build(BuildContext context) { + return Container( + margin: const EdgeInsets.symmetric(vertical: 8, horizontal: 0), + child: widget.isSettingsPage + ? Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Expanded( + child: + TextFieldChild(widget.isSettingsPage, widget.formTextField, enable: enable)), + enable + ? IconButton( + onPressed: () async { + setState(() { + enable = !enable; + }); + }, + icon: const Icon(Icons.lock_open)) + : IconButton( + onPressed: () async { + setState(() { + enable = !enable; + }); + }, + icon: const Icon(Icons.lock)) + ], + ) + : TextFieldChild(widget.isSettingsPage, widget.formTextField), + ); + } +} + + +class TextFieldChild extends StatelessWidget { + final bool isSettingsPage; + final FormTextField formTextField; + final bool? enable; + + const TextFieldChild(this.isSettingsPage, this.formTextField, + {super.key, this.enable = true}); + + + @override + Widget build(BuildContext context) { + return FormBuilderTextField( + name: formTextField.title, + enabled: enable!, + decoration: InputDecoration( + border: const OutlineInputBorder( + borderRadius: BorderRadius.all(Radius.circular(10.0))), + filled: true, + hintStyle: TextStyle(color: Colors.grey.shade400), + hintText: StringUtils.capitalize(formTextField.title), + labelText: StringUtils.capitalize(formTextField.title), + fillColor: Colors.white70), + keyboardType: TextInputType.number, + maxLength: TextInputType.number == formTextField.textInputType ? 7 : 30, + autovalidateMode: AutovalidateMode.onUserInteraction, + validator: FormBuilderValidators.compose([ + FormBuilderValidators.required(), + TextInputType.number == formTextField.textInputType + ? FormBuilderValidators.max(formTextField.numericMax!, + errorText: formTextField.numericMaxErrorMessage) + : FormBuilderValidators.maxLength(30, + errorText: formTextField.maxLengthErrorMessage), + TextInputType.number == formTextField.textInputType + ? FormBuilderValidators.min(formTextField.numericMin!, + errorText: formTextField.numericMinErrorMessage) + : FormBuilderValidators.minLength(2, + errorText: formTextField.minLengthErrorMessage) + ]), + ); + } +} diff --git a/lib/android/models/form_builder.dart b/lib/android/models/form_builder.dart new file mode 100644 index 0000000..ce4502f --- /dev/null +++ b/lib/android/models/form_builder.dart @@ -0,0 +1,26 @@ +import 'package:flutter/material.dart'; + +class FormTextField{ + final String title; + final TextInputType textInputType; + final num? maxLength; + final String? maxLengthErrorMessage; + final String? minLengthErrorMessage; + final num? minLength; + final num? numericMax; + final num? numericMin; + final String? numericMaxErrorMessage; + final String? numericMinErrorMessage; + + FormTextField( + this.title, + this.textInputType, + this.maxLength, + this.maxLengthErrorMessage, + this.minLengthErrorMessage, + this.minLength, + this.numericMax, + this.numericMin, + this.numericMaxErrorMessage, + this.numericMinErrorMessage); +} diff --git a/lib/android/pages/nav_pages/main_page.dart b/lib/android/pages/nav_pages/main_page.dart index d33c526..faa05c0 100644 --- a/lib/android/pages/nav_pages/main_page.dart +++ b/lib/android/pages/nav_pages/main_page.dart @@ -2,7 +2,11 @@ import 'package:ernaehrung/android/components/meal_page_text/days_component.dart import 'package:ernaehrung/android/config/statistics.dart'; import 'package:ernaehrung/android/pages/nav_pages/progress_page.dart'; import 'package:ernaehrung/android/pages/nav_pages/today_page.dart'; +import 'package:ernaehrung/android/pages/settings.dart'; import 'package:flutter/material.dart'; +import 'package:flutter_profile_picture/flutter_profile_picture.dart'; +import 'package:hive/hive.dart'; +import '../../models/user.dart'; import 'meal_plan_page.dart'; class MainPage extends StatefulWidget { @@ -24,9 +28,10 @@ class MainPageState extends State { void onTap(int index) { setState(() { currentIndex = index; - if(currentIndex == 1){ - StatisticsService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.day); - }else if(currentIndex == 2){ + if (currentIndex == 1) { + StatisticsService.instance + .updateStatisticsTodayBoxByTimespan(TimeSpan.day); + } else if (currentIndex == 2) { StatisticsService.instance.updateProgressBoxValues(); } pages[currentIndex]; @@ -35,10 +40,28 @@ class MainPageState extends State { @override Widget build(BuildContext context) { + final Box box = Hive.box("USER_BOX"); return Scaffold( extendBodyBehindAppBar: false, appBar: AppBar( - title: Text(pages[currentIndex].title), + title: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text(pages[currentIndex].title), + ElevatedButton( + onPressed: () async { + Navigator.push( + context, + MaterialPageRoute(builder: (context) => const SettingsPage()), + ); + }, + child: ProfilePicture( + name: "${box.get("FIRST_NAME_FIELD")}", + radius: 16, + fontsize: 14, + )) + ], + ), backgroundColor: Colors.transparent, foregroundColor: Colors.grey.shade400, elevation: 0, diff --git a/lib/android/pages/settings.dart b/lib/android/pages/settings.dart new file mode 100644 index 0000000..0e86108 --- /dev/null +++ b/lib/android/pages/settings.dart @@ -0,0 +1,25 @@ +import 'package:flutter/material.dart'; + +import '../components/form/form_builder.dart'; + +class SettingsPage extends StatefulWidget { + const SettingsPage({Key? key}) : super(key: key); + + @override + State createState() => _SettingsPageState(); +} + +class _SettingsPageState extends State { + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + leading: BackButton( + onPressed: () async => Navigator.of(context).pop(), + ), + title: const Text('Einstellungen'), + ), + body: const FormBuilderComponent(lockTextFields: true), + ); + } +} \ No newline at end of file diff --git a/lib/android/pages/welcome.dart b/lib/android/pages/welcome.dart index b70d208..0669548 100644 --- a/lib/android/pages/welcome.dart +++ b/lib/android/pages/welcome.dart @@ -1,10 +1,5 @@ -import 'package:ernaehrung/android/pages/nav_pages/main_page.dart'; +import 'package:ernaehrung/android/components/form/form_builder.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_form_builder/flutter_form_builder.dart'; -import 'package:form_builder_validators/form_builder_validators.dart'; -import 'package:hive_flutter/hive_flutter.dart'; - -import '../models/user.dart'; class OnboardingPage extends StatefulWidget { const OnboardingPage({Key? key}) : super(key: key); @@ -14,193 +9,15 @@ class OnboardingPage extends StatefulWidget { } class _OnboardingPageState extends State { - InputDecoration decoration(String hintText) { - return InputDecoration( - border: const OutlineInputBorder( - borderRadius: BorderRadius.all(Radius.circular(10.0))), - filled: true, - hintStyle: TextStyle(color: Colors.grey.shade400), - hintText: hintText, - labelText: hintText, - fillColor: Colors.white70); - } @override Widget build(BuildContext context) { - final formKey = GlobalKey(); - return Scaffold( appBar: AppBar( title: const Text("Welcome"), backgroundColor: Colors.grey.shade100, ), - body: FormBuilder( - key: formKey, - child: Padding( - padding: const EdgeInsets.all(8), - child: SingleChildScrollView( - child: Column( - children: [ - Container( - margin: - const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: FormBuilderTextField( - name: 'vorname', - decoration: decoration("Vorname"), - keyboardType: TextInputType.text, - maxLength: 30, - autovalidateMode: AutovalidateMode.onUserInteraction, - validator: FormBuilderValidators.compose([ - FormBuilderValidators.required(), - FormBuilderValidators.minLength(2, - errorText: - "Die Name sollte mindestens 2 Zeichen lang sein"), - FormBuilderValidators.maxLength(30, - errorText: - "Die Name sollte maximal 30 Zeichen lang sein") - ]), - ), - ), - Container( - margin: - const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: FormBuilderTextField( - name: 'nachname', - decoration: decoration("Nachname"), - keyboardType: TextInputType.text, - maxLength: 30, - autovalidateMode: AutovalidateMode.onUserInteraction, - validator: FormBuilderValidators.compose([ - FormBuilderValidators.required(), - FormBuilderValidators.minLength(2, - errorText: - "Die Nachname sollte mindestens 2 Zeichen lang sein"), - FormBuilderValidators.maxLength(30, - errorText: - "Die Nachname sollte maximal 30 Zeichen lang sein") - ]), - ), - ), - Container( - margin: - const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: FormBuilderTextField( - name: 'gewicht', - decoration: decoration("Gewicht"), - keyboardType: TextInputType.number, - maxLength: 7, - autovalidateMode: AutovalidateMode.onUserInteraction, - validator: FormBuilderValidators.compose([ - FormBuilderValidators.required(), - FormBuilderValidators.numeric( - errorText: - "Der Gewicht sollte mindestens 10 kg sein"), - FormBuilderValidators.max(200, - errorText: - "Der Gewicht sollte maximal 200 kg sein"), - FormBuilderValidators.min(10, - errorText: - "Der Gewicht sollte mindestens 10 kg sein") - ]), - ), - ), - Container( - margin: - const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: FormBuilderTextField( - name: 'groesse', - decoration: decoration("Größe"), - keyboardType: TextInputType.number, - maxLength: 7, - autovalidateMode: AutovalidateMode.onUserInteraction, - validator: FormBuilderValidators.compose([ - FormBuilderValidators.required(), - FormBuilderValidators.numeric( - errorText: "Die Größe sollte mindestens 60cm sein"), - FormBuilderValidators.max(230, - errorText: "Die Größe sollte maximal 230cm sein"), - FormBuilderValidators.min(60, - errorText: "Die Größe sollte mindestens 60cm sein") - ]), - ), - ), - Container( - margin: - const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: FormBuilderTextField( - name: 'alter', - decoration: decoration("Alter"), - keyboardType: TextInputType.number, - maxLength: 7, - autovalidateMode: AutovalidateMode.onUserInteraction, - validator: FormBuilderValidators.compose([ - FormBuilderValidators.required(), - FormBuilderValidators.numeric( - errorText: - "Das Alter sollte mindestens 6 Jahre alt sein"), - FormBuilderValidators.max(99, - errorText: - "Das Alter sollte maximal 99 Jahre alt sein"), - FormBuilderValidators.min(6, - errorText: - "Das Alter sollte mindestens 6 Jahre alt sein") - ]), - ), - ), - Container( - margin: - const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: FormBuilderTextField( - name: 'kalorien', - decoration: - decoration("gewünschte Kalorienzufuhr: min. 1000"), - keyboardType: TextInputType.number, - maxLength: 7, - autovalidateMode: AutovalidateMode.onUserInteraction, - validator: FormBuilderValidators.compose([ - FormBuilderValidators.required(), - FormBuilderValidators.numeric( - errorText: - "Die Kalorienanzahl sollte mindestens 1000 Kcal sein"), - FormBuilderValidators.max(30000), - FormBuilderValidators.min(1000, - errorText: - "Die Kalorienanzahl sollte mindestens 1000 Kcal sein") - ]), - ), - ), - Container( - margin: const EdgeInsets.symmetric( - vertical: 8, horizontal: 0), - width: double.infinity, - child: ElevatedButton( - style: ElevatedButton.styleFrom( - minimumSize: const Size.fromHeight(40), // - backgroundColor: const Color(0xFF6E7BFB), - foregroundColor: const Color(0xFFffffff), - shape: const StadiumBorder(), - ), - onPressed: () { - final Box box = Hive.box("USER_BOX"); - box.put("USER", User( - formKey.currentState?.fields['vorname']?.value, - formKey.currentState?.fields['nachname']?.value, - int.parse(formKey.currentState?.fields['gewicht']?.value), - int.parse(formKey.currentState?.fields['groesse']?.value), - int.parse(formKey.currentState?.fields['alter']?.value), - int.parse(formKey.currentState?.fields['kalorien']?.value) - )); - - Navigator - .of(context) - .pushReplacement(MaterialPageRoute(builder: (BuildContext context) => const MainPage())); - }, - child: const Text("Eingaben bestätigen"), - )), - ], - ), - ), - )), + body: const FormBuilderComponent(lockTextFields: false,) ); } } diff --git a/pubspec.lock b/pubspec.lock index a0ea314..82401db 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -299,6 +299,14 @@ packages: description: flutter source: sdk version: "0.0.0" + flutter_profile_picture: + dependency: "direct main" + description: + name: flutter_profile_picture + sha256: "067caecef0d7162d3858eaca3c5859cbbb21b3e5704c2bc5b96b50ffe267f45d" + url: "https://pub.dev" + source: hosted + version: "2.0.0" flutter_test: dependency: "direct dev" description: flutter diff --git a/pubspec.yaml b/pubspec.yaml index 79a821b..4e068ef 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -49,6 +49,7 @@ dependencies: basic_utils: ^5.5.4 flutter_form_builder: ^8.0.0 form_builder_validators: ^8.0.0 + flutter_profile_picture: ^2.0.0 dev_dependencies: -- 2.51.0 From 5335625c99f93ee587dfe35f8b99e5a3e9d7fb17 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Sat, 3 Jun 2023 00:46:54 +0200 Subject: [PATCH 14/32] settings page --- .dart_tool/package_config.json | 206 +++++++-------- .dart_tool/package_config_subset | 432 +++++++++++++++---------------- 2 files changed, 319 insertions(+), 319 deletions(-) diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index f7f6132..cab5e8e 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -3,613 +3,613 @@ "packages": [ { "name": "_fe_analyzer_shared", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "analyzer", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "animate_gradient", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "args", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "assorted_layout_widgets", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "async", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "basic_utils", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "boolean_selector", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build_config", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_daemon", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_resolvers", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "build_runner", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_runner_core", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "built_collection", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "built_value", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "card_swiper", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "characters", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "checked_yaml", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "clock", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "code_builder", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "collection", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "convert", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "crypto", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "cupertino_icons", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "dart_style", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "empty_widget", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "equatable", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fake_async", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "ffi", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "file", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fixnum", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "fl_chart", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter", + "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_dotenv", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_form_builder", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "flutter_lints", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_localizations", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations", + "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_localizations", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_test", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test", + "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_test", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_web_plugins", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/packages/flutter_web_plugins", + "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_web_plugins", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "fluttertoast", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "form_builder_validators", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "frontend_server_client", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "glob", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "graphs", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_flutter", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_generator", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "http_multi_server", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http_parser", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intl", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "io", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "js", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "json_annotation", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "lints", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "logging", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "matcher", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "material_color_utilities", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "matrix4_transform", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "meta", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "mime", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "package_config", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_android", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_foundation", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "path_provider_linux", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_platform_interface", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider_windows", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "percent_indicator", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "platform", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "plugin_platform_interface", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pointycastle", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pool", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "process", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pub_semver", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pubspec_parse", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "responsive_framework", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "searchable_listview", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "shelf", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "shelf_web_socket", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "sizer", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "sky_engine", - "rootUri": "file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine", + "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/bin/cache/pkg/sky_engine", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "source_gen", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "source_helper", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "source_span", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stack_trace", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "stream_channel", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stream_transform", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "string_scanner", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "term_glyph", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "test_api", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "timing", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "typed_data", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "universal_io", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "vector_math", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "watcher", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "web_socket_channel", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "win32", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "xdg_directories", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "yaml", - "rootUri": "file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2", "packageUri": "lib/", "languageVersion": "2.19" }, @@ -620,7 +620,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-02T16:08:25.124323Z", + "generated": "2023-06-02T22:45:16.476426Z", "generator": "pub", "generatorVersion": "2.19.6" } diff --git a/.dart_tool/package_config_subset b/.dart_tool/package_config_subset index 0fdc3f4..156ce00 100644 --- a/.dart_tool/package_config_subset +++ b/.dart_tool/package_config_subset @@ -1,413 +1,413 @@ _fe_analyzer_shared 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ analyzer 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/lib/ animate_gradient 2.16 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ args 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/lib/ assorted_layout_widgets 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ async 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/lib/ basic_utils 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/lib/ boolean_selector 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ build 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/lib/ build_config 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/lib/ build_daemon 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/lib/ build_resolvers 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ build_runner 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/lib/ build_runner_core 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ built_collection 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/ built_value 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0/lib/ card_swiper 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/lib/ characters 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/lib/ checked_yaml 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ clock 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/lib/ code_builder 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0/lib/ collection 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/lib/ convert 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/lib/ crypto 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/lib/ cupertino_icons 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ dart_style 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/lib/ empty_widget 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/lib/ equatable 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/lib/ fake_async 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/lib/ ffi 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1/lib/ file 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/lib/ fixnum 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib/ fl_chart 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/lib/ flutter_dotenv 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ flutter_form_builder 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ flutter_lints 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ fluttertoast 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ form_builder_validators 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ frontend_server_client 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ glob 2.15 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1/lib/ graphs 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0/lib/ hive 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/lib/ hive_flutter 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ hive_generator 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/lib/ http 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/lib/ http_multi_server 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ http_parser 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib/ intl 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/lib/ io 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/lib/ js 2.16 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/lib/ json_annotation 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/lib/ lints 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/lib/ logging 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/lib/ matcher 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/lib/ material_color_utilities 2.13 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ matrix4_transform 2.13 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ meta 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/lib/ mime 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/lib/ package_config 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/lib/ path 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/lib/ path_provider 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14/lib/ path_provider_android 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ path_provider_foundation 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ path_provider_linux 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ path_provider_platform_interface 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ path_provider_windows 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ percent_indicator 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ platform 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/lib/ plugin_platform_interface 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ pointycastle 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/lib/ pool 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/lib/ process 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/lib/ pub_semver 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib/ pubspec_parse 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ responsive_framework 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ searchable_listview 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ shelf 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/lib/ shelf_web_socket 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ sizer 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/lib/ source_gen 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0/lib/ source_helper 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/lib/ source_span 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/lib/ stack_trace 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/lib/ stream_channel 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/lib/ stream_transform 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/lib/ string_scanner 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/lib/ term_glyph 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/lib/ test_api 2.18 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/lib/ timing 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/lib/ typed_data 2.12 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1/lib/ universal_io 2.15 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/lib/ vector_math 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/ watcher 2.14 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/lib/ web_socket_channel 2.15 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ win32 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/lib/ xdg_directories 2.17 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ yaml 2.19 -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/ -file:///C:/Users/FUCHSLAU/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/lib/ -sky_engine -2.12 -file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine/ -file:///C:/Users/FUCHSLAU/flutter/bin/cache/pkg/sky_engine/lib/ -flutter -2.17 -file:///C:/Users/FUCHSLAU/flutter/packages/flutter/ -file:///C:/Users/FUCHSLAU/flutter/packages/flutter/lib/ -flutter_localizations -2.17 -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations/ -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_localizations/lib/ -flutter_test -2.17 -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test/ -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_test/lib/ -flutter_web_plugins -2.17 -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_web_plugins/ -file:///C:/Users/FUCHSLAU/flutter/packages/flutter_web_plugins/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/lib/ ernaehrung 2.19 -file:///C:/Users/FUCHSLAU/repos/Uni/Flutter-Ernaehrungsapp/ -file:///C:/Users/FUCHSLAU/repos/Uni/Flutter-Ernaehrungsapp/lib/ +file:///Users/bogdan/IdeaProjects/ernaehrung/ +file:///Users/bogdan/IdeaProjects/ernaehrung/lib/ +sky_engine +2.12 +file:///Users/bogdan/fvm/versions/3.7.9/bin/cache/pkg/sky_engine/ +file:///Users/bogdan/fvm/versions/3.7.9/bin/cache/pkg/sky_engine/lib/ +flutter +2.17 +file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter/ +file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter/lib/ +flutter_localizations +2.17 +file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_localizations/ +file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_localizations/lib/ +flutter_test +2.17 +file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_test/ +file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_test/lib/ +flutter_web_plugins +2.17 +file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_web_plugins/ +file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_web_plugins/lib/ 2 -- 2.51.0 From 1641c7accb0ce6b30a651e4be11102c493db338d Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Sat, 3 Jun 2023 00:49:19 +0200 Subject: [PATCH 15/32] merge --- .flutter-plugins-dependencies | 2 +- lib/android/components/form/form_builder.dart | 4 ---- lib/android/config/mock_data_helper.dart | 1 - 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 64f681c..1caa7f2 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.0.27\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.1.10\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.1.6\\\\","native_build":false,"dependencies":[]}],"web":[{"name":"fluttertoast","path":"C:\\\\Users\\\\FUCHSLAU\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"fluttertoast","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-02 19:13:28.478232","version":"3.7.12"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"fluttertoast","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-03 00:48:24.365407","version":"3.7.9"} \ No newline at end of file diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart index 9874c44..10e086e 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/android/components/form/form_builder.dart @@ -90,7 +90,6 @@ class _FormBuilderComponentState extends State { @override Widget build(BuildContext context) { - print("widget enable ${widget.lockTextFields}"); return FormBuilder( key: formKey, child: Padding( @@ -103,7 +102,6 @@ class _FormBuilderComponentState extends State { itemCount: listOfTextField.length, shrinkWrap: true, itemBuilder: (context, index) { - print(listOfTextField[index]); return FormBuilderTextFieldComponent( true, listOfTextField[index]); }), @@ -134,8 +132,6 @@ class _FormBuilderComponentState extends State { int.parse(formKey .currentState?.fields['kalorien']?.value))); - print(box.get("USER")); - Navigator.of(context).pushReplacement(MaterialPageRoute( builder: (BuildContext context) => const MainPage())); }, diff --git a/lib/android/config/mock_data_helper.dart b/lib/android/config/mock_data_helper.dart index c1ddd45..ec970fb 100644 --- a/lib/android/config/mock_data_helper.dart +++ b/lib/android/config/mock_data_helper.dart @@ -12,7 +12,6 @@ mockDataForWholeWeek(){ int timestamp = statisticsService.getTimestampFromNow(); List currentWeek = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.week, timestamp); for(int i = 0;i < currentWeek.length;i++){ - print(mockFood(i)); box.put(currentWeek[i], mockFood(i)); } } -- 2.51.0 From ca5f610dcb2de609b555611def6aa5b12f438884 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Sat, 3 Jun 2023 00:51:26 +0200 Subject: [PATCH 16/32] speed up main page --- .dart_tool/package_config.json | 2 +- lib/android/pages/nav_pages/main_page.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index fcc8cd9..fe9846a 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -626,7 +626,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-02T22:45:16.476426Z", + "generated": "2023-06-02T22:48:24.172799Z", "generator": "pub", "generatorVersion": "2.19.6" } diff --git a/lib/android/pages/nav_pages/main_page.dart b/lib/android/pages/nav_pages/main_page.dart index 787738c..1c51891 100644 --- a/lib/android/pages/nav_pages/main_page.dart +++ b/lib/android/pages/nav_pages/main_page.dart @@ -25,7 +25,7 @@ class MainPageState extends State { int currentIndex = 0; - void onTap(int index) { + void onTap(int index) async { setState(() { currentIndex = index; if (currentIndex == 1) { -- 2.51.0 From 30cf45bd3525689ce7d21fb6e14f3cb367ff3361 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Sat, 3 Jun 2023 01:06:38 +0200 Subject: [PATCH 17/32] bug --- lib/android/components/form/form_builder.dart | 25 +++++++++++++------ .../form_builder_text_field_component.dart | 4 ++- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart index 10e086e..d79d85f 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/android/components/form/form_builder.dart @@ -118,19 +118,30 @@ class _FormBuilderComponentState extends State { ), onPressed: () { final Box box = Hive.box("USER_BOX"); + + print(formKey + .currentState?.fields['gewicht']?.value ?? + box.get("USER").gewicht); + box.put( "USER", User( - formKey.currentState?.fields['vorname']?.value, - formKey.currentState?.fields['nachname']?.value, + formKey.currentState?.fields['vorname']?.value.toString() ?? + box.get("USER").vorname.toString(), + formKey.currentState?.fields['nachname']?.value.toString() ?? + box.get("USER").nachname.toString(), int.parse(formKey - .currentState?.fields['gewicht']?.value), + .currentState?.fields['gewicht']?.value ?? + box.get("USER").gewicht), int.parse(formKey - .currentState?.fields['groesse']?.value), - int.parse( - formKey.currentState?.fields['alter']?.value), + .currentState?.fields['groesse']?.value ?? + int.parse(box.get("USER").groesse)), int.parse(formKey - .currentState?.fields['kalorien']?.value))); + .currentState?.fields['alter']?.value ?? + int.parse(box.get("USER").alter)), + int.parse(formKey.currentState?.fields['kalorien'] + ?.value ?? + int.parse(box.get("USER").kalorien)))); Navigator.of(context).pushReplacement(MaterialPageRoute( builder: (BuildContext context) => const MainPage())); diff --git a/lib/android/components/form/form_builder_text_field_component.dart b/lib/android/components/form/form_builder_text_field_component.dart index 1c18a35..36a201b 100644 --- a/lib/android/components/form/form_builder_text_field_component.dart +++ b/lib/android/components/form/form_builder_text_field_component.dart @@ -75,16 +75,18 @@ class TextFieldChild extends StatelessWidget { hintText: StringUtils.capitalize(formTextField.title), labelText: StringUtils.capitalize(formTextField.title), fillColor: Colors.white70), - keyboardType: TextInputType.number, + keyboardType: formTextField.textInputType, maxLength: TextInputType.number == formTextField.textInputType ? 7 : 30, autovalidateMode: AutovalidateMode.onUserInteraction, validator: FormBuilderValidators.compose([ FormBuilderValidators.required(), + TextInputType.number == formTextField.textInputType ? FormBuilderValidators.max(formTextField.numericMax!, errorText: formTextField.numericMaxErrorMessage) : FormBuilderValidators.maxLength(30, errorText: formTextField.maxLengthErrorMessage), + TextInputType.number == formTextField.textInputType ? FormBuilderValidators.min(formTextField.numericMin!, errorText: formTextField.numericMinErrorMessage) -- 2.51.0 From 1b9d8b693fb47b93eeaf649408dcc60ce4b0e7fa Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Tue, 6 Jun 2023 23:45:02 +0200 Subject: [PATCH 18/32] bug fix --- .flutter-plugins-dependencies | 2 +- lib/android/components/form/form_builder.dart | 68 ++++++++++++------- 2 files changed, 45 insertions(+), 25 deletions(-) diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 1caa7f2..915bca8 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"fluttertoast","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-03 00:48:24.365407","version":"3.7.9"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"fluttertoast","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-06 22:44:47.468267","version":"3.7.9"} \ No newline at end of file diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart index d79d85f..486d39f 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/android/components/form/form_builder.dart @@ -119,32 +119,52 @@ class _FormBuilderComponentState extends State { onPressed: () { final Box box = Hive.box("USER_BOX"); - print(formKey - .currentState?.fields['gewicht']?.value ?? - box.get("USER").gewicht); + if (widget.lockTextFields) { + box.put( + "USER", + User( + formKey.currentState?.fields['vorname'] + ?.value ?? + box.get("USER").vorname.toString(), + formKey.currentState?.fields['nachname'] + ?.value ?? + box.get("USER").nachname.toString(), + formKey.currentState?.fields['gewicht'] + ?.value ?? + box.get("USER").gewicht, + formKey.currentState?.fields['groesse'] + ?.value ?? + box.get("USER").groesse, + formKey.currentState?.fields['alter']?.value ?? + box.get("USER").alter, + formKey.currentState?.fields['kalorien'] + ?.value ?? + box.get("USER").kalorien)); - box.put( - "USER", - User( - formKey.currentState?.fields['vorname']?.value.toString() ?? - box.get("USER").vorname.toString(), - formKey.currentState?.fields['nachname']?.value.toString() ?? - box.get("USER").nachname.toString(), - int.parse(formKey - .currentState?.fields['gewicht']?.value ?? - box.get("USER").gewicht), - int.parse(formKey - .currentState?.fields['groesse']?.value ?? - int.parse(box.get("USER").groesse)), - int.parse(formKey - .currentState?.fields['alter']?.value ?? - int.parse(box.get("USER").alter)), - int.parse(formKey.currentState?.fields['kalorien'] - ?.value ?? - int.parse(box.get("USER").kalorien)))); + ScaffoldMessenger.of(context) + .showSnackBar(const SnackBar( + duration: Duration(seconds: 2), + content: Text('Eine Beispiel Snackbar'), + )); + } else { + box.put( + "USER", + User( + formKey.currentState?.fields['vorname']?.value, + formKey.currentState?.fields['nachname']?.value, + formKey.currentState?.fields['gewicht']?.value, + formKey.currentState?.fields['groesse']?.value, + formKey.currentState?.fields['alter']?.value, + formKey + .currentState?.fields['kalorien']?.value)); + } - Navigator.of(context).pushReplacement(MaterialPageRoute( - builder: (BuildContext context) => const MainPage())); + Future.delayed( + const Duration(seconds: 2), + () => Navigator.of(context).pushReplacement( + MaterialPageRoute( + builder: (BuildContext context) => + const MainPage()))); }, child: const Text("Eingaben bestätigen"), )), -- 2.51.0 From c9d65c04f795ee704262a8bcc90115c2e4849cb2 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Wed, 7 Jun 2023 00:01:26 +0200 Subject: [PATCH 19/32] bug fix --- lib/android/components/form/form_builder.dart | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart index 486d39f..a3c89e4 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/android/components/form/form_builder.dart @@ -4,7 +4,6 @@ import 'package:flutter_form_builder/flutter_form_builder.dart'; import 'package:hive/hive.dart'; import '../../models/form_builder.dart'; import '../../models/user.dart'; -import '../../pages/nav_pages/main_page.dart'; class FormBuilderComponent extends StatefulWidget { final bool lockTextFields; @@ -144,7 +143,7 @@ class _FormBuilderComponentState extends State { ScaffoldMessenger.of(context) .showSnackBar(const SnackBar( duration: Duration(seconds: 2), - content: Text('Eine Beispiel Snackbar'), + content: Text('Die Daten wurden erfolgreich gespeichert'), )); } else { box.put( @@ -161,10 +160,7 @@ class _FormBuilderComponentState extends State { Future.delayed( const Duration(seconds: 2), - () => Navigator.of(context).pushReplacement( - MaterialPageRoute( - builder: (BuildContext context) => - const MainPage()))); + () => Navigator.of(context).pushNamedAndRemoveUntil('/navigation', (Route route) => false)); }, child: const Text("Eingaben bestätigen"), )), -- 2.51.0 From 8a3d6808a37fd328260d83c7713a638506e642c4 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Fri, 16 Jun 2023 08:34:41 +0200 Subject: [PATCH 20/32] bug fix --- .dart_tool/package_config.json | 44 ++- .dart_tool/package_config_subset | 28 ++ .flutter-plugins-dependencies | 2 +- lib/android/components/chart/chart.dart | 301 ++++++++++++++++++ lib/android/components/chart/round_chart.dart | 27 ++ lib/android/components/form/form_builder.dart | 30 +- lib/android/components/meals.dart | 33 ++ .../pages/nav_pages/meal_plan_page.dart | 21 +- .../pages/nav_pages/progress_page.dart | 287 +---------------- lib/android/pages/nav_pages/today_page.dart | 23 +- lib/functions/db_crud.dart | 0 lib/functions/welcome_crud.dart | 11 - lib/mockdata.dart | 20 -- .../component/header_button_component.dart | 18 -- lib/web/component/header_component.dart | 35 -- lib/web/component/navigation.dart | 60 ++++ lib/web/component/section_component.dart | 45 --- lib/web/component/today.dart | 48 +++ lib/web/functions/responsive.dart | 11 + lib/web/mobile.dart | 31 -- lib/web/web_app.dart | 41 +-- linux/flutter/generated_plugin_registrant.cc | 4 + linux/flutter/generated_plugins.cmake | 1 + macos/Flutter/GeneratedPluginRegistrant.swift | 4 + pubspec.lock | 56 ++++ pubspec.yaml | 2 + 26 files changed, 662 insertions(+), 521 deletions(-) create mode 100644 lib/android/components/chart/chart.dart create mode 100644 lib/android/components/chart/round_chart.dart create mode 100644 lib/android/components/meals.dart delete mode 100644 lib/functions/db_crud.dart delete mode 100644 lib/functions/welcome_crud.dart delete mode 100644 lib/mockdata.dart delete mode 100644 lib/web/component/header_button_component.dart delete mode 100644 lib/web/component/header_component.dart create mode 100644 lib/web/component/navigation.dart delete mode 100644 lib/web/component/section_component.dart create mode 100644 lib/web/component/today.dart create mode 100644 lib/web/functions/responsive.dart delete mode 100644 lib/web/mobile.dart diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index fe9846a..10d3553 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -7,6 +7,12 @@ "packageUri": "lib/", "languageVersion": "2.17" }, + { + "name": "adaptive_dialog", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1", + "packageUri": "lib/", + "languageVersion": "2.17" + }, { "name": "analyzer", "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1", @@ -19,6 +25,12 @@ "packageUri": "lib/", "languageVersion": "2.16" }, + { + "name": "animations", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7", + "packageUri": "lib/", + "languageVersion": "2.12" + }, { "name": "args", "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1", @@ -49,6 +61,18 @@ "packageUri": "lib/", "languageVersion": "2.17" }, + { + "name": "bs_flutter_modal", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "bs_flutter_utils", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2", + "packageUri": "lib/", + "languageVersion": "2.12" + }, { "name": "build", "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1", @@ -157,6 +181,12 @@ "packageUri": "lib/", "languageVersion": "2.19" }, + { + "name": "dynamic_color", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5", + "packageUri": "lib/", + "languageVersion": "2.16" + }, { "name": "empty_widget", "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5", @@ -313,6 +343,12 @@ "packageUri": "lib/", "languageVersion": "2.12" }, + { + "name": "intersperse", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, { "name": "intl", "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0", @@ -349,6 +385,12 @@ "packageUri": "lib/", "languageVersion": "2.18" }, + { + "name": "macos_ui", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2", + "packageUri": "lib/", + "languageVersion": "2.17" + }, { "name": "matcher", "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13", @@ -626,7 +668,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-02T22:48:24.172799Z", + "generated": "2023-06-08T14:59:35.567465Z", "generator": "pub", "generatorVersion": "2.19.6" } diff --git a/.dart_tool/package_config_subset b/.dart_tool/package_config_subset index 8467c94..40f0f42 100644 --- a/.dart_tool/package_config_subset +++ b/.dart_tool/package_config_subset @@ -2,6 +2,10 @@ _fe_analyzer_shared 2.17 file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ +adaptive_dialog +2.17 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/lib/ analyzer 2.19 file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/ @@ -10,6 +14,10 @@ animate_gradient 2.16 file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/ file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ +animations +2.12 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7/lib/ args 2.18 file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/ @@ -30,6 +38,14 @@ boolean_selector 2.17 file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/ file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ +bs_flutter_modal +2.12 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/lib/ +bs_flutter_utils +2.12 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/lib/ build 2.17 file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/ @@ -102,6 +118,10 @@ dart_style 2.19 file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/ file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/lib/ +dynamic_color +2.16 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/lib/ empty_widget 2.12 file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/ @@ -190,6 +210,10 @@ http_parser 2.12 file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/ file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib/ +intersperse +2.12 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0/lib/ intl 2.12 file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/ @@ -214,6 +238,10 @@ logging 2.18 file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/ file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/lib/ +macos_ui +2.17 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/lib/ matcher 2.18 file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/ diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 915bca8..7359932 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"fluttertoast","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-06 22:44:47.468267","version":"3.7.9"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-13 16:03:42.984433","version":"3.7.9"} \ No newline at end of file diff --git a/lib/android/components/chart/chart.dart b/lib/android/components/chart/chart.dart new file mode 100644 index 0000000..cd3c7a8 --- /dev/null +++ b/lib/android/components/chart/chart.dart @@ -0,0 +1,301 @@ +import 'package:fl_chart/fl_chart.dart'; +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; + +import '../../config/statistics.dart'; +import '../meal_page_text/secondary_big_text_component.dart'; +import '../meal_page_text/secondary_text_component.dart'; +import '../meal_page_text/title_component.dart'; + +class ChartComponent extends StatelessWidget { + const ChartComponent({Key? key}) : super(key: key); + + BarTouchData get barTouchData => BarTouchData( + enabled: false, + touchTooltipData: BarTouchTooltipData( + tooltipBgColor: Colors.transparent, + tooltipPadding: EdgeInsets.zero, + tooltipMargin: 4, + getTooltipItem: ( + BarChartGroupData group, + int groupIndex, + BarChartRodData rod, + int rodIndex, + ) { + return BarTooltipItem( + rod.toY.round().toString(), + const TextStyle( + color: Colors.transparent, + fontWeight: FontWeight.bold, + ), + ); + }, + ), + ); + + Widget getTitles(double value, TitleMeta meta) { + const style = TextStyle( + color: Colors.orange, + fontWeight: FontWeight.bold, + fontSize: 14, + ); + String text; + switch (value.toInt()) { + case 0: + text = 'M'; + break; + case 1: + text = 'T'; + break; + case 2: + text = 'W'; + break; + case 3: + text = 'T'; + break; + case 4: + text = 'F'; + break; + case 5: + text = 'S'; + break; + case 6: + text = 'S'; + break; + default: + text = ''; + break; + } + return SideTitleWidget( + axisSide: meta.axisSide, + space: 4, + child: Text(text, style: style), + ); + } + + FlTitlesData get titlesData => FlTitlesData( + show: true, + bottomTitles: AxisTitles( + sideTitles: SideTitles( + showTitles: true, + reservedSize: 30, + getTitlesWidget: getTitles, + ), + ), + topTitles: AxisTitles( + sideTitles: SideTitles(showTitles: false), + ), + rightTitles: AxisTitles( + sideTitles: SideTitles( + showTitles: false, + ), + ), + leftTitles: AxisTitles( + sideTitles: SideTitles( + showTitles: true, + getTitlesWidget: (value, _) { + // Return a custom widget for each axis value + return Container( + constraints: + const BoxConstraints.tightFor(width: double.infinity), + child: Padding( + padding: const EdgeInsets.only(right: 3.0), + // Adjust the margin value as needed + child: FittedBox( + fit: BoxFit.scaleDown, + alignment: Alignment.centerLeft, + child: Text( + value.toInt().toString(), + style: const TextStyle( + color: Colors.orange, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + ); + }, + ), + )); + + FlBorderData get borderData => FlBorderData( + show: true, // Set to true to display the chart border + border: const Border( + bottom: BorderSide(color: Colors.black, width: 1), + left: + BorderSide(color: Colors.black, width: 1), // Hide the left border + ), + ); + + @override + Widget build(BuildContext context) { + return Container( + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.all(Radius.circular(8))), + child: Padding( + padding: + const EdgeInsets.symmetric(vertical: 8, horizontal: 16), + child: Column( + children: [ + ValueListenableBuilder( + valueListenable: StatisticsService + .instance.dailyAverageForCurrentWeek, + builder: (context, value, child) { + return SizedBox( + height: 100, + width: 400, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const TitleComponent("Kalorien"), + const SizedBox( + height: 10, + ), + const SecondaryTextComponent( + "Durchschnittlich"), + SecondaryBigTextComponent( + "${value.toString()} kcal/Tag"), + ], + ), + ); + }, + ), + ValueListenableBuilder( + valueListenable: + StatisticsService.instance.barChartData, + builder: (context, value, child) { + return SizedBox( + height: 300, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + SizedBox( + height: 15, + // Adjust the height of the legend as needed + child: Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Container( + margin: const EdgeInsets.symmetric( + horizontal: 8.0), + // Adjust the spacing between legend items + child: Row( + children: [ + Container( + width: 12, + height: 12, + decoration: const BoxDecoration( + color: Colors.red, + // Use the color of the first bar rod for the legend item + shape: BoxShape.circle, + ), + ), + const SizedBox(width: 4.0), + // Adjust the spacing between the color indicator and the legend label + const Text( + 'Frühstück', + // Replace with your desired legend label + style: TextStyle( + fontSize: + 12), // Adjust the font size of the legend labels + ), + ], + ), + ), + Container( + margin: const EdgeInsets.symmetric( + horizontal: 8.0), + // Adjust the spacing between legend items + child: Row( + children: [ + Container( + width: 12, + height: 12, + decoration: const BoxDecoration( + color: Colors.green, + // Use the color of the first bar rod for the legend item + shape: BoxShape.circle, + ), + ), + const SizedBox(width: 4.0), + // Adjust the spacing between the color indicator and the legend label + const Text( + 'Mittagessen', + // Replace with your desired legend label + style: TextStyle( + fontSize: + 12), // Adjust the font size of the legend labels + ), + ], + ), + ), + Container( + margin: const EdgeInsets.symmetric( + horizontal: 8.0), + // Adjust the spacing between legend items + child: Row( + children: [ + Container( + width: 12, + height: 12, + decoration: const BoxDecoration( + color: Colors.yellow, + // Use the color of the first bar rod for the legend item + shape: BoxShape.circle, + ), + ), + const SizedBox(width: 4.0), + // Adjust the spacing between the color indicator and the legend label + const Text( + 'Abendessen', + // Replace with your desired legend label + style: TextStyle( + fontSize: + 12), // Adjust the font size of the legend labels + ), + ], + ), + ), + ], + ), + ), + Container( + margin: + const EdgeInsets.fromLTRB(0, 24, 0, 0), + height: 250, + child: BarChart( + BarChartData( + barTouchData: barTouchData, + titlesData: titlesData, + borderData: borderData, + barGroups: value, + gridData: FlGridData(show: false), + alignment: BarChartAlignment.spaceAround, + extraLinesData: ExtraLinesData( + horizontalLines: [ + HorizontalLine( + y: StatisticsService.instance.getCaloryTargetForOneDay(), // Specify the y-value where you want the line to be positioned + color: Colors.black, // Change the color as per your requirement + strokeWidth: 2, // Adjust the width as needed + dashArray: [3, 2], + label: HorizontalLineLabel( + show: true, + labelResolver: (x) => "Zielwert" + ) + ), + ], + ), + ), + ), + ), + ], + ), + ); + }, + ), + ], + ), + )); + } +} diff --git a/lib/android/components/chart/round_chart.dart b/lib/android/components/chart/round_chart.dart new file mode 100644 index 0000000..4ae6a29 --- /dev/null +++ b/lib/android/components/chart/round_chart.dart @@ -0,0 +1,27 @@ +import 'package:flutter/material.dart'; + +import '../meal_page_text/days_component.dart'; +import '../meal_page_text/statistics_today_component.dart'; + +class RoundChartComponent extends StatelessWidget { + const RoundChartComponent({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Container( + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.all(Radius.circular(8))), + child: Padding( + padding: const EdgeInsets.symmetric( + vertical: 8, horizontal: 16), + child: Column( + children: const [ + DaysMealPageComponent(), + StatisticsPercentage(), + ], + ), + ), + ); + } +} diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart index a3c89e4..7efd175 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/android/components/form/form_builder.dart @@ -1,7 +1,10 @@ import 'package:ernaehrung/android/components/form/form_builder_text_field_component.dart'; +import 'package:ernaehrung/web/component/today.dart'; +import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_form_builder/flutter_form_builder.dart'; import 'package:hive/hive.dart'; +import '../../../web/web_app.dart'; import '../../models/form_builder.dart'; import '../../models/user.dart'; @@ -102,7 +105,7 @@ class _FormBuilderComponentState extends State { shrinkWrap: true, itemBuilder: (context, index) { return FormBuilderTextFieldComponent( - true, listOfTextField[index]); + widget.lockTextFields, listOfTextField[index]); }), Container( margin: @@ -151,16 +154,25 @@ class _FormBuilderComponentState extends State { User( formKey.currentState?.fields['vorname']?.value, formKey.currentState?.fields['nachname']?.value, - formKey.currentState?.fields['gewicht']?.value, - formKey.currentState?.fields['groesse']?.value, - formKey.currentState?.fields['alter']?.value, - formKey - .currentState?.fields['kalorien']?.value)); + int.parse(formKey.currentState?.fields['gewicht']?.value), + int.parse(formKey.currentState?.fields['groesse']?.value), + int.parse(formKey.currentState?.fields['alter']?.value), + int.parse(formKey.currentState?.fields['kalorien']?.value) + )); } - Future.delayed( - const Duration(seconds: 2), - () => Navigator.of(context).pushNamedAndRemoveUntil('/navigation', (Route route) => false)); + + if (kIsWeb) { + Navigator.of(context).push(MaterialPageRoute(builder: (BuildContext context) => const HomeScreen())); + } + else{ + Future.delayed( + const Duration(seconds: 2), + () => Navigator.of(context) + .pushNamedAndRemoveUntil('/navigation', (Route route) + => false) + ); + } }, child: const Text("Eingaben bestätigen"), )), diff --git a/lib/android/components/meals.dart b/lib/android/components/meals.dart new file mode 100644 index 0000000..a0958e3 --- /dev/null +++ b/lib/android/components/meals.dart @@ -0,0 +1,33 @@ +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_dotenv/flutter_dotenv.dart'; +import 'package:hive/hive.dart'; +import 'package:hive_flutter/adapters.dart'; + +import '../config/statistics.dart'; +import 'card/card_component.dart'; + +class MealsComponent extends StatelessWidget { + MealsComponent({Key? key}) : super(key: key); + final List colors = [Colors.teal,Colors.red,Colors.green]; + + @override + Widget build(BuildContext context) { + return ValueListenableBuilder( + valueListenable: Hive.box(dotenv.env['MEALPLAN_BOX'] ?? 'MEALPLAN').listenable(), + builder: (context, box, widget) { + return ListView.builder( + primary: false, + shrinkWrap: true, + itemCount: box.keys.length, + itemBuilder: (context, i) { + String mealTypeAsString = box.keyAt(i).toString(); + return CardComponent( + mealTypeAsString, + StatisticsService.instance.getMealsOfTodayByMealtype(mealTypeAsString), + color: colors[i], + ); + }); + }); + } +} diff --git a/lib/android/pages/nav_pages/meal_plan_page.dart b/lib/android/pages/nav_pages/meal_plan_page.dart index ecc3411..c8cece4 100644 --- a/lib/android/pages/nav_pages/meal_plan_page.dart +++ b/lib/android/pages/nav_pages/meal_plan_page.dart @@ -1,3 +1,4 @@ +import 'package:ernaehrung/android/components/chart/round_chart.dart'; import 'package:ernaehrung/android/components/meal_page_food_component.dart'; import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; import 'package:ernaehrung/android/components/meal_page_text/statistics_today_component.dart'; @@ -29,23 +30,9 @@ class _MealPlanState extends State { height: double.infinity, child: SingleChildScrollView( child: Column( - children: [ - Container( - decoration: const BoxDecoration( - color: Colors.white, - borderRadius: BorderRadius.all(Radius.circular(8))), - child: Padding( - padding: const EdgeInsets.symmetric( - vertical: 8, horizontal: 16), - child: Column( - children: const [ - DaysMealPageComponent(), - StatisticsPercentage(), - ], - ), - ), - ), - const MealPageStatisticsFoodComponent(), + children: const [ + RoundChartComponent(), + MealPageStatisticsFoodComponent(), ], ), ))); diff --git a/lib/android/pages/nav_pages/progress_page.dart b/lib/android/pages/nav_pages/progress_page.dart index a19aafb..71284ae 100644 --- a/lib/android/pages/nav_pages/progress_page.dart +++ b/lib/android/pages/nav_pages/progress_page.dart @@ -1,3 +1,4 @@ +import 'package:ernaehrung/android/components/chart/chart.dart'; import 'package:ernaehrung/android/components/meal_page_text/secondary_big_text_component.dart'; import 'package:ernaehrung/android/components/meal_page_text/secondary_text_component.dart'; import 'package:ernaehrung/android/components/meal_page_text/title_component.dart'; @@ -26,174 +27,7 @@ class ProgressPage extends StatelessWidget { body: SingleChildScrollView( child: Column( children: [ - Container( - decoration: const BoxDecoration( - color: Colors.white, - borderRadius: BorderRadius.all(Radius.circular(8))), - child: Padding( - padding: - const EdgeInsets.symmetric(vertical: 8, horizontal: 16), - child: Column( - children: [ - ValueListenableBuilder( - valueListenable: StatisticsService - .instance.dailyAverageForCurrentWeek, - builder: (context, value, child) { - return SizedBox( - height: 100, - width: 400, - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - const TitleComponent("Kalorien"), - const SizedBox( - height: 10, - ), - const SecondaryTextComponent( - "Durchschnittlich"), - SecondaryBigTextComponent( - "${value.toString()} kcal/Tag"), - ], - ), - ); - }, - ), - ValueListenableBuilder( - valueListenable: - StatisticsService.instance.barChartData, - builder: (context, value, child) { - return SizedBox( - height: 300, - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - SizedBox( - height: 15, - // Adjust the height of the legend as needed - child: Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Container( - margin: const EdgeInsets.symmetric( - horizontal: 8.0), - // Adjust the spacing between legend items - child: Row( - children: [ - Container( - width: 12, - height: 12, - decoration: const BoxDecoration( - color: Colors.red, - // Use the color of the first bar rod for the legend item - shape: BoxShape.circle, - ), - ), - const SizedBox(width: 4.0), - // Adjust the spacing between the color indicator and the legend label - const Text( - 'Frühstück', - // Replace with your desired legend label - style: TextStyle( - fontSize: - 12), // Adjust the font size of the legend labels - ), - ], - ), - ), - Container( - margin: const EdgeInsets.symmetric( - horizontal: 8.0), - // Adjust the spacing between legend items - child: Row( - children: [ - Container( - width: 12, - height: 12, - decoration: const BoxDecoration( - color: Colors.green, - // Use the color of the first bar rod for the legend item - shape: BoxShape.circle, - ), - ), - const SizedBox(width: 4.0), - // Adjust the spacing between the color indicator and the legend label - const Text( - 'Mittagessen', - // Replace with your desired legend label - style: TextStyle( - fontSize: - 12), // Adjust the font size of the legend labels - ), - ], - ), - ), - Container( - margin: const EdgeInsets.symmetric( - horizontal: 8.0), - // Adjust the spacing between legend items - child: Row( - children: [ - Container( - width: 12, - height: 12, - decoration: const BoxDecoration( - color: Colors.yellow, - // Use the color of the first bar rod for the legend item - shape: BoxShape.circle, - ), - ), - const SizedBox(width: 4.0), - // Adjust the spacing between the color indicator and the legend label - const Text( - 'Abendessen', - // Replace with your desired legend label - style: TextStyle( - fontSize: - 12), // Adjust the font size of the legend labels - ), - ], - ), - ), - ], - ), - ), - Container( - margin: - const EdgeInsets.fromLTRB(0, 24, 0, 0), - height: 250, - child: BarChart( - BarChartData( - barTouchData: barTouchData, - titlesData: titlesData, - borderData: borderData, - barGroups: value, - gridData: FlGridData(show: false), - alignment: BarChartAlignment.spaceAround, - extraLinesData: ExtraLinesData( - horizontalLines: [ - HorizontalLine( - y: StatisticsService.instance.getCaloryTargetForOneDay(), // Specify the y-value where you want the line to be positioned - color: Colors.black, // Change the color as per your requirement - strokeWidth: 2, // Adjust the width as needed - dashArray: [3, 2], - label: HorizontalLineLabel( - show: true, - labelResolver: (x) => "Zielwert" - ) - ), - ], - ), - ), - ), - ), - ], - ), - ); - }, - ), - ], - ), - )), + const ChartComponent(), Container( margin: const EdgeInsets.fromLTRB(0, 16, 0, 0), decoration: const BoxDecoration( @@ -233,121 +67,4 @@ class ProgressPage extends StatelessWidget { ), ); } - - BarTouchData get barTouchData => BarTouchData( - enabled: false, - touchTooltipData: BarTouchTooltipData( - tooltipBgColor: Colors.transparent, - tooltipPadding: EdgeInsets.zero, - tooltipMargin: 4, - getTooltipItem: ( - BarChartGroupData group, - int groupIndex, - BarChartRodData rod, - int rodIndex, - ) { - return BarTooltipItem( - rod.toY.round().toString(), - const TextStyle( - color: Colors.transparent, - fontWeight: FontWeight.bold, - ), - ); - }, - ), - ); - - Widget getTitles(double value, TitleMeta meta) { - const style = TextStyle( - color: Colors.orange, - fontWeight: FontWeight.bold, - fontSize: 14, - ); - String text; - switch (value.toInt()) { - case 0: - text = 'M'; - break; - case 1: - text = 'T'; - break; - case 2: - text = 'W'; - break; - case 3: - text = 'T'; - break; - case 4: - text = 'F'; - break; - case 5: - text = 'S'; - break; - case 6: - text = 'S'; - break; - default: - text = ''; - break; - } - return SideTitleWidget( - axisSide: meta.axisSide, - space: 4, - child: Text(text, style: style), - ); - } - - FlTitlesData get titlesData => FlTitlesData( - show: true, - bottomTitles: AxisTitles( - sideTitles: SideTitles( - showTitles: true, - reservedSize: 30, - getTitlesWidget: getTitles, - ), - ), - topTitles: AxisTitles( - sideTitles: SideTitles(showTitles: false), - ), - rightTitles: AxisTitles( - sideTitles: SideTitles( - showTitles: false, - ), - ), - leftTitles: AxisTitles( - sideTitles: SideTitles( - showTitles: true, - getTitlesWidget: (value, _) { - // Return a custom widget for each axis value - return Container( - constraints: - const BoxConstraints.tightFor(width: double.infinity), - child: Padding( - padding: const EdgeInsets.only(right: 3.0), - // Adjust the margin value as needed - child: FittedBox( - fit: BoxFit.scaleDown, - alignment: Alignment.centerLeft, - child: Text( - value.toInt().toString(), - style: const TextStyle( - color: Colors.orange, - fontWeight: FontWeight.bold, - ), - ), - ), - ), - ); - }, - ), - )); - - FlBorderData get borderData => FlBorderData( - show: true, // Set to true to display the chart border - border: const Border( - bottom: BorderSide(color: Colors.black, width: 1), - left: - BorderSide(color: Colors.black, width: 1), // Hide the left border - ), - ); } diff --git a/lib/android/pages/nav_pages/today_page.dart b/lib/android/pages/nav_pages/today_page.dart index a653411..4db409f 100644 --- a/lib/android/pages/nav_pages/today_page.dart +++ b/lib/android/pages/nav_pages/today_page.dart @@ -1,4 +1,5 @@ import 'package:ernaehrung/android/components/card/card_component.dart'; +import 'package:ernaehrung/android/components/meals.dart'; import 'package:ernaehrung/android/config/statistics.dart'; import 'package:flutter/material.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; @@ -7,6 +8,7 @@ import 'package:hive_flutter/adapters.dart'; class TodayPage extends StatefulWidget { final String title; final Color backgroundColor = const Color(0xff47a44b); + const TodayPage({Key? key, required this.title}) : super(key: key); @override @@ -14,27 +16,8 @@ class TodayPage extends StatefulWidget { } class _TodayPageState extends State { - final List colors = [Colors.teal,Colors.red,Colors.green]; - @override Widget build(BuildContext context) { - return Scaffold( - body: SingleChildScrollView( - child: ValueListenableBuilder( - valueListenable: Hive.box(dotenv.env['MEALPLAN_BOX'] ?? 'MEALPLAN').listenable(), - builder: (context, box, widget) { - return ListView.builder( - primary: false, - shrinkWrap: true, - itemCount: box.keys.length, - itemBuilder: (context, i) { - String mealTypeAsString = box.keyAt(i).toString(); - return CardComponent( - mealTypeAsString, - StatisticsService.instance.getMealsOfTodayByMealtype(mealTypeAsString), - color: colors[i], - ); - }); - }))); + return Scaffold(body: SingleChildScrollView(child: MealsComponent())); } } diff --git a/lib/functions/db_crud.dart b/lib/functions/db_crud.dart deleted file mode 100644 index e69de29..0000000 diff --git a/lib/functions/welcome_crud.dart b/lib/functions/welcome_crud.dart deleted file mode 100644 index 99f147c..0000000 --- a/lib/functions/welcome_crud.dart +++ /dev/null @@ -1,11 +0,0 @@ -import 'package:flutter_dotenv/flutter_dotenv.dart'; -import 'package:hive/hive.dart'; - -void storeUserData(String sname, String fname, int weight, int height, int calories) async { - final userBox = Hive.box(dotenv.env['USER_BOX']!); - userBox.put(dotenv.env['FIRST_NAME_FIELD']!, sname); - userBox.put(dotenv.env['SECOND_NAME_FIELD']!, fname); - userBox.put(dotenv.env['WEIGHT_FIELD']!, weight); - userBox.put(dotenv.env['HEIGHT_FIELD']!, height); - userBox.put(dotenv.env['CALORIES_FIELD']!, calories); -} \ No newline at end of file diff --git a/lib/mockdata.dart b/lib/mockdata.dart deleted file mode 100644 index 6c11fb1..0000000 --- a/lib/mockdata.dart +++ /dev/null @@ -1,20 +0,0 @@ -import 'package:flutter/cupertino.dart'; -import 'android/models/card.dart'; - -List essen = [ - CardModel('Haferflocken', 10, 1.1, 1.2), - CardModel('Kekse', 20, 2.2, 2.3), - CardModel('Bier', 30, 3.3, 3.4), -]; - -Map, List> cards = , List>{ - { - const Image(image: AssetImage('assets/images/fries.png')): 'Frühstück' - }: essen, - { - const Image(image: AssetImage('assets/images/ice.png')): 'Mittagessen' - }: essen, - { - const Image(image: AssetImage('assets/images/tea.png')): 'Abendessen' - }: essen -}; \ No newline at end of file diff --git a/lib/web/component/header_button_component.dart b/lib/web/component/header_button_component.dart deleted file mode 100644 index 9dbb8ae..0000000 --- a/lib/web/component/header_button_component.dart +++ /dev/null @@ -1,18 +0,0 @@ -import 'package:flutter/material.dart'; - -class HeaderButton extends StatelessWidget { - final String buttonText; - final Widget page; - - const HeaderButton(this.buttonText, this.page, {super.key}); - - @override - Widget build(BuildContext context) { - return ElevatedButton(onPressed: (){ - Navigator.push( - context, - MaterialPageRoute(builder: (context) => page), - ); - }, child: Text(buttonText)); - } -} diff --git a/lib/web/component/header_component.dart b/lib/web/component/header_component.dart deleted file mode 100644 index 784d3e7..0000000 --- a/lib/web/component/header_component.dart +++ /dev/null @@ -1,35 +0,0 @@ -import 'package:ernaehrung/web/component/header_button_component.dart'; -import 'package:flutter/cupertino.dart'; - -class HeaderComponentWeb extends StatelessWidget { - HeaderComponentWeb({Key? key}) : super(key: key); - - final List headerButtons = [ - HeaderData("Heute", const Placeholder()), - HeaderData("Fortschritt", const Placeholder()), - HeaderData("Mahlzeitplan", const Placeholder()) - ]; - - @override - Widget build(BuildContext context) { - return Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: List.generate(headerButtons.length, (index) => - HeaderButton(headerButtons[index].buttonText, headerButtons[index].page)) - ); - } -} - -class HeaderData{ - final String buttonText; - final Widget page; - - HeaderData(this.buttonText, this.page); - - @override - String toString() { - return 'HeaderData{route: $page, buttonText: $buttonText}'; - } - - -} diff --git a/lib/web/component/navigation.dart b/lib/web/component/navigation.dart new file mode 100644 index 0000000..aa9e4b4 --- /dev/null +++ b/lib/web/component/navigation.dart @@ -0,0 +1,60 @@ +import 'package:flutter/material.dart'; + +import '../functions/responsive.dart'; + +class NavigationBarComponent extends StatelessWidget { + NavigationBarComponent({Key? key}) : super(key: key); + + final List navItems = [ + ElevatedButton(onPressed: (){}, child: const Text("Heute")), + ElevatedButton(onPressed: (){}, child: const Text("Gesamtübersicht")), + ElevatedButton(onPressed: (){}, child: const Text("Statistics")) + ]; + + Widget responsiveNavigation(BuildContext context){ + final width = (isDesktop(context) || isTablet(context)) + ? MediaQuery.of(context).size.width * 0.8 + : MediaQuery.of(context).size.width * 1; + + if (isDesktop(context) || isTablet(context)){ + return Container( + width: width, + padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 0), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + crossAxisAlignment: CrossAxisAlignment.center, + children: navItems + ), + ); + }else { + return Container( + width: width, + padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 0), + child: Column( + children: [ + ListView.builder( + shrinkWrap: true, + physics: const NeverScrollableScrollPhysics(), + itemCount: navItems.length, + itemBuilder: (BuildContext context, int index) { + return Container( + width: MediaQuery.of(context).size.width * 0.1, + margin: const EdgeInsets.symmetric( + vertical: 8, + horizontal: 8 + ), + child: navItems[index], + ); + } + ), + ] + ), + ); + } + } + + @override + Widget build(BuildContext context) { + return responsiveNavigation(context); + } +} diff --git a/lib/web/component/section_component.dart b/lib/web/component/section_component.dart deleted file mode 100644 index 17c96a7..0000000 --- a/lib/web/component/section_component.dart +++ /dev/null @@ -1,45 +0,0 @@ -import 'package:ernaehrung/android/components/statistics_circular_indicator_component.dart'; -import 'package:ernaehrung/android/config/cast_helper.dart'; -import 'package:flutter/cupertino.dart'; -import 'package:hive_flutter/adapters.dart'; -import '../../android/components/card_component.dart'; -import '../../android/components/diet_chart_component.dart'; - -class SectionComponent extends StatelessWidget { - const SectionComponent({Key? key}) : super(key: key); - - @override - Widget build(BuildContext context) { - return SingleChildScrollView( - child: Column( - children: [ - const StatisticsPercentComponent( - calorienLeftPercent: 0, - eaten: 0, - calorienBurned: 0, - calorienLeft: 0, - ), - DietChatComponent(1500), - ValueListenableBuilder( - valueListenable: Hive.box("TODAY").listenable(), - builder: (context, box, widget) { - return ListView.builder( - primary: false, - shrinkWrap: true, - itemCount: box.keys.length, - itemBuilder: (context, i) { - if (box.keyAt(i).toString() == "DATE") { - return const SizedBox.shrink(); - } else { - return CardComponent( - eatingMealName: box.keyAt(i).toString(), - selectedMeal: castDynamicToListFood(box.getAt(i)), - ); - } - }); - }), - ], - ), - ); - } -} diff --git a/lib/web/component/today.dart b/lib/web/component/today.dart new file mode 100644 index 0000000..61a27e6 --- /dev/null +++ b/lib/web/component/today.dart @@ -0,0 +1,48 @@ +import 'package:ernaehrung/android/components/chart/chart.dart'; +import 'package:ernaehrung/android/components/chart/round_chart.dart'; +import 'package:flutter/cupertino.dart'; +import 'package:hive/hive.dart'; + +import '../../android/components/form/form_builder.dart'; +import '../../android/components/meals.dart'; +import '../../android/models/user.dart'; +import '../functions/responsive.dart'; + +class CommonWebComponent extends StatefulWidget { + const CommonWebComponent({Key? key}) : super(key: key); + + @override + State createState() => _CommonWebComponentState(); +} + +class _CommonWebComponentState extends State { + Widget widgetResponsiveWidget(context) { + return (isDesktop(context) || isTablet(context)) + ? responsiveTabletAndWebComponent() + : responsiveMobileComponent(); + } + + Widget responsiveTabletAndWebComponent() { + return const Placeholder(); + } + + Widget responsiveMobileComponent() { + final box = Hive.box("USER_BOX"); + return box.isEmpty + ? const FormBuilderComponent(lockTextFields: false) + : SingleChildScrollView( + child: Column( + children: [ + const RoundChartComponent(), + const ChartComponent(), + MealsComponent() + ], + ), + ); + } + + @override + Widget build(BuildContext context) { + return widgetResponsiveWidget(context); + } +} diff --git a/lib/web/functions/responsive.dart b/lib/web/functions/responsive.dart new file mode 100644 index 0000000..17dc73f --- /dev/null +++ b/lib/web/functions/responsive.dart @@ -0,0 +1,11 @@ +import 'package:flutter/material.dart'; + +bool isDesktop(BuildContext context) => + MediaQuery.of(context).size.width >= 1028; + +bool isTablet(BuildContext context) => + MediaQuery.of(context).size.width >= 768 && + MediaQuery.of(context).size.width <= 1027; + +bool isMobile(BuildContext context) => + MediaQuery.of(context).size.width <= 767; \ No newline at end of file diff --git a/lib/web/mobile.dart b/lib/web/mobile.dart deleted file mode 100644 index d522d38..0000000 --- a/lib/web/mobile.dart +++ /dev/null @@ -1,31 +0,0 @@ -import 'package:ernaehrung/web/component/header_component.dart'; -import 'package:ernaehrung/web/component/section_component.dart'; -import 'package:flutter/material.dart'; - -class MobileScreen extends StatelessWidget { - const MobileScreen({Key? key}) : super(key: key); - - @override - Widget build(BuildContext context) { - final screenWidth = MediaQuery.of(context).size.width; - return SizedBox( - width: screenWidth, - height: screenWidth, - child: SingleChildScrollView( - child: Padding( - padding: const EdgeInsets.all(8), - child: Column( - children: [ - HeaderComponentWeb(), - Container( - margin: const EdgeInsets.fromLTRB(0, 24, 0, 0), - child: const Center( - child: SectionComponent() - ), - ) - ], - ), - ), - )); - } -} diff --git a/lib/web/web_app.dart b/lib/web/web_app.dart index fc02f0c..1c2d50a 100644 --- a/lib/web/web_app.dart +++ b/lib/web/web_app.dart @@ -1,4 +1,5 @@ -import 'package:ernaehrung/web/mobile.dart'; +import 'package:ernaehrung/web/component/navigation.dart'; +import 'package:ernaehrung/web/component/today.dart'; import 'package:flutter/material.dart'; import 'package:sizer/sizer.dart'; @@ -13,7 +14,7 @@ class WebApp extends StatelessWidget { debugShowCheckedModeBanner: false, title: 'Sizer', theme: ThemeData.light(), - home: const HomeScreen() , + home: const HomeScreen(), ); }, ); @@ -28,34 +29,18 @@ class HomeScreen extends StatefulWidget { } class _HomeScreenState extends State { - - bool isDesktop(BuildContext context) => MediaQuery.of(context).size.width >= 1028; - bool isTablet(BuildContext context) => - MediaQuery.of(context).size.width >= 768 && MediaQuery.of(context).size.width <= 1027; - bool isMobile(BuildContext context) => MediaQuery.of(context).size.width <= 767; - - Widget getDeviceType(context){ - if(isDesktop(context)){ - return const Text("Desktop"); - }else if(isTablet(context)){ - return const Text("Tablet"); - }else if(isMobile(context)){ - return const MobileScreen(); - } - - return const SizedBox.shrink(); - } - @override Widget build(BuildContext context) { - return Scaffold( - body: Row( - children: [ - getDeviceType(context), - ], - ) + return Scaffold( + body: SizedBox( + width: MediaQuery.of(context).size.width * 1, + height: MediaQuery.of(context).size.height * 1, + child: SingleChildScrollView( + child: Column( + children: [NavigationBarComponent(), const CommonWebComponent()], + ), + ), + ), ); } } - - diff --git a/linux/flutter/generated_plugin_registrant.cc b/linux/flutter/generated_plugin_registrant.cc index e71a16d..675b719 100644 --- a/linux/flutter/generated_plugin_registrant.cc +++ b/linux/flutter/generated_plugin_registrant.cc @@ -6,6 +6,10 @@ #include "generated_plugin_registrant.h" +#include void fl_register_plugins(FlPluginRegistry* registry) { + g_autoptr(FlPluginRegistrar) dynamic_color_registrar = + fl_plugin_registry_get_registrar_for_plugin(registry, "DynamicColorPlugin"); + dynamic_color_plugin_register_with_registrar(dynamic_color_registrar); } diff --git a/linux/flutter/generated_plugins.cmake b/linux/flutter/generated_plugins.cmake index 2e1de87..3e303c1 100644 --- a/linux/flutter/generated_plugins.cmake +++ b/linux/flutter/generated_plugins.cmake @@ -3,6 +3,7 @@ # list(APPEND FLUTTER_PLUGIN_LIST + dynamic_color ) list(APPEND FLUTTER_FFI_PLUGIN_LIST diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift index e777c67..4d88d02 100644 --- a/macos/Flutter/GeneratedPluginRegistrant.swift +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -5,8 +5,12 @@ import FlutterMacOS import Foundation +import dynamic_color +import macos_ui import path_provider_foundation func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { + DynamicColorPlugin.register(with: registry.registrar(forPlugin: "DynamicColorPlugin")) + MacOSUiPlugin.register(with: registry.registrar(forPlugin: "MacOSUiPlugin")) PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) } diff --git a/pubspec.lock b/pubspec.lock index f8d440b..05f1185 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -9,6 +9,14 @@ packages: url: "https://pub.dev" source: hosted version: "59.0.0" + adaptive_dialog: + dependency: "direct main" + description: + name: adaptive_dialog + sha256: "570a517946abc252b79ca09ed95c7e397ccf669b052c76173448b981a3c4b207" + url: "https://pub.dev" + source: hosted + version: "1.8.3+1" analyzer: dependency: transitive description: @@ -25,6 +33,14 @@ packages: url: "https://pub.dev" source: hosted version: "0.0.2" + animations: + dependency: transitive + description: + name: animations + sha256: fe8a6bdca435f718bb1dc8a11661b2c22504c6da40ef934cee8327ed77934164 + url: "https://pub.dev" + source: hosted + version: "2.0.7" args: dependency: transitive description: @@ -65,6 +81,22 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.1" + bs_flutter_modal: + dependency: "direct main" + description: + name: bs_flutter_modal + sha256: a29ee8c83df35e6c861b58f1f175de6118408583357cdb9bdc5597565b49a612 + url: "https://pub.dev" + source: hosted + version: "1.0.6" + bs_flutter_utils: + dependency: transitive + description: + name: bs_flutter_utils + sha256: "4d405d1a2ac8287dacb51b464ca2496a785334c75a49263e914038d600ed25ff" + url: "https://pub.dev" + source: hosted + version: "1.0.2" build: dependency: transitive description: @@ -209,6 +241,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.3.1" + dynamic_color: + dependency: transitive + description: + name: dynamic_color + sha256: "74dff1435a695887ca64899b8990004f8d1232b0e84bfc4faa1fdda7c6f57cc1" + url: "https://pub.dev" + source: hosted + version: "1.6.5" empty_widget: dependency: "direct main" description: @@ -405,6 +445,14 @@ packages: url: "https://pub.dev" source: hosted version: "4.0.2" + intersperse: + dependency: transitive + description: + name: intersperse + sha256: "2f8a905c96f6cbba978644a3d5b31b8d86ddc44917662df7d27a61f3df66a576" + url: "https://pub.dev" + source: hosted + version: "2.0.0" intl: dependency: transitive description: @@ -453,6 +501,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.1.1" + macos_ui: + dependency: transitive + description: + name: macos_ui + sha256: "57208eec8180656acd379e1c754e9b6d8830f32a020b94571ae2188f8112075b" + url: "https://pub.dev" + source: hosted + version: "1.12.2" matcher: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index ecec372..9ea8f48 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -51,6 +51,8 @@ dependencies: form_builder_validators: ^8.0.0 fluttertoast: ^8.0.7 flutter_profile_picture: ^2.0.0 + bs_flutter_modal: ^1.0.6 + adaptive_dialog: ^1.8.3+1 dev_dependencies: -- 2.51.0 From 29b16918c064254c3ed1b35fd6175287900a33be Mon Sep 17 00:00:00 2001 From: 98spag Date: Fri, 16 Jun 2023 11:44:42 +0200 Subject: [PATCH 21/32] feat: changes --- .dart_tool/package_config.json | 222 ++++----- .dart_tool/package_config_subset | 448 +++++++++--------- .flutter-plugins-dependencies | 2 +- lib/android/components/card_component.dart | 27 +- lib/android/components/chart/chart.dart | 4 +- .../components/food_list_component.dart | 17 +- .../components/meal_page_food_component.dart | 2 +- .../secondary_text_component.dart | 61 ++- lib/android/config/format_helper.dart | 6 +- lib/android/config/statistics.dart | 29 +- .../pages/nav_pages/progress_page.dart | 15 +- lib/main.dart | 8 +- lib/web/component/navigation.dart | 60 --- lib/web/component/today.dart | 48 -- lib/web/functions/responsive.dart | 11 - lib/web/web_app.dart | 46 -- test/statistics_test.dart | 95 ++++ 17 files changed, 540 insertions(+), 561 deletions(-) delete mode 100644 lib/web/component/navigation.dart delete mode 100644 lib/web/component/today.dart delete mode 100644 lib/web/functions/responsive.dart delete mode 100644 lib/web/web_app.dart create mode 100644 test/statistics_test.dart diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index 10d3553..834dc71 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -3,661 +3,661 @@ "packages": [ { "name": "_fe_analyzer_shared", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "adaptive_dialog", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "analyzer", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "animate_gradient", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "animations", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "args", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "assorted_layout_widgets", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "async", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "basic_utils", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "boolean_selector", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "bs_flutter_modal", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "bs_flutter_utils", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "build", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build_config", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_daemon", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_resolvers", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "build_runner", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_runner_core", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "built_collection", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "built_value", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "card_swiper", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "characters", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "checked_yaml", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "clock", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "code_builder", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "collection", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "convert", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "crypto", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "cupertino_icons", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "dart_style", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "dynamic_color", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "empty_widget", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "equatable", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fake_async", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "ffi", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "file", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fixnum", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "fl_chart", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter", - "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter", + "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_dotenv", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_form_builder", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "flutter_lints", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_localizations", - "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_localizations", + "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_localizations", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_profile_picture", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_test", - "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_test", + "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_test", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_web_plugins", - "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_web_plugins", + "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "fluttertoast", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "form_builder_validators", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "frontend_server_client", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "glob", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "graphs", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_flutter", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_generator", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "http_multi_server", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http_parser", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intersperse", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intl", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "io", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "js", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "json_annotation", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "lints", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "logging", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "macos_ui", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "matcher", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "material_color_utilities", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "matrix4_transform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "meta", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "mime", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "package_config", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_android", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_foundation", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "path_provider_linux", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_platform_interface", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider_windows", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "percent_indicator", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "platform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "plugin_platform_interface", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pointycastle", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pool", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "process", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pub_semver", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pubspec_parse", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "responsive_framework", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "searchable_listview", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "shelf", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "shelf_web_socket", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "sizer", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "sky_engine", - "rootUri": "file:///Users/bogdan/fvm/versions/3.7.9/bin/cache/pkg/sky_engine", + "rootUri": "file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "source_gen", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "source_helper", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "source_span", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stack_trace", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "stream_channel", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stream_transform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "string_scanner", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "term_glyph", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "test_api", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "timing", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "typed_data", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "universal_io", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "vector_math", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "watcher", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "web_socket_channel", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "win32", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "xdg_directories", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "yaml", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2", "packageUri": "lib/", "languageVersion": "2.19" }, @@ -668,7 +668,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-08T14:59:35.567465Z", + "generated": "2023-06-16T09:43:41.438975Z", "generator": "pub", "generatorVersion": "2.19.6" } diff --git a/.dart_tool/package_config_subset b/.dart_tool/package_config_subset index 40f0f42..32e4a04 100644 --- a/.dart_tool/package_config_subset +++ b/.dart_tool/package_config_subset @@ -1,445 +1,445 @@ _fe_analyzer_shared 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ adaptive_dialog 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/lib/ analyzer 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.11.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/lib/ animate_gradient 2.16 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ animations 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7/lib/ args 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/lib/ assorted_layout_widgets 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ async 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/lib/ basic_utils 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/lib/ boolean_selector 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ bs_flutter_modal 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6/lib/ bs_flutter_utils 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2/lib/ build 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/lib/ build_config 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/lib/ build_daemon 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/lib/ build_resolvers 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ build_runner 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/lib/ build_runner_core 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ built_collection 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/lib/ built_value 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.5.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/lib/ card_swiper 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/lib/ characters 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/lib/ checked_yaml 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ clock 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/ code_builder 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.4.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/lib/ collection 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/lib/ convert 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/ crypto 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/ cupertino_icons 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ dart_style 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/lib/ dynamic_color 2.16 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5/lib/ empty_widget 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/lib/ equatable 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/lib/ fake_async 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/ ffi 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/lib/ file 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/lib/ fixnum 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/lib/ fl_chart 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/lib/ flutter_dotenv 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ flutter_form_builder 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ flutter_lints 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ flutter_profile_picture 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0/lib/ fluttertoast 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ form_builder_validators 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ frontend_server_client 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ glob 2.15 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/lib/ graphs 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/lib/ hive 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/lib/ hive_flutter 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ hive_generator 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/lib/ http 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/lib/ http_multi_server 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ http_parser 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/ intersperse 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0/lib/ intl 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/lib/ io 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/lib/ js 2.16 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/lib/ json_annotation 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/lib/ lints 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/lib/ logging 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/lib/ macos_ui 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2/lib/ matcher 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/lib/ material_color_utilities 2.13 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ matrix4_transform 2.13 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ meta 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/lib/ mime 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/lib/ package_config 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/lib/ path 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/lib/ path_provider 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.14/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/lib/ path_provider_android 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ path_provider_foundation 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ path_provider_linux 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ path_provider_platform_interface 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ path_provider_windows 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ percent_indicator 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ platform 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/lib/ plugin_platform_interface 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ pointycastle 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib/ pool 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/lib/ process 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/lib/ pub_semver 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/lib/ pubspec_parse 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ responsive_framework 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ searchable_listview 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ shelf 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/lib/ shelf_web_socket 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ sizer 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/lib/ source_gen 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/lib/ source_helper 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/lib/ source_span 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/lib/ stack_trace 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/ stream_channel 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/ stream_transform 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/lib/ string_scanner 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/ term_glyph 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/ test_api 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/lib/ timing 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/lib/ typed_data 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/lib/ universal_io 2.15 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/lib/ vector_math 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/ watcher 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/lib/ web_socket_channel 2.15 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ win32 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/lib/ xdg_directories 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ yaml 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/lib/ -ernaehrung -2.19 -file:///Users/bogdan/IdeaProjects/ernaehrung/ -file:///Users/bogdan/IdeaProjects/ernaehrung/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/lib/ sky_engine 2.12 -file:///Users/bogdan/fvm/versions/3.7.9/bin/cache/pkg/sky_engine/ -file:///Users/bogdan/fvm/versions/3.7.9/bin/cache/pkg/sky_engine/lib/ +file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine/ +file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine/lib/ flutter 2.17 -file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter/ -file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter/lib/ +file:///C:/Users/Nutzer/flutter/packages/flutter/ +file:///C:/Users/Nutzer/flutter/packages/flutter/lib/ flutter_localizations 2.17 -file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_localizations/ -file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_localizations/lib/ +file:///C:/Users/Nutzer/flutter/packages/flutter_localizations/ +file:///C:/Users/Nutzer/flutter/packages/flutter_localizations/lib/ flutter_test 2.17 -file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_test/ -file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_test/lib/ +file:///C:/Users/Nutzer/flutter/packages/flutter_test/ +file:///C:/Users/Nutzer/flutter/packages/flutter_test/lib/ flutter_web_plugins 2.17 -file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_web_plugins/ -file:///Users/bogdan/fvm/versions/3.7.9/packages/flutter_web_plugins/lib/ +file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins/ +file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins/lib/ +ernaehrung +2.19 +file:///C:/Users/Nutzer/source/repos/Flutter-Ernaehrungsapp/ +file:///C:/Users/Nutzer/source/repos/Flutter-Ernaehrungsapp/lib/ 2 diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 7359932..8c95291 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.2/","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.10/","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.6/","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-13 16:03:42.984433","version":"3.7.9"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.0.27\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\macos_ui-1.12.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.1.10\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.1.6\\\\","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-16 11:44:06.544279","version":"3.7.11"} \ No newline at end of file diff --git a/lib/android/components/card_component.dart b/lib/android/components/card_component.dart index 1bd69d5..32f3efd 100644 --- a/lib/android/components/card_component.dart +++ b/lib/android/components/card_component.dart @@ -1,6 +1,5 @@ import 'package:basic_utils/basic_utils.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_dotenv/flutter_dotenv.dart'; import '../config/format_helper.dart'; import '../models/food.dart'; import '../pages/nav_pages/search_food.dart'; @@ -42,18 +41,7 @@ class _CardComponentState extends State { ); } - getImageOfMeal() { - if (widget.eatingMealName.toLowerCase() == - dotenv.env['BREAKFAST_FIELD']!.toLowerCase()) { - return const Image(image: AssetImage('assets/images/tea.png')); - } else if (widget.eatingMealName.toLowerCase() == - dotenv.env['LUNCH_FIELD']!.toLowerCase()) { - return const Image(image: AssetImage('assets/images/fries.png')); - } else if (widget.eatingMealName.toLowerCase() == - dotenv.env['DINNER_FIELD']!.toLowerCase()) { - return const Image(image: AssetImage('assets/images/ice.png')); - } - } + String capitalize(String s) => s[0].toUpperCase() + s.substring(1); @@ -105,7 +93,6 @@ class _CardComponentState extends State { children: [ Row( children: [ - getImageOfMeal(), Text( StringUtils.capitalize(widget.eatingMealName), maxLines: 1, @@ -113,8 +100,8 @@ class _CardComponentState extends State { softWrap: false, style: const TextStyle( color: Colors.black, - fontWeight: FontWeight.w500, - fontSize: 14), + fontWeight: FontWeight.bold, + fontSize: 16), ), getElevatedButton(), ], @@ -134,8 +121,12 @@ class _CardComponentState extends State { widget.selectedMeal); String foodName = map.keys.elementAt(i); List values = map.values.elementAt(i); - return Text(getFoodListStringByFood( - foodName, values[0], values[1])); + return Padding( + padding: const EdgeInsets.only(top: 10.0), // Adjust the padding as needed + child: Text( + "${i+1}. ${getFoodListStringByFood(foodName, values[0], values[1])}", + ), + ); }), ), widget.selectedMeal.isNotEmpty diff --git a/lib/android/components/chart/chart.dart b/lib/android/components/chart/chart.dart index cd3c7a8..13d1644 100644 --- a/lib/android/components/chart/chart.dart +++ b/lib/android/components/chart/chart.dart @@ -153,7 +153,9 @@ class ChartComponent extends StatelessWidget { height: 10, ), const SecondaryTextComponent( - "Durchschnittlich"), + "Durchschnittlich", + null + ), SecondaryBigTextComponent( "${value.toString()} kcal/Tag"), ], diff --git a/lib/android/components/food_list_component.dart b/lib/android/components/food_list_component.dart index b05b1d1..fa0e4ee 100644 --- a/lib/android/components/food_list_component.dart +++ b/lib/android/components/food_list_component.dart @@ -19,16 +19,13 @@ class FoodComponent extends StatelessWidget { shrinkWrap: true, itemCount: box.keys.length, itemBuilder: (context, i) { - if (box.keyAt(i).toString() == "DATE") { - return const SizedBox.shrink(); - } else { - return CardComponent( - eatingMealName: box.keyAt(i).toString(), - selectedMeal: castDynamicToListFood(box.getAt(i)), - addButtonVisible: box.name != StatisticsService.instance.todayStatisticsBoxName.toLowerCase(), - ); - } - }); + return CardComponent( + eatingMealName: box.keyAt(i).toString(), + selectedMeal: castDynamicToListFood(box.getAt(i)), + addButtonVisible: box.name != StatisticsService.instance.todayStatisticsBoxName.toLowerCase(), + ); + } + ); }); } diff --git a/lib/android/components/meal_page_food_component.dart b/lib/android/components/meal_page_food_component.dart index 08321d4..ce715e7 100644 --- a/lib/android/components/meal_page_food_component.dart +++ b/lib/android/components/meal_page_food_component.dart @@ -18,7 +18,7 @@ class MealPageStatisticsFoodComponent extends StatelessWidget { child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - const TitleComponent("Nahrung"), + const TitleComponent("Alle Mahlzeiten"), FoodComponent( box: Hive.box(StatisticsService.instance.todayStatisticsBoxName), ) diff --git a/lib/android/components/meal_page_text/secondary_text_component.dart b/lib/android/components/meal_page_text/secondary_text_component.dart index d56e287..cc515b8 100644 --- a/lib/android/components/meal_page_text/secondary_text_component.dart +++ b/lib/android/components/meal_page_text/secondary_text_component.dart @@ -2,18 +2,63 @@ import 'package:flutter/material.dart'; class SecondaryTextComponent extends StatelessWidget { final String title; + final int? rank; - const SecondaryTextComponent(this.title, {Key? key}) : super(key: key); + const SecondaryTextComponent(this.title, this.rank,{Key? key,}) : super(key: key); @override Widget build(BuildContext context) { - return Text( - title.toString(), - style: TextStyle( - color: Colors.grey.shade500, - fontSize: 14, - fontWeight: FontWeight.w500), - textAlign: TextAlign.left, + final TextStyle textStyle = TextStyle( + color: Colors.grey.shade500, + fontSize: 14, + fontWeight: FontWeight.bold, + ); + + Widget textWidget; + + if (rank != null) { + textWidget = Container( + decoration: BoxDecoration( + color: getRankColor(rank!), + borderRadius: BorderRadius.circular(15), + ), + padding: const EdgeInsets.all(8), + child: Row( + children: [ + Text( + '$rank.', + style: rank! <= 3 ? textStyle.copyWith(color: Colors.white) :textStyle.copyWith(color: Colors.grey), + ), + const SizedBox(width: 4), + Text( + title.toString(), + style: rank! <= 3 ? textStyle.copyWith(color: Colors.white) :textStyle.copyWith(color: Colors.grey), + ), + ], + ), + ); + } else { + textWidget = Text( + title.toString(), + style: textStyle, + ); + } + + return Padding( + padding: const EdgeInsets.only(top: 8.0), + child: textWidget, ); } + + Color getRankColor(int rank) { + if (rank == 1) { + return Colors.amber; + } else if (rank == 2) { + return Colors.grey; + } else if (rank == 3) { + return Colors.brown; + } else { + return Colors.transparent; + } + } } diff --git a/lib/android/config/format_helper.dart b/lib/android/config/format_helper.dart index 89dc94e..637a4b8 100644 --- a/lib/android/config/format_helper.dart +++ b/lib/android/config/format_helper.dart @@ -7,14 +7,14 @@ String getFoodListStringByFood(String foodName, int count, int calories){ } String getWeeklyRankingString(String foodName){ - int maxWidth = 45; - String limitedText = foodName.length > maxWidth ? "${foodName.substring(0, maxWidth - 3)} ... " : foodName; + int maxWidth = 40; + String limitedText = foodName.length > maxWidth ? "${foodName.substring(0, maxWidth - 3)} ..." : foodName; return limitedText; } String getToastFoodNameString(Food food){ int maxWidth = 25; - String limitedText = food.name.length > maxWidth ? "${food.name.substring(0, maxWidth - 3)} ... " : food.name; + String limitedText = food.name.length > maxWidth ? "${food.name.substring(0, maxWidth - 3)} ..." : food.name; return limitedText; } diff --git a/lib/android/config/statistics.dart b/lib/android/config/statistics.dart index 67df099..47525d2 100644 --- a/lib/android/config/statistics.dart +++ b/lib/android/config/statistics.dart @@ -17,11 +17,11 @@ class StatisticsService { static StatisticsService get instance => _instance; StatisticsService._internal() { - initBoxes(); + //initBoxes(); } - final String todayStatisticsBoxName = dotenv.env['STATISTICS_TODAY_BOX'] ?? 'STATISTICS_TODAY_BOX'; - final String mainStatisticsBoxName = dotenv.env['STATISTICS_MAIN_BOX'] ?? 'STATISTICS_MAIN_BOX'; - final String progressStatisticsBoxName = dotenv.env['STATISTICS_PROGRESS_BOX'] ?? 'STATISTICS_PROGRESS_BOX'; + String todayStatisticsBoxName = dotenv.env['STATISTICS_TODAY_BOX'] ?? 'STATISTICS_TODAY_BOX'; + String mainStatisticsBoxName = dotenv.env['STATISTICS_MAIN_BOX'] ?? 'STATISTICS_MAIN_BOX'; + String progressStatisticsBoxName = dotenv.env['STATISTICS_PROGRESS_BOX'] ?? 'STATISTICS_PROGRESS_BOX'; ValueNotifier eatenCalories = ValueNotifier(0); /* @@ -94,7 +94,19 @@ class StatisticsService { } } + bool timestampIsValid(int timestamp){ + try{ + DateTime.fromMillisecondsSinceEpoch(timestamp*1000); + return true; + }catch(e){ + return false; + } + } + List getTimestampsByTimestampAndTimespan(TimeSpan timespan, int timestamp) { + if(!timestampIsValid(timestamp)){ + return []; + } int range = timespan == TimeSpan.week ? 7 : 31; int targetWeekday = DateTime.monday; // Example target weekday (Monday) DateTime currentDateTime = DateTime.fromMillisecondsSinceEpoch(timestamp * 1000); @@ -162,6 +174,9 @@ class StatisticsService { } isDateEqual(int timestamp1, int timestamp2){ + if(!timestampIsValid(timestamp1) || !timestampIsValid(timestamp2)){ + return false; + } return getDayAsIntFromTimestamp(timestamp1) == getDayAsIntFromTimestamp(timestamp2) && getMonthAsIntFromTimestamp(timestamp1) == getMonthAsIntFromTimestamp(timestamp2) && @@ -296,7 +311,11 @@ class StatisticsService { int getSumOfCaloriesByFoodList(List foods){ int sum = 0; for(int i = 0; i < foods.length;i++){ - sum += foods[i].calories as int; + try{ + sum += foods[i].calories as int; + }catch(e){ + throw const FormatException('please check formats'); + } } return sum; } diff --git a/lib/android/pages/nav_pages/progress_page.dart b/lib/android/pages/nav_pages/progress_page.dart index 71284ae..cef701d 100644 --- a/lib/android/pages/nav_pages/progress_page.dart +++ b/lib/android/pages/nav_pages/progress_page.dart @@ -1,11 +1,8 @@ import 'package:ernaehrung/android/components/chart/chart.dart'; -import 'package:ernaehrung/android/components/meal_page_text/secondary_big_text_component.dart'; import 'package:ernaehrung/android/components/meal_page_text/secondary_text_component.dart'; import 'package:ernaehrung/android/components/meal_page_text/title_component.dart'; import 'package:ernaehrung/android/config/statistics.dart'; -import 'package:fl_chart/fl_chart.dart'; import 'package:flutter/material.dart'; - import '../../config/format_helper.dart'; class ProgressPage extends StatelessWidget { @@ -45,16 +42,20 @@ class ProgressPage extends StatelessWidget { const TitleComponent( "Lebensmittel mit dem höchsten Kaloriengehalt"), const SizedBox( - height: 24, + height: 5, ), - for (var item in value.toSet()) + for (var item in value) Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ SecondaryTextComponent( - getWeeklyRankingString(item.name)), + getWeeklyRankingString(item.name), + value.indexOf(item)+1 + ), SecondaryTextComponent( - item.calories.toString()), + item.calories.toString(), + null + ), ], ), ], diff --git a/lib/main.dart b/lib/main.dart index ce2e36e..60bafcc 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,11 +1,9 @@ import 'package:ernaehrung/android/models/food.dart'; import 'package:ernaehrung/android/models/user.dart'; -import 'package:ernaehrung/web/web_app.dart'; import 'package:flutter/material.dart'; import 'package:hive_flutter/hive_flutter.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'android/android_app.dart'; -import 'package:flutter/foundation.dart' show defaultTargetPlatform, kIsWeb; import 'android/config/setup_todaybox_config.dart'; @@ -24,10 +22,6 @@ void main() async { await Hive.openBox(dotenv.env['MEALPLAN_BOX'] ?? 'MEALPLAN'); await Hive.openBox('USER_BOX'); setupTodayBox(); + runApp(const AndroidApp()); - if (defaultTargetPlatform == TargetPlatform.android) { - runApp(const AndroidApp()); - } else if (kIsWeb) { - runApp(const WebApp()); - } } diff --git a/lib/web/component/navigation.dart b/lib/web/component/navigation.dart deleted file mode 100644 index aa9e4b4..0000000 --- a/lib/web/component/navigation.dart +++ /dev/null @@ -1,60 +0,0 @@ -import 'package:flutter/material.dart'; - -import '../functions/responsive.dart'; - -class NavigationBarComponent extends StatelessWidget { - NavigationBarComponent({Key? key}) : super(key: key); - - final List navItems = [ - ElevatedButton(onPressed: (){}, child: const Text("Heute")), - ElevatedButton(onPressed: (){}, child: const Text("Gesamtübersicht")), - ElevatedButton(onPressed: (){}, child: const Text("Statistics")) - ]; - - Widget responsiveNavigation(BuildContext context){ - final width = (isDesktop(context) || isTablet(context)) - ? MediaQuery.of(context).size.width * 0.8 - : MediaQuery.of(context).size.width * 1; - - if (isDesktop(context) || isTablet(context)){ - return Container( - width: width, - padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - crossAxisAlignment: CrossAxisAlignment.center, - children: navItems - ), - ); - }else { - return Container( - width: width, - padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 0), - child: Column( - children: [ - ListView.builder( - shrinkWrap: true, - physics: const NeverScrollableScrollPhysics(), - itemCount: navItems.length, - itemBuilder: (BuildContext context, int index) { - return Container( - width: MediaQuery.of(context).size.width * 0.1, - margin: const EdgeInsets.symmetric( - vertical: 8, - horizontal: 8 - ), - child: navItems[index], - ); - } - ), - ] - ), - ); - } - } - - @override - Widget build(BuildContext context) { - return responsiveNavigation(context); - } -} diff --git a/lib/web/component/today.dart b/lib/web/component/today.dart deleted file mode 100644 index 61a27e6..0000000 --- a/lib/web/component/today.dart +++ /dev/null @@ -1,48 +0,0 @@ -import 'package:ernaehrung/android/components/chart/chart.dart'; -import 'package:ernaehrung/android/components/chart/round_chart.dart'; -import 'package:flutter/cupertino.dart'; -import 'package:hive/hive.dart'; - -import '../../android/components/form/form_builder.dart'; -import '../../android/components/meals.dart'; -import '../../android/models/user.dart'; -import '../functions/responsive.dart'; - -class CommonWebComponent extends StatefulWidget { - const CommonWebComponent({Key? key}) : super(key: key); - - @override - State createState() => _CommonWebComponentState(); -} - -class _CommonWebComponentState extends State { - Widget widgetResponsiveWidget(context) { - return (isDesktop(context) || isTablet(context)) - ? responsiveTabletAndWebComponent() - : responsiveMobileComponent(); - } - - Widget responsiveTabletAndWebComponent() { - return const Placeholder(); - } - - Widget responsiveMobileComponent() { - final box = Hive.box("USER_BOX"); - return box.isEmpty - ? const FormBuilderComponent(lockTextFields: false) - : SingleChildScrollView( - child: Column( - children: [ - const RoundChartComponent(), - const ChartComponent(), - MealsComponent() - ], - ), - ); - } - - @override - Widget build(BuildContext context) { - return widgetResponsiveWidget(context); - } -} diff --git a/lib/web/functions/responsive.dart b/lib/web/functions/responsive.dart deleted file mode 100644 index 17dc73f..0000000 --- a/lib/web/functions/responsive.dart +++ /dev/null @@ -1,11 +0,0 @@ -import 'package:flutter/material.dart'; - -bool isDesktop(BuildContext context) => - MediaQuery.of(context).size.width >= 1028; - -bool isTablet(BuildContext context) => - MediaQuery.of(context).size.width >= 768 && - MediaQuery.of(context).size.width <= 1027; - -bool isMobile(BuildContext context) => - MediaQuery.of(context).size.width <= 767; \ No newline at end of file diff --git a/lib/web/web_app.dart b/lib/web/web_app.dart deleted file mode 100644 index 1c2d50a..0000000 --- a/lib/web/web_app.dart +++ /dev/null @@ -1,46 +0,0 @@ -import 'package:ernaehrung/web/component/navigation.dart'; -import 'package:ernaehrung/web/component/today.dart'; -import 'package:flutter/material.dart'; -import 'package:sizer/sizer.dart'; - -class WebApp extends StatelessWidget { - const WebApp({Key? key}) : super(key: key); - - @override - Widget build(BuildContext context) { - return Sizer( - builder: (context, orientation, deviceType) { - return MaterialApp( - debugShowCheckedModeBanner: false, - title: 'Sizer', - theme: ThemeData.light(), - home: const HomeScreen(), - ); - }, - ); - } -} - -class HomeScreen extends StatefulWidget { - const HomeScreen({Key? key}) : super(key: key); - - @override - State createState() => _HomeScreenState(); -} - -class _HomeScreenState extends State { - @override - Widget build(BuildContext context) { - return Scaffold( - body: SizedBox( - width: MediaQuery.of(context).size.width * 1, - height: MediaQuery.of(context).size.height * 1, - child: SingleChildScrollView( - child: Column( - children: [NavigationBarComponent(), const CommonWebComponent()], - ), - ), - ), - ); - } -} diff --git a/test/statistics_test.dart b/test/statistics_test.dart new file mode 100644 index 0000000..10190e3 --- /dev/null +++ b/test/statistics_test.dart @@ -0,0 +1,95 @@ +import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; +import 'package:ernaehrung/android/config/format_helper.dart'; +import 'package:ernaehrung/android/config/statistics.dart'; +import 'package:ernaehrung/android/models/food.dart'; +import 'package:flutter_test/flutter_test.dart'; + + + + late StatisticsService statisticsService; +Future main() async { + setUp(() async { + statisticsService = StatisticsService.instance; + }); + + tearDown(() async { + //await Hive.close(); // Close Hive at the end of tests + + }); + + getTimestampFromNow(){ + DateTime now = DateTime.now(); + return now.millisecondsSinceEpoch.toInt() ~/ 1000; + } + + getTimeStampForDateTime(DateTime date){ + return date.millisecondsSinceEpoch.toInt() ~/ 1000; + } + + getFoodListValid(){ + // 1500kcal + return [ + Food(167511, "Testfood","",300,0,0,0,0,0), + Food(167512, "TestfoodTestfoodTestfoodTestfood","",300,0,0,0,0,0), + Food(167512, "","",300,0,0,0,0,0), + Food(167512, "","",300,0,0,0,0,0), + Food(167512, "","",300,0,0,0,0,0) + ]; + } + + getInvalidFoodList(){ + return [ + Food(167512, "","",300,0,0,0,0,0), + Food(167512, "","",300,0,0,0,0,0), + Food(167512, "","",300,0,0,0,0,0), + Food(167512, "","","300",0,0,0,0,0), + Food(167512, "","",-200,0,0,0,0,0) + ]; + } + + test('check if given timestamp returns valid timespan or catches invalid timestamp', () { + List day = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.day,getTimestampFromNow()); + expect(31, day.length); + List week = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.week,getTimestampFromNow()); + expect(7, week.length); + List month = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.month,getTimestampFromNow()); + expect(31, month.length); + List invalidTimestamp = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.month,9999999999999); + expect(0, invalidTimestamp.length); + }); + + test('check if dates are returned correctly from timestamp', () { + int day = statisticsService.getDayAsIntFromTimestamp(getTimestampFromNow()); + expect(DateTime.now().day, day); + int month = statisticsService.getMonthAsIntFromTimestamp(getTimestampFromNow()); + expect(DateTime.now().month, month); + int year = statisticsService.getYearAsIntFromTimestamp(getTimestampFromNow()); + expect(DateTime.now().year, year); + }); + + test('check if date comparison is right', () { + int today = getTimestampFromNow(); + expect(true,statisticsService.isDateEqual(today, today)); + int other = getTimeStampForDateTime(DateTime.utc(2010)); + expect(false,statisticsService.isDateEqual(today, other)); + expect(false,statisticsService.isDateEqual(9999999999999, today)); + expect(false,statisticsService.isDateEqual(other, 9999999999999)); + expect(false,statisticsService.isDateEqual(other, -1)); + expect(false,statisticsService.isDateEqual(other, 0)); + }); + + test('check if calories are summed up correctly for given food list',() { + expect(1500, statisticsService.getSumOfCaloriesByFoodList(getFoodListValid())); + expect(() => statisticsService.getSumOfCaloriesByFoodList(getInvalidFoodList()),throwsException); + }); + + test('check if format helper are working right',() { + expect(2,getListOfDistinctElements(getFoodListValid()).length); + expect(3,getMapOfDistinctElementsWithCounterAndCalories(getFoodListValid()).keys.length); + expect("Testfood",getToastFoodNameString(getFoodListValid()[0])); + expect("TestfoodTestfoodTestfo ...",getToastFoodNameString(getFoodListValid()[1])); + Food food = getFoodListValid()[0]; + expect("Testfood 2 x 600 kcal", getFoodListStringByFood(food.name, 2, 600)); + }); + +} -- 2.51.0 From 2623e97718a97d0eb85a7d301b3bee29175d5ea3 Mon Sep 17 00:00:00 2001 From: 98spag Date: Fri, 16 Jun 2023 11:46:32 +0200 Subject: [PATCH 22/32] feat: remove web componetns --- lib/android/components/form/form_builder.dart | 22 +++++-------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart index 7efd175..666051c 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/android/components/form/form_builder.dart @@ -1,10 +1,7 @@ import 'package:ernaehrung/android/components/form/form_builder_text_field_component.dart'; -import 'package:ernaehrung/web/component/today.dart'; -import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_form_builder/flutter_form_builder.dart'; import 'package:hive/hive.dart'; -import '../../../web/web_app.dart'; import '../../models/form_builder.dart'; import '../../models/user.dart'; @@ -160,19 +157,12 @@ class _FormBuilderComponentState extends State { int.parse(formKey.currentState?.fields['kalorien']?.value) )); } - - - if (kIsWeb) { - Navigator.of(context).push(MaterialPageRoute(builder: (BuildContext context) => const HomeScreen())); - } - else{ - Future.delayed( - const Duration(seconds: 2), - () => Navigator.of(context) - .pushNamedAndRemoveUntil('/navigation', (Route route) - => false) - ); - } + Future.delayed( + const Duration(seconds: 2), + () => Navigator.of(context) + .pushNamedAndRemoveUntil('/navigation', (Route route) + => false) + ); }, child: const Text("Eingaben bestätigen"), )), -- 2.51.0 From 0cdab965527dc4a71d25ea6b20ec25a2c2bb1844 Mon Sep 17 00:00:00 2001 From: 98spag Date: Fri, 16 Jun 2023 11:47:52 +0200 Subject: [PATCH 23/32] feat: fix tests --- test/statistics_test.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/statistics_test.dart b/test/statistics_test.dart index 10190e3..02d9821 100644 --- a/test/statistics_test.dart +++ b/test/statistics_test.dart @@ -2,12 +2,15 @@ import 'package:ernaehrung/android/components/meal_page_text/days_component.dart import 'package:ernaehrung/android/config/format_helper.dart'; import 'package:ernaehrung/android/config/statistics.dart'; import 'package:ernaehrung/android/models/food.dart'; +import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:flutter_test/flutter_test.dart'; - late StatisticsService statisticsService; +late StatisticsService statisticsService; Future main() async { + await dotenv.load(fileName: ".env"); + setUp(() async { statisticsService = StatisticsService.instance; }); -- 2.51.0 From 686657628aff128e2d98c6408d76169f83d80727 Mon Sep 17 00:00:00 2001 From: 98spag Date: Fri, 16 Jun 2023 12:03:04 +0200 Subject: [PATCH 24/32] feat: adjust text width for web --- lib/android/components/card_component.dart | 2 +- .../components/founded_search_component.dart | 10 ++++---- lib/android/config/format_helper.dart | 23 ++++++++++++++++--- .../pages/nav_pages/progress_page.dart | 2 +- test/statistics_test.dart | 6 ++--- 5 files changed, 30 insertions(+), 13 deletions(-) diff --git a/lib/android/components/card_component.dart b/lib/android/components/card_component.dart index 32f3efd..2f53973 100644 --- a/lib/android/components/card_component.dart +++ b/lib/android/components/card_component.dart @@ -124,7 +124,7 @@ class _CardComponentState extends State { return Padding( padding: const EdgeInsets.only(top: 10.0), // Adjust the padding as needed child: Text( - "${i+1}. ${getFoodListStringByFood(foodName, values[0], values[1])}", + "${i+1}. ${getFoodListStringByFood(foodName, values[0], values[1], context)}", ), ); }), diff --git a/lib/android/components/founded_search_component.dart b/lib/android/components/founded_search_component.dart index 07528ee..61fce70 100644 --- a/lib/android/components/founded_search_component.dart +++ b/lib/android/components/founded_search_component.dart @@ -20,7 +20,7 @@ class SearchedFoodComponent extends StatefulWidget { class _SearchFoodComponentState extends State { int counter = 1; - void storeFood(int counter) async { + void storeFood(int counter, BuildContext context) async { final mealplanBox = Hive.box(dotenv.env['MEALPLAN_BOX']!); if (!mealplanBox.isOpen){ Hive.openBox(dotenv.env['MEALPLAN_BOX']!); @@ -29,12 +29,12 @@ class _SearchFoodComponentState extends State { StatisticsService.instance.addItemToMainBox(widget.food, widget.cardName); addValuesToList(mealplanBox, widget.cardName, [widget.food]); } - showSuccessToast(); + showSuccessToast(context); } - void showSuccessToast(){ + void showSuccessToast(BuildContext context){ Fluttertoast.showToast( - msg: "${getToastFoodNameString(widget.food)} erfolgreich zu ${StringUtils.capitalize(widget.cardName)} hinzugefügt", + msg: "${getToastFoodNameString(widget.food,context)} erfolgreich zu ${StringUtils.capitalize(widget.cardName)} hinzugefügt", toastLength: Toast.LENGTH_SHORT, gravity: ToastGravity.BOTTOM, timeInSecForIosWeb: 5, @@ -172,7 +172,7 @@ class _SearchFoodComponentState extends State { padding: const EdgeInsets.only(top:12), child: ElevatedButton( onPressed: () async { - storeFood(counter); + storeFood(counter,context); }, style: ElevatedButton.styleFrom( foregroundColor: Colors.white, diff --git a/lib/android/config/format_helper.dart b/lib/android/config/format_helper.dart index 637a4b8..c7615de 100644 --- a/lib/android/config/format_helper.dart +++ b/lib/android/config/format_helper.dart @@ -1,19 +1,36 @@ +import 'package:flutter/cupertino.dart'; + import '../models/food.dart'; -String getFoodListStringByFood(String foodName, int count, int calories){ +String getFoodListStringByFood(String foodName, int count, int calories, BuildContext? context){ int maxWidth = 35; + if(context != null){ + maxWidth = isScreenWidthAbove1000(context) ? 100 : 35; + } String limitedText = foodName.length > maxWidth ? "${foodName.substring(0, maxWidth - 3)} ... $count x $calories kcal" : "$foodName $count x $calories kcal"; return limitedText; } -String getWeeklyRankingString(String foodName){ + +bool isScreenWidthAbove1000(BuildContext context) { + double screenWidth = MediaQuery.of(context).size.width; + return screenWidth > 400; +} + +String getWeeklyRankingString(String foodName,BuildContext? context){ int maxWidth = 40; + if(context != null){ + maxWidth = isScreenWidthAbove1000(context) ? 100 : 40; + } String limitedText = foodName.length > maxWidth ? "${foodName.substring(0, maxWidth - 3)} ..." : foodName; return limitedText; } -String getToastFoodNameString(Food food){ +String getToastFoodNameString(Food food,BuildContext? context){ int maxWidth = 25; + if(context != null){ + maxWidth = isScreenWidthAbove1000(context) ? 100 : 25; + } String limitedText = food.name.length > maxWidth ? "${food.name.substring(0, maxWidth - 3)} ..." : food.name; return limitedText; } diff --git a/lib/android/pages/nav_pages/progress_page.dart b/lib/android/pages/nav_pages/progress_page.dart index cef701d..d69e748 100644 --- a/lib/android/pages/nav_pages/progress_page.dart +++ b/lib/android/pages/nav_pages/progress_page.dart @@ -49,7 +49,7 @@ class ProgressPage extends StatelessWidget { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ SecondaryTextComponent( - getWeeklyRankingString(item.name), + getWeeklyRankingString(item.name,context), value.indexOf(item)+1 ), SecondaryTextComponent( diff --git a/test/statistics_test.dart b/test/statistics_test.dart index 02d9821..3cdf151 100644 --- a/test/statistics_test.dart +++ b/test/statistics_test.dart @@ -89,10 +89,10 @@ Future main() async { test('check if format helper are working right',() { expect(2,getListOfDistinctElements(getFoodListValid()).length); expect(3,getMapOfDistinctElementsWithCounterAndCalories(getFoodListValid()).keys.length); - expect("Testfood",getToastFoodNameString(getFoodListValid()[0])); - expect("TestfoodTestfoodTestfo ...",getToastFoodNameString(getFoodListValid()[1])); + expect("Testfood",getToastFoodNameString(getFoodListValid()[0],null)); + expect("TestfoodTestfoodTestfo ...",getToastFoodNameString(getFoodListValid()[1],null)); Food food = getFoodListValid()[0]; - expect("Testfood 2 x 600 kcal", getFoodListStringByFood(food.name, 2, 600)); + expect("Testfood 2 x 600 kcal", getFoodListStringByFood(food.name, 2, 600,null)); }); } -- 2.51.0 From 98b45aabca86f8d74c5d080e7a89a562884befee Mon Sep 17 00:00:00 2001 From: 98spag Date: Fri, 16 Jun 2023 12:10:48 +0200 Subject: [PATCH 25/32] feat: change profile button --- lib/android/pages/nav_pages/main_page.dart | 35 ++++++++++++---------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/lib/android/pages/nav_pages/main_page.dart b/lib/android/pages/nav_pages/main_page.dart index 1c51891..d11c689 100644 --- a/lib/android/pages/nav_pages/main_page.dart +++ b/lib/android/pages/nav_pages/main_page.dart @@ -4,9 +4,6 @@ import 'package:ernaehrung/android/pages/nav_pages/progress_page.dart'; import 'package:ernaehrung/android/pages/nav_pages/today_page.dart'; import 'package:ernaehrung/android/pages/settings.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_profile_picture/flutter_profile_picture.dart'; -import 'package:hive/hive.dart'; -import '../../models/user.dart'; import 'meal_plan_page.dart'; class MainPage extends StatefulWidget { @@ -40,7 +37,6 @@ class MainPageState extends State { @override Widget build(BuildContext context) { - final Box box = Hive.box("USER_BOX"); return Scaffold( extendBodyBehindAppBar: false, appBar: AppBar( @@ -54,17 +50,26 @@ class MainPageState extends State { ), ), ElevatedButton( - onPressed: () async { - Navigator.push( - context, - MaterialPageRoute(builder: (context) => const SettingsPage()), - ); - }, - child: ProfilePicture( - name: "${box.get("FIRST_NAME_FIELD")}", - radius: 16, - fontsize: 14, - )) + onPressed: () async { + Navigator.push( + context, + MaterialPageRoute(builder: (context) => const SettingsPage()), + ); + }, + style: ElevatedButton.styleFrom( + backgroundColor: Colors.green, // Set the background color to green + ), + child: Row( + children: const [ + Icon( + Icons.account_circle, + size: 30, + color: Colors.white, + ), + ], + ), + ) + ], ), backgroundColor: Colors.transparent, -- 2.51.0 From 2e22914cc2f1e537d64d6d4a05fabd3230448285 Mon Sep 17 00:00:00 2001 From: 98spag Date: Fri, 16 Jun 2023 12:17:23 +0200 Subject: [PATCH 26/32] feat: sort meals --- lib/android/components/food_list_component.dart | 5 +++-- lib/android/components/meals.dart | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/android/components/food_list_component.dart b/lib/android/components/food_list_component.dart index fa0e4ee..cda9b35 100644 --- a/lib/android/components/food_list_component.dart +++ b/lib/android/components/food_list_component.dart @@ -14,14 +14,15 @@ class FoodComponent extends StatelessWidget { return ValueListenableBuilder( valueListenable: box.listenable(), builder: (context, box, widget) { + final mealTypes = ['FRÜHSTÜCK','MITTAGESSEN','ABENDESSEN']; // Specify the desired orde return ListView.builder( primary: false, shrinkWrap: true, itemCount: box.keys.length, itemBuilder: (context, i) { return CardComponent( - eatingMealName: box.keyAt(i).toString(), - selectedMeal: castDynamicToListFood(box.getAt(i)), + eatingMealName: mealTypes[i], + selectedMeal: castDynamicToListFood(box.get(mealTypes[i])), addButtonVisible: box.name != StatisticsService.instance.todayStatisticsBoxName.toLowerCase(), ); } diff --git a/lib/android/components/meals.dart b/lib/android/components/meals.dart index a0958e3..13cfcf0 100644 --- a/lib/android/components/meals.dart +++ b/lib/android/components/meals.dart @@ -16,12 +16,13 @@ class MealsComponent extends StatelessWidget { return ValueListenableBuilder( valueListenable: Hive.box(dotenv.env['MEALPLAN_BOX'] ?? 'MEALPLAN').listenable(), builder: (context, box, widget) { + final mealTypes = ['FRÜHSTÜCK','MITTAGESSEN','ABENDESSEN']; // Specify the desired order of meal types return ListView.builder( primary: false, shrinkWrap: true, itemCount: box.keys.length, itemBuilder: (context, i) { - String mealTypeAsString = box.keyAt(i).toString(); + String mealTypeAsString = mealTypes[i]; return CardComponent( mealTypeAsString, StatisticsService.instance.getMealsOfTodayByMealtype(mealTypeAsString), -- 2.51.0 From 38fd9b8b6ab6ef2ecd0558bbe2960e80638b9799 Mon Sep 17 00:00:00 2001 From: 98spag Date: Fri, 16 Jun 2023 12:26:07 +0200 Subject: [PATCH 27/32] feat: adjust colors --- lib/android/components/meals.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/android/components/meals.dart b/lib/android/components/meals.dart index 13cfcf0..1bc7d62 100644 --- a/lib/android/components/meals.dart +++ b/lib/android/components/meals.dart @@ -9,7 +9,7 @@ import 'card/card_component.dart'; class MealsComponent extends StatelessWidget { MealsComponent({Key? key}) : super(key: key); - final List colors = [Colors.teal,Colors.red,Colors.green]; + final List colors = [Colors.green,Colors.lightGreen,CupertinoColors.systemGreen]; @override Widget build(BuildContext context) { -- 2.51.0 From 7b92d3dada3f0ca934f7a1e519b545ca39d1fad9 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Fri, 16 Jun 2023 15:17:04 +0200 Subject: [PATCH 28/32] hive box tests --- .dart_tool/package_config.json | 238 ++--- .dart_tool/package_config_subset | 480 +++++----- .flutter-plugins-dependencies | 2 +- lib/android/components/chart/chart.dart | 2 - lib/android/components/meals.dart | 1 - .../pages/nav_pages/meal_plan_page.dart | 2 - lib/android/pages/nav_pages/today_page.dart | 4 - pubspec.lock | 871 ------------------ pubspec.yaml | 1 + test/hiveboy_test.dart | 356 +++++++ test/statistics_test.dart | 2 - 11 files changed, 717 insertions(+), 1242 deletions(-) delete mode 100644 pubspec.lock create mode 100644 test/hiveboy_test.dart diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index 834dc71..c1d9134 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -3,661 +3,661 @@ "packages": [ { "name": "_fe_analyzer_shared", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "adaptive_dialog", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "analyzer", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.13.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "animate_gradient", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2+1", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "animations", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "args", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.2", "packageUri": "lib/", - "languageVersion": "2.18" + "languageVersion": "2.19" }, { "name": "assorted_layout_widgets", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "async", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "basic_utils", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "boolean_selector", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "bs_flutter_modal", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "bs_flutter_utils", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "build", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build_config", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_daemon", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_resolvers", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "build_runner", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_runner_core", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7+1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "built_collection", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "built_value", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.6.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "card_swiper", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "characters", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "checked_yaml", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "clock", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "code_builder", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.5.0", "packageUri": "lib/", - "languageVersion": "2.17" + "languageVersion": "2.19" }, { "name": "collection", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "convert", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "crypto", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "cupertino_icons", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "dart_style", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "dynamic_color", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "empty_widget", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "equatable", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fake_async", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "ffi", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.2", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "file", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fixnum", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "fl_chart", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter", - "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_dotenv", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_form_builder", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "flutter_lints", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_localizations", - "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_localizations", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_profile_picture", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_test", - "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_test", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_web_plugins", - "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_web_plugins", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "fluttertoast", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "form_builder_validators", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "frontend_server_client", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "glob", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.2", "packageUri": "lib/", - "languageVersion": "2.15" + "languageVersion": "2.19" }, { "name": "graphs", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.3.1", "packageUri": "lib/", - "languageVersion": "2.12" + "languageVersion": "2.18" }, { "name": "hive", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_flutter", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_generator", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "http_multi_server", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http_parser", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intersperse", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intl", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "io", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "js", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "json_annotation", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "lints", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "logging", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.2.0", "packageUri": "lib/", - "languageVersion": "2.18" + "languageVersion": "2.19" }, { "name": "macos_ui", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "matcher", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "material_color_utilities", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "matrix4_transform", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "meta", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "mime", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "package_config", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.15", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_android", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_foundation", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "path_provider_linux", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11", "packageUri": "lib/", - "languageVersion": "2.17" + "languageVersion": "2.18" }, { "name": "path_provider_platform_interface", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider_windows", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7", "packageUri": "lib/", - "languageVersion": "2.17" + "languageVersion": "2.18" }, { "name": "percent_indicator", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "platform", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "plugin_platform_interface", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pointycastle", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pool", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "process", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pub_semver", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pubspec_parse", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "responsive_framework", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "searchable_listview", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "shelf", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "shelf_web_socket", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "sizer", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "sky_engine", - "rootUri": "file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine", + "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "source_gen", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.2", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "source_helper", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "source_span", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stack_trace", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "stream_channel", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stream_transform", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "string_scanner", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "term_glyph", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "test_api", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "timing", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "typed_data", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.2", "packageUri": "lib/", - "languageVersion": "2.12" + "languageVersion": "2.17" }, { "name": "universal_io", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "vector_math", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "watcher", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "web_socket_channel", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "win32", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "xdg_directories", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "yaml", - "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2", + "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2", "packageUri": "lib/", "languageVersion": "2.19" }, @@ -668,7 +668,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-16T09:43:41.438975Z", + "generated": "2023-06-16T13:04:07.358776Z", "generator": "pub", "generatorVersion": "2.19.6" } diff --git a/.dart_tool/package_config_subset b/.dart_tool/package_config_subset index 32e4a04..909458d 100644 --- a/.dart_tool/package_config_subset +++ b/.dart_tool/package_config_subset @@ -1,445 +1,445 @@ _fe_analyzer_shared 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-59.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0/lib/ adaptive_dialog 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/lib/ analyzer 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.11.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.13.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.13.0/lib/ animate_gradient 2.16 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2+1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2+1/lib/ animations 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7/lib/ args -2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.1/lib/ +2.19 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.2/lib/ assorted_layout_widgets 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.4/lib/ async 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/lib/ basic_utils 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/lib/ boolean_selector 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ bs_flutter_modal 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/lib/ bs_flutter_utils 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/lib/ build 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/lib/ build_config 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/lib/ build_daemon 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/lib/ build_resolvers 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ build_runner 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/lib/ build_runner_core 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7+1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7+1/lib/ built_collection 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/ built_value 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.5.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.6.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.6.1/lib/ card_swiper 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/lib/ characters 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/lib/ checked_yaml 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ clock 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/lib/ code_builder -2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.4.0/lib/ +2.19 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.5.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.5.0/lib/ collection 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/lib/ convert 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/lib/ crypto 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/lib/ cupertino_icons 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ dart_style 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/lib/ dynamic_color 2.16 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/lib/ empty_widget 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/lib/ equatable 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/lib/ fake_async 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/lib/ ffi 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.2/lib/ file 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/lib/ fixnum 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib/ fl_chart 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/lib/ flutter_dotenv 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.1.0/lib/ flutter_form_builder 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ flutter_lints 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ flutter_profile_picture 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0/lib/ fluttertoast 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ form_builder_validators 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ frontend_server_client 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ glob -2.15 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.1/lib/ +2.19 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.2/lib/ graphs -2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.2.0/lib/ +2.18 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.3.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.3.1/lib/ hive 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/lib/ hive_flutter 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ hive_generator 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/lib/ http 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/lib/ http_multi_server 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ http_parser 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib/ intersperse 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0/lib/ intl 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/lib/ io 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/lib/ js 2.16 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/lib/ json_annotation 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/lib/ lints 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/lib/ logging -2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.1.1/lib/ +2.19 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.2.0/lib/ macos_ui 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/lib/ matcher 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/lib/ material_color_utilities 2.13 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ matrix4_transform 2.13 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ meta 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/lib/ mime 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/lib/ package_config 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/lib/ path 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/lib/ path_provider 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.14/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.15/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.15/lib/ path_provider_android 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ path_provider_foundation 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/lib/ path_provider_linux -2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.10/lib/ +2.18 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/lib/ path_provider_platform_interface 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ path_provider_windows -2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.6/lib/ +2.18 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/lib/ percent_indicator 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ platform 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/lib/ plugin_platform_interface 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ pointycastle 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/lib/ pool 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/lib/ process 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/lib/ pub_semver 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib/ pubspec_parse 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ responsive_framework 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ searchable_listview 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ shelf 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/lib/ shelf_web_socket 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ sizer 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/lib/ source_gen 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.2/lib/ source_helper 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/lib/ source_span 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/lib/ stack_trace 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/lib/ stream_channel 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/lib/ stream_transform 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/lib/ string_scanner 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/lib/ term_glyph 2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/lib/ test_api 2.18 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/lib/ timing 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/lib/ typed_data -2.12 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/lib/ +2.17 +file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.2/lib/ universal_io 2.15 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/lib/ vector_math 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/ watcher 2.14 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/lib/ web_socket_channel 2.15 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ win32 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/lib/ xdg_directories 2.17 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ yaml 2.19 -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/ -file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/lib/ -sky_engine -2.12 -file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine/ -file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine/lib/ -flutter -2.17 -file:///C:/Users/Nutzer/flutter/packages/flutter/ -file:///C:/Users/Nutzer/flutter/packages/flutter/lib/ -flutter_localizations -2.17 -file:///C:/Users/Nutzer/flutter/packages/flutter_localizations/ -file:///C:/Users/Nutzer/flutter/packages/flutter_localizations/lib/ -flutter_test -2.17 -file:///C:/Users/Nutzer/flutter/packages/flutter_test/ -file:///C:/Users/Nutzer/flutter/packages/flutter_test/lib/ -flutter_web_plugins -2.17 -file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins/ -file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins/lib/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/ +file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/lib/ ernaehrung 2.19 -file:///C:/Users/Nutzer/source/repos/Flutter-Ernaehrungsapp/ -file:///C:/Users/Nutzer/source/repos/Flutter-Ernaehrungsapp/lib/ +file:///Users/bogdan/IdeaProjects/ernaehrung/ +file:///Users/bogdan/IdeaProjects/ernaehrung/lib/ +sky_engine +2.12 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine/lib/ +flutter +2.17 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter/lib/ +flutter_localizations +2.17 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations/lib/ +flutter_test +2.17 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test/lib/ +flutter_web_plugins +2.17 +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_web_plugins/ +file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_web_plugins/lib/ 2 diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 8c95291..76e0979 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.0.27\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\macos_ui-1.12.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.2\\\\","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.1.10\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.1.6\\\\","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-16 11:44:06.544279","version":"3.7.11"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-16 15:10:40.940451","version":"3.7.9"} \ No newline at end of file diff --git a/lib/android/components/chart/chart.dart b/lib/android/components/chart/chart.dart index 13d1644..b4436be 100644 --- a/lib/android/components/chart/chart.dart +++ b/lib/android/components/chart/chart.dart @@ -1,7 +1,5 @@ import 'package:fl_chart/fl_chart.dart'; -import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; - import '../../config/statistics.dart'; import '../meal_page_text/secondary_big_text_component.dart'; import '../meal_page_text/secondary_text_component.dart'; diff --git a/lib/android/components/meals.dart b/lib/android/components/meals.dart index 1bc7d62..5dd5687 100644 --- a/lib/android/components/meals.dart +++ b/lib/android/components/meals.dart @@ -1,7 +1,6 @@ import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; -import 'package:hive/hive.dart'; import 'package:hive_flutter/adapters.dart'; import '../config/statistics.dart'; diff --git a/lib/android/pages/nav_pages/meal_plan_page.dart b/lib/android/pages/nav_pages/meal_plan_page.dart index c8cece4..52d1ac4 100644 --- a/lib/android/pages/nav_pages/meal_plan_page.dart +++ b/lib/android/pages/nav_pages/meal_plan_page.dart @@ -1,7 +1,5 @@ import 'package:ernaehrung/android/components/chart/round_chart.dart'; import 'package:ernaehrung/android/components/meal_page_food_component.dart'; -import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; -import 'package:ernaehrung/android/components/meal_page_text/statistics_today_component.dart'; import 'package:flutter/material.dart'; class MealPlanPage extends StatefulWidget { diff --git a/lib/android/pages/nav_pages/today_page.dart b/lib/android/pages/nav_pages/today_page.dart index 4db409f..afb6a1b 100644 --- a/lib/android/pages/nav_pages/today_page.dart +++ b/lib/android/pages/nav_pages/today_page.dart @@ -1,9 +1,5 @@ -import 'package:ernaehrung/android/components/card/card_component.dart'; import 'package:ernaehrung/android/components/meals.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_dotenv/flutter_dotenv.dart'; -import 'package:hive_flutter/adapters.dart'; class TodayPage extends StatefulWidget { final String title; diff --git a/pubspec.lock b/pubspec.lock deleted file mode 100644 index 05f1185..0000000 --- a/pubspec.lock +++ /dev/null @@ -1,871 +0,0 @@ -# Generated by pub -# See https://dart.dev/tools/pub/glossary#lockfile -packages: - _fe_analyzer_shared: - dependency: transitive - description: - name: _fe_analyzer_shared - sha256: "8880b4cfe7b5b17d57c052a5a3a8cc1d4f546261c7cc8fbd717bd53f48db0568" - url: "https://pub.dev" - source: hosted - version: "59.0.0" - adaptive_dialog: - dependency: "direct main" - description: - name: adaptive_dialog - sha256: "570a517946abc252b79ca09ed95c7e397ccf669b052c76173448b981a3c4b207" - url: "https://pub.dev" - source: hosted - version: "1.8.3+1" - analyzer: - dependency: transitive - description: - name: analyzer - sha256: a89627f49b0e70e068130a36571409726b04dab12da7e5625941d2c8ec278b96 - url: "https://pub.dev" - source: hosted - version: "5.11.1" - animate_gradient: - dependency: "direct main" - description: - name: animate_gradient - sha256: de5fa49579fed8184a9d9d30c3f46a74a3227ba148d283c20bc0e92ed9cc1545 - url: "https://pub.dev" - source: hosted - version: "0.0.2" - animations: - dependency: transitive - description: - name: animations - sha256: fe8a6bdca435f718bb1dc8a11661b2c22504c6da40ef934cee8327ed77934164 - url: "https://pub.dev" - source: hosted - version: "2.0.7" - args: - dependency: transitive - description: - name: args - sha256: c372bb384f273f0c2a8aaaa226dad84dc27c8519a691b888725dec59518ad53a - url: "https://pub.dev" - source: hosted - version: "2.4.1" - assorted_layout_widgets: - dependency: "direct main" - description: - name: assorted_layout_widgets - sha256: "63f96e75d78a037987696e0ad24be9dd18c8404d16b0785d159f4a72f2ca490d" - url: "https://pub.dev" - source: hosted - version: "8.0.0" - async: - dependency: transitive - description: - name: async - sha256: bfe67ef28df125b7dddcea62755991f807aa39a2492a23e1550161692950bbe0 - url: "https://pub.dev" - source: hosted - version: "2.10.0" - basic_utils: - dependency: "direct main" - description: - name: basic_utils - sha256: "8815477fcf58499e42326bd858e391442425fa57db9a45e48e15224c62049262" - url: "https://pub.dev" - source: hosted - version: "5.5.4" - boolean_selector: - dependency: transitive - description: - name: boolean_selector - sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - bs_flutter_modal: - dependency: "direct main" - description: - name: bs_flutter_modal - sha256: a29ee8c83df35e6c861b58f1f175de6118408583357cdb9bdc5597565b49a612 - url: "https://pub.dev" - source: hosted - version: "1.0.6" - bs_flutter_utils: - dependency: transitive - description: - name: bs_flutter_utils - sha256: "4d405d1a2ac8287dacb51b464ca2496a785334c75a49263e914038d600ed25ff" - url: "https://pub.dev" - source: hosted - version: "1.0.2" - build: - dependency: transitive - description: - name: build - sha256: "3fbda25365741f8251b39f3917fb3c8e286a96fd068a5a242e11c2012d495777" - url: "https://pub.dev" - source: hosted - version: "2.3.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: "757153e5d9cd88253cb13f28c2fb55a537dc31fefd98137549895b5beb7c6169" - url: "https://pub.dev" - source: hosted - version: "3.1.1" - build_resolvers: - dependency: transitive - description: - name: build_resolvers - sha256: db49b8609ef8c81cca2b310618c3017c00f03a92af44c04d310b907b2d692d95 - url: "https://pub.dev" - source: hosted - version: "2.2.0" - build_runner: - dependency: "direct dev" - description: - name: build_runner - sha256: b0a8a7b8a76c493e85f1b84bffa0588859a06197863dba8c9036b15581fd9727 - url: "https://pub.dev" - source: hosted - version: "2.3.3" - build_runner_core: - dependency: transitive - description: - name: build_runner_core - sha256: "14febe0f5bac5ae474117a36099b4de6f1dbc52df6c5e55534b3da9591bf4292" - url: "https://pub.dev" - source: hosted - version: "7.2.7" - 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: "2f17434bd5d52a26762043d6b43bb53b3acd029b4d9071a329f46d67ef297e6d" - url: "https://pub.dev" - source: hosted - version: "8.5.0" - card_swiper: - dependency: "direct main" - description: - name: card_swiper - sha256: "0c94c538f47be1dab52d018d4900a7046b4cb0700dc7f95b8628da89d1212b35" - url: "https://pub.dev" - source: hosted - version: "2.0.4" - characters: - dependency: transitive - description: - name: characters - sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c - url: "https://pub.dev" - source: hosted - version: "1.2.1" - checked_yaml: - dependency: transitive - description: - name: checked_yaml - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff - url: "https://pub.dev" - source: hosted - version: "2.0.3" - clock: - dependency: transitive - description: - name: clock - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf - url: "https://pub.dev" - source: hosted - version: "1.1.1" - code_builder: - dependency: transitive - description: - name: code_builder - sha256: "0d43dd1288fd145de1ecc9a3948ad4a6d5a82f0a14c4fdd0892260787d975cbe" - url: "https://pub.dev" - source: hosted - version: "4.4.0" - collection: - dependency: transitive - description: - name: collection - sha256: cfc915e6923fe5ce6e153b0723c753045de46de1b4d63771530504004a45fae0 - url: "https://pub.dev" - source: hosted - version: "1.17.0" - convert: - dependency: transitive - description: - name: convert - sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" - url: "https://pub.dev" - source: hosted - version: "3.1.1" - crypto: - dependency: transitive - description: - name: crypto - sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab - url: "https://pub.dev" - source: hosted - version: "3.0.3" - cupertino_icons: - dependency: "direct main" - description: - name: cupertino_icons - sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be - url: "https://pub.dev" - source: hosted - version: "1.0.5" - dart_style: - dependency: transitive - description: - name: dart_style - sha256: f4f1f73ab3fd2afcbcca165ee601fe980d966af6a21b5970c6c9376955c528ad - url: "https://pub.dev" - source: hosted - version: "2.3.1" - dynamic_color: - dependency: transitive - description: - name: dynamic_color - sha256: "74dff1435a695887ca64899b8990004f8d1232b0e84bfc4faa1fdda7c6f57cc1" - url: "https://pub.dev" - source: hosted - version: "1.6.5" - empty_widget: - dependency: "direct main" - description: - name: empty_widget - sha256: aad8073e5fb43eadde7007db1e2fea7acd33d0d33cff031e31a6675ca0a3e7fb - url: "https://pub.dev" - source: hosted - version: "0.0.5" - equatable: - dependency: transitive - description: - name: equatable - sha256: c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2 - url: "https://pub.dev" - source: hosted - version: "2.0.5" - 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: a38574032c5f1dd06c4aee541789906c12ccaab8ba01446e800d9c5b79c4a978 - url: "https://pub.dev" - source: hosted - version: "2.0.1" - file: - dependency: transitive - description: - name: file - sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" - url: "https://pub.dev" - source: hosted - version: "6.1.4" - fixnum: - dependency: transitive - description: - name: fixnum - sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" - url: "https://pub.dev" - source: hosted - version: "1.1.0" - fl_chart: - dependency: "direct main" - description: - name: fl_chart - sha256: "48a1b69be9544e2b03d9a8e843affd89e43f3194c9248776222efcb4206bb1ec" - url: "https://pub.dev" - source: hosted - version: "0.62.0" - flutter: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_dotenv: - dependency: "direct main" - description: - name: flutter_dotenv - sha256: d9283d92059a22e9834bc0a31336658ffba77089fb6f3cc36751f1fc7c6661a3 - url: "https://pub.dev" - source: hosted - version: "5.0.2" - flutter_form_builder: - dependency: "direct main" - description: - name: flutter_form_builder - sha256: "236c96dad143a0e67c0f11522606d6b17b6510e97530cb73af355b018ded7c10" - url: "https://pub.dev" - source: hosted - version: "8.0.0" - flutter_lints: - dependency: "direct dev" - description: - name: flutter_lints - sha256: aeb0b80a8b3709709c9cc496cdc027c5b3216796bc0af0ce1007eaf24464fd4c - url: "https://pub.dev" - source: hosted - version: "2.0.1" - flutter_localizations: - dependency: transitive - description: flutter - source: sdk - version: "0.0.0" - flutter_profile_picture: - dependency: "direct main" - description: - name: flutter_profile_picture - sha256: "067caecef0d7162d3858eaca3c5859cbbb21b3e5704c2bc5b96b50ffe267f45d" - url: "https://pub.dev" - source: hosted - version: "2.0.0" - flutter_test: - dependency: "direct dev" - description: flutter - source: sdk - version: "0.0.0" - flutter_web_plugins: - dependency: transitive - description: flutter - source: sdk - version: "0.0.0" - fluttertoast: - dependency: "direct main" - description: - name: fluttertoast - sha256: "474f7d506230897a3cd28c965ec21c5328ae5605fc9c400cd330e9e9d6ac175c" - url: "https://pub.dev" - source: hosted - version: "8.2.2" - form_builder_validators: - dependency: "direct main" - description: - name: form_builder_validators - sha256: f2d90439c56345c23ad8d0c2912e4002cd02563d816f4387c9495051c10d3321 - url: "https://pub.dev" - source: hosted - version: "8.6.1" - frontend_server_client: - dependency: transitive - description: - name: frontend_server_client - sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" - url: "https://pub.dev" - source: hosted - version: "3.2.0" - glob: - dependency: transitive - description: - name: glob - sha256: "4515b5b6ddb505ebdd242a5f2cc5d22d3d6a80013789debfbda7777f47ea308c" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - graphs: - dependency: transitive - description: - name: graphs - sha256: f9e130f3259f52d26f0cfc0e964513796dafed572fa52e45d2f8d6ca14db39b2 - url: "https://pub.dev" - source: hosted - version: "2.2.0" - hive: - dependency: "direct main" - description: - name: hive - sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941" - url: "https://pub.dev" - source: hosted - version: "2.2.3" - hive_flutter: - dependency: "direct main" - description: - name: hive_flutter - sha256: dca1da446b1d808a51689fb5d0c6c9510c0a2ba01e22805d492c73b68e33eecc - url: "https://pub.dev" - source: hosted - version: "1.1.0" - hive_generator: - dependency: "direct dev" - description: - name: hive_generator - sha256: "65998cc4d2cd9680a3d9709d893d2f6bb15e6c1f92626c3f1fa650b4b3281521" - url: "https://pub.dev" - source: hosted - version: "2.0.0" - http: - dependency: transitive - description: - name: http - sha256: "5895291c13fa8a3bd82e76d5627f69e0d85ca6a30dcac95c4ea19a5d555879c2" - url: "https://pub.dev" - source: hosted - version: "0.13.6" - 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" - intersperse: - dependency: transitive - description: - name: intersperse - sha256: "2f8a905c96f6cbba978644a3d5b31b8d86ddc44917662df7d27a61f3df66a576" - url: "https://pub.dev" - source: hosted - version: "2.0.0" - intl: - dependency: transitive - description: - name: intl - sha256: "910f85bce16fb5c6f614e117efa303e85a1731bb0081edf3604a2ae6e9a3cc91" - url: "https://pub.dev" - source: hosted - version: "0.17.0" - 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: "5528c2f391ededb7775ec1daa69e65a2d61276f7552de2b5f7b8d34ee9fd4ab7" - url: "https://pub.dev" - source: hosted - version: "0.6.5" - json_annotation: - dependency: transitive - description: - name: json_annotation - sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 - url: "https://pub.dev" - source: hosted - version: "4.8.1" - lints: - dependency: transitive - description: - name: lints - sha256: "5e4a9cd06d447758280a8ac2405101e0e2094d2a1dbdd3756aec3fe7775ba593" - url: "https://pub.dev" - source: hosted - version: "2.0.1" - logging: - dependency: transitive - description: - name: logging - sha256: "04094f2eb032cbb06c6f6e8d3607edcfcb0455e2bb6cbc010cb01171dcb64e6d" - url: "https://pub.dev" - source: hosted - version: "1.1.1" - macos_ui: - dependency: transitive - description: - name: macos_ui - sha256: "57208eec8180656acd379e1c754e9b6d8830f32a020b94571ae2188f8112075b" - url: "https://pub.dev" - source: hosted - version: "1.12.2" - matcher: - dependency: transitive - description: - name: matcher - sha256: "16db949ceee371e9b99d22f88fa3a73c4e59fd0afed0bd25fc336eb76c198b72" - url: "https://pub.dev" - source: hosted - version: "0.12.13" - material_color_utilities: - dependency: transitive - description: - name: material_color_utilities - sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724 - url: "https://pub.dev" - source: hosted - version: "0.2.0" - matrix4_transform: - dependency: transitive - description: - name: matrix4_transform - sha256: "6ddeaa2c0e1f5c3f3a197f552377570b3e54fa0b8bf48507728a216fc0fd78a6" - url: "https://pub.dev" - source: hosted - version: "2.0.1" - meta: - dependency: transitive - description: - name: meta - sha256: "6c268b42ed578a53088d834796959e4a1814b5e9e164f147f580a386e5decf42" - url: "https://pub.dev" - source: hosted - version: "1.8.0" - mime: - dependency: transitive - description: - name: mime - sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e - url: "https://pub.dev" - source: hosted - version: "1.0.4" - 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: db9d4f58c908a4ba5953fcee2ae317c94889433e5024c27ce74a37f94267945b - url: "https://pub.dev" - source: hosted - version: "1.8.2" - path_provider: - dependency: transitive - description: - name: path_provider - sha256: c7edf82217d4b2952b2129a61d3ad60f1075b9299e629e149a8d2e39c2e6aad4 - url: "https://pub.dev" - source: hosted - version: "2.0.14" - path_provider_android: - dependency: transitive - description: - name: path_provider_android - sha256: "2cec049d282c7f13c594b4a73976b0b4f2d7a1838a6dd5aaf7bd9719196bee86" - url: "https://pub.dev" - source: hosted - version: "2.0.27" - path_provider_foundation: - dependency: transitive - description: - name: path_provider_foundation - sha256: ad4c4d011830462633f03eb34445a45345673dfd4faf1ab0b4735fbd93b19183 - url: "https://pub.dev" - source: hosted - version: "2.2.2" - path_provider_linux: - dependency: transitive - description: - name: path_provider_linux - sha256: "2ae08f2216225427e64ad224a24354221c2c7907e448e6e0e8b57b1eb9f10ad1" - url: "https://pub.dev" - source: hosted - version: "2.1.10" - path_provider_platform_interface: - dependency: transitive - description: - name: path_provider_platform_interface - sha256: "57585299a729335f1298b43245842678cb9f43a6310351b18fb577d6e33165ec" - url: "https://pub.dev" - source: hosted - version: "2.0.6" - path_provider_windows: - dependency: transitive - description: - name: path_provider_windows - sha256: d3f80b32e83ec208ac95253e0cd4d298e104fbc63cb29c5c69edaed43b0c69d6 - url: "https://pub.dev" - source: hosted - version: "2.1.6" - percent_indicator: - dependency: "direct main" - description: - name: percent_indicator - sha256: c37099ad833a883c9d71782321cb65c3a848c21b6939b6185f0ff6640d05814c - url: "https://pub.dev" - source: hosted - version: "4.2.3" - platform: - dependency: transitive - description: - name: platform - sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76" - url: "https://pub.dev" - source: hosted - version: "3.1.0" - plugin_platform_interface: - dependency: transitive - description: - name: plugin_platform_interface - sha256: "6a2128648c854906c53fa8e33986fc0247a1116122f9534dd20e3ab9e16a32bc" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - pointycastle: - dependency: transitive - 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" - process: - dependency: transitive - description: - name: process - sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" - url: "https://pub.dev" - source: hosted - version: "4.2.4" - 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" - responsive_framework: - dependency: "direct main" - description: - name: responsive_framework - sha256: "07bbe163bd67708160f3d11abaf6b34ae5b718e4250d83aa9a8a9496325f6b8a" - url: "https://pub.dev" - source: hosted - version: "1.0.0" - searchable_listview: - dependency: "direct main" - description: - name: searchable_listview - sha256: "0a158665571e03890408e2d5569f0673a36f79fac5a671a54495b52f67b93b63" - url: "https://pub.dev" - source: hosted - version: "2.4.0" - 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" - sizer: - dependency: "direct main" - description: - name: sizer - sha256: d2b3cb6cbc4a637f508dacd786bae55df31e5fc088044248a43e4fd1e050c117 - url: "https://pub.dev" - source: hosted - version: "2.0.15" - sky_engine: - dependency: transitive - description: flutter - source: sdk - version: "0.0.99" - source_gen: - dependency: transitive - description: - name: source_gen - sha256: b20e191de6964e98032573cecb1d2b169d96ba63fdb586d24dcd1003ba7e94f6 - url: "https://pub.dev" - source: hosted - version: "1.3.0" - source_helper: - dependency: transitive - description: - name: source_helper - sha256: "3b67aade1d52416149c633ba1bb36df44d97c6b51830c2198e934e3fca87ca1f" - url: "https://pub.dev" - source: hosted - version: "1.3.3" - source_span: - dependency: transitive - description: - name: source_span - sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250 - url: "https://pub.dev" - source: hosted - version: "1.9.1" - stack_trace: - dependency: transitive - description: - name: stack_trace - sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 - url: "https://pub.dev" - source: hosted - version: "1.11.0" - stream_channel: - dependency: transitive - description: - name: stream_channel - sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" - url: "https://pub.dev" - source: hosted - version: "2.1.1" - 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" - 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: ad540f65f92caa91bf21dfc8ffb8c589d6e4dc0c2267818b4cc2792857706206 - url: "https://pub.dev" - source: hosted - version: "0.4.16" - timing: - dependency: transitive - description: - name: timing - sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" - url: "https://pub.dev" - source: hosted - version: "1.0.1" - typed_data: - dependency: transitive - description: - name: typed_data - sha256: "26f87ade979c47a150c9eaab93ccd2bebe70a27dc0b4b29517f2904f04eb11a5" - url: "https://pub.dev" - source: hosted - version: "1.3.1" - universal_io: - dependency: transitive - description: - name: universal_io - sha256: "06866290206d196064fd61df4c7aea1ffe9a4e7c4ccaa8fcded42dd41948005d" - url: "https://pub.dev" - source: hosted - version: "2.2.0" - vector_math: - dependency: transitive - description: - name: vector_math - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" - url: "https://pub.dev" - source: hosted - version: "2.1.4" - watcher: - dependency: transitive - description: - name: watcher - sha256: "6a7f46926b01ce81bfc339da6a7f20afbe7733eff9846f6d6a5466aa4c6667c0" - url: "https://pub.dev" - source: hosted - version: "1.0.2" - 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: "5a751eddf9db89b3e5f9d50c20ab8612296e4e8db69009788d6c8b060a84191c" - url: "https://pub.dev" - source: hosted - version: "4.1.4" - xdg_directories: - dependency: transitive - description: - name: xdg_directories - sha256: ee1505df1426458f7f60aac270645098d318a8b4766d85fde75f76f2e21807d1 - url: "https://pub.dev" - source: hosted - version: "1.0.0" - yaml: - dependency: transitive - description: - name: yaml - sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" - url: "https://pub.dev" - source: hosted - version: "3.1.2" -sdks: - dart: ">=2.19.6 <3.0.0" - flutter: ">=3.7.0" diff --git a/pubspec.yaml b/pubspec.yaml index 9ea8f48..bc68c2c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -53,6 +53,7 @@ dependencies: flutter_profile_picture: ^2.0.0 bs_flutter_modal: ^1.0.6 adaptive_dialog: ^1.8.3+1 + path_provider: ^2.0.15 dev_dependencies: diff --git a/test/hiveboy_test.dart b/test/hiveboy_test.dart new file mode 100644 index 0000000..fbe3d89 --- /dev/null +++ b/test/hiveboy_test.dart @@ -0,0 +1,356 @@ +import 'dart:io'; +import 'package:flutter/foundation.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:hive/src/adapters/date_time_adapter.dart'; +import 'package:hive/src/hive_impl.dart'; +import 'package:hive_flutter/hive_flutter.dart'; +import 'package:path_provider/path_provider.dart'; + +class _TestAdapter extends TypeAdapter { + _TestAdapter([this.typeId = 0]); + + @override + final int typeId; + + @override + int read(_) => 5; + + @override + void write(_, __) {} +} + +void main() { +// Initialize hive. + Hive.initFlutter(); + + group('HiveImpl', () { + Future initHive() async { + await Hive.initFlutter(); + var hive = HiveImpl(); + + var path = "/assets/"; + if (!kIsWeb) { + var appDocDir = await getApplicationDocumentsDirectory(); + path = appDocDir.path; + } + hive.init(path); + return hive; + } + + test('.init()', () { + var hive = HiveImpl(); + + expect(() => hive.init('MYPATH'), returnsNormally); + expect(hive.homePath, 'MYPATH'); + + expect( + hive.findAdapterForValue(DateTime.now())!.adapter, + isA(), + ); + expect(hive.findAdapterForTypeId(16)!.adapter, isA()); + }); + + group('.openBox()', () { + group('box already open', () { + test('opened box is returned if it exists', () async { + var hive = await initHive(); + + var testBox = await hive.openBox('TESTBOX'); + var testBox2 = await hive.openBox('testBox'); + expect(testBox == testBox2, true); + + await hive.close(); + }); + + test('throw HiveError if opened box is lazy', () async { + var hive = await initHive(); + + await hive.openLazyBox('LAZYBOX'); + await expectLater( + () => hive.openBox('lazyBox'), + throwsUnimplementedError, + ); + + await hive.close(); + }); + + test('throw HiveError if already opening box is lazy', () async { + var hive = await initHive(); + + await Future.wait([ + hive.openLazyBox('TESTBOX'), + expectLater(hive.openBox('testbox'), throwsUnimplementedError) + ]); + }); + + test('same box returned if it is already opening', () async { + var hive = await initHive(); + + Box? box1; + Box? box2; + await Future.wait([ + hive.openBox('TESTBOX').then((value) => box1 = value), + hive.openBox('testbox').then((value) => box2 = value) + ]); + + expect(box1 == box2, true); + }); + }); + }); + + group('.openLazyBox()', () { + group('box already open', () { + test('opened box is returned if it exists', () async { + var hive = await initHive(); + + var testBox = await hive.openLazyBox('TESTBOX'); + var testBox2 = await hive.openLazyBox('testBox'); + expect(testBox == testBox2, true); + + await hive.close(); + }); + + test('same box returned if it is already opening', () async { + LazyBox? box1; + LazyBox? box2; + + var hive = await initHive(); + await Future.wait([ + hive.openLazyBox('LAZYBOX').then((value) => box1 = value), + hive.openLazyBox('lazyBox').then((value) => box2 = value) + ]); + + expect(box1 == box2, true); + }); + + test('throw HiveError if opened box is not lazy', () async { + var hive = await initHive(); + + await hive.openBox('LAZYBOX'); + await expectLater( + () => hive.openLazyBox('lazyBox'), + throwsUnimplementedError, + ); + + await hive.close(); + }); + + test('throw HiveError if already opening box is not lazy', () async { + var hive = await initHive(); + + await Future.wait([ + hive.openBox('LAZYBOX'), + expectLater(hive.openLazyBox('lazyBox'), throwsUnimplementedError) + ]); + }); + }); + }); + + group('.box()', () { + test('returns already opened box', () async { + var hive = await initHive(); + + var box = await hive.openBox('TESTBOX'); + expect(hive.box('testBox'), box); + expect(() => hive.box('other'), throwsArgumentError); + + await hive.close(); + }); + + test('throws HiveError if box type does not match', () async { + var hive = await initHive(); + + await hive.openBox('INTBOX'); + expect( + () => hive.box('intBox'), + throwsArgumentError, + ); + + await hive.openBox('DYNAMICBOX'); + expect( + () => hive.box('dynamicBox'), + throwsArgumentError, + ); + + await hive.openLazyBox('LAZYBOX'); + expect( + () => hive.box('lazyBox'), + throwsArgumentError, + ); + + await hive.close(); + }); + }); + + group('.lazyBox()', () { + test('returns already opened box', () async { + var hive = await initHive(); + + var box = await hive.openLazyBox('TESTBOX'); + expect(hive.lazyBox('testBox'), box); + expect(() => hive.lazyBox('other'), throwsArgumentError); + + await hive.close(); + }); + + test('throws HiveError if box type does not match', () async { + var hive = await initHive(); + + await hive.openLazyBox('INTBOX'); + expect( + () => hive.lazyBox('intBox'), + throwsArgumentError, + ); + + await hive.openLazyBox('DYNAMICBOX'); + expect( + () => hive.lazyBox('dynamicBox'), + throwsArgumentError, + ); + + await hive.openBox('BOX'); + expect( + () => hive.lazyBox('box'), + throwsArgumentError, + ); + + await hive.close(); + }); + }); + + test('isBoxOpen()', () async { + var hive = await initHive(); + + await hive.openBox('testBox'); + + expect(hive.isBoxOpen('testBox'), true); + expect(hive.isBoxOpen('nonExistingBox'), false); + + await hive.close(); + }); + + test('.close()', () async { + var hive = await initHive(); + + var box1 = await hive.openBox('box1'); + var box2 = await hive.openBox('box2'); + expect(box1.isOpen, true); + expect(box2.isOpen, true); + + await hive.close(); + expect(box1.isOpen, false); + expect(box2.isOpen, false); + }); + + test('.generateSecureKey()', () { + var hive = HiveImpl(); + + var key1 = hive.generateSecureKey(); + var key2 = hive.generateSecureKey(); + + expect(key1.length, 32); + expect(key2.length, 32); + expect(key1, isNot(key2)); + }); + + group('.deleteBoxFromDisk()', () { + test('deletes open box', () async { + var hive = await initHive(); + + var box1 = await hive.openBox('testBox1'); + await box1.put('key', 'value'); + var box1File = File(box1.path!); + + await hive.deleteBoxFromDisk('testBox1'); + expect(await box1File.exists(), false); + expect(hive.isBoxOpen('testBox1'), false); + + await hive.close(); + }); + + test('deletes closed box', () async { + var hive = await initHive(); + + var box1 = await hive.openBox('testBox1'); + await box1.put('key', 'value'); + var path = box1.path!; + await box1.close(); + var box1File = File(path); + + await hive.deleteBoxFromDisk('testBox1'); + expect(await box1File.exists(), false); + expect(hive.isBoxOpen('testBox1'), false); + + await hive.close(); + }); + + test('does nothing if files do not exist', () async { + var hive = await initHive(); + await hive.deleteBoxFromDisk('testBox1'); + await hive.close(); + }); + }); + + test('.deleteFromDisk()', () async { + var hive = await initHive(); + + var box1 = await hive.openBox('testBox1'); + await box1.put('key', 'value'); + var box1File = File(box1.path!); + + var box2 = await hive.openBox('testBox2'); + await box2.put('key', 'value'); + var box2File = File(box1.path!); + + await hive.deleteFromDisk(); + expect(await box1File.exists(), false); + expect(await box2File.exists(), false); + expect(hive.isBoxOpen('testBox1'), false); + expect(hive.isBoxOpen('testBox2'), false); + + await hive.close(); + }); + + group('.boxExists()', () { + test('returns true if a box was created', () async { + var hive = await initHive(); + await hive.openBox('testBox1'); + expect(await hive.boxExists('testBox1'), true); + await hive.close(); + }); + + test('returns false if no box was created', () async { + var hive = await initHive(); + expect(await hive.boxExists('testBox1'), false); + await hive.close(); + }); + + test('returns false if box was created and then deleted', () async { + var hive = await initHive(); + await hive.openBox('testBox1'); + await hive.deleteBoxFromDisk('testBox1'); + expect(await hive.boxExists('testBox1'), false); + await hive.close(); + }); + }); + + group('.resetAdapters()', () { + test('returns normally', () async { + final hive = await initHive(); + expect(hive.resetAdapters, returnsNormally); + }); + + test('clears an adapter', () async { + final hive = await initHive(); + final adapter = _TestAdapter(1); + + expect(hive.isAdapterRegistered(adapter.typeId), isFalse); + hive.registerAdapter(adapter); + expect(hive.isAdapterRegistered(adapter.typeId), isTrue); + + hive.resetAdapters(); + expect(hive.isAdapterRegistered(adapter.typeId), isFalse); + }); + }); + }); +} diff --git a/test/statistics_test.dart b/test/statistics_test.dart index 3cdf151..1c52bf1 100644 --- a/test/statistics_test.dart +++ b/test/statistics_test.dart @@ -5,8 +5,6 @@ import 'package:ernaehrung/android/models/food.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:flutter_test/flutter_test.dart'; - - late StatisticsService statisticsService; Future main() async { await dotenv.load(fileName: ".env"); -- 2.51.0 From e4ebac676fc6e7d10ac58d4b33e7c824c2898901 Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Mon, 19 Jun 2023 20:23:27 +0200 Subject: [PATCH 29/32] =?UTF-8?q?farbe=20und=20felder=20mit=20daten=20bef?= =?UTF-8?q?=C3=BCllen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .flutter-plugins-dependencies | 2 +- lib/android/components/form/form_builder.dart | 3 ++- .../form_builder_text_field_component.dart | 22 ++++++++++++++++++- lib/android/pages/settings.dart | 2 ++ 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 76e0979..fa54800 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-16 15:10:40.940451","version":"3.7.9"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-19 20:15:34.085195","version":"3.7.9"} \ No newline at end of file diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart index 666051c..228ba92 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/android/components/form/form_builder.dart @@ -1,4 +1,5 @@ import 'package:ernaehrung/android/components/form/form_builder_text_field_component.dart'; +import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_form_builder/flutter_form_builder.dart'; import 'package:hive/hive.dart'; @@ -111,7 +112,7 @@ class _FormBuilderComponentState extends State { child: ElevatedButton( style: ElevatedButton.styleFrom( minimumSize: const Size.fromHeight(40), // - backgroundColor: const Color(0xFF6E7BFB), + backgroundColor: CupertinoColors.systemGreen, foregroundColor: const Color(0xFFffffff), shape: const StadiumBorder(), ), diff --git a/lib/android/components/form/form_builder_text_field_component.dart b/lib/android/components/form/form_builder_text_field_component.dart index 36a201b..2505e0a 100644 --- a/lib/android/components/form/form_builder_text_field_component.dart +++ b/lib/android/components/form/form_builder_text_field_component.dart @@ -1,8 +1,10 @@ import 'package:basic_utils/basic_utils.dart'; import 'package:ernaehrung/android/models/form_builder.dart'; +import 'package:ernaehrung/android/models/user.dart'; import 'package:flutter/material.dart'; import 'package:flutter_form_builder/flutter_form_builder.dart'; import 'package:form_builder_validators/form_builder_validators.dart'; +import 'package:hive/hive.dart'; class FormBuilderTextFieldComponent extends StatefulWidget { final bool isSettingsPage; @@ -29,7 +31,7 @@ class _FormBuilderTextFieldComponentState extends State("USER_BOX").values.last; + if (textField.title == "vorname"){ + return user.vorname; + }else if (textField.title == "nachname"){ + return user.nachname; + }else if (textField.title == "gewicht"){ + return user.gewicht; + }else if (textField.title == "groesse"){ + return user.groesse; + }else if (textField.title == "alter"){ + return user.alter; + }else if (textField.title == "kalorien"){ + return user.kalorien; + } + } @override Widget build(BuildContext context) { return FormBuilderTextField( name: formTextField.title, enabled: enable!, + initialValue: isSettingsPage ? getInitialValue(formTextField).toString() : "", decoration: InputDecoration( border: const OutlineInputBorder( borderRadius: BorderRadius.all(Radius.circular(10.0))), diff --git a/lib/android/pages/settings.dart b/lib/android/pages/settings.dart index 0e86108..eba79fb 100644 --- a/lib/android/pages/settings.dart +++ b/lib/android/pages/settings.dart @@ -1,3 +1,4 @@ +import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import '../components/form/form_builder.dart'; @@ -14,6 +15,7 @@ class _SettingsPageState extends State { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( + backgroundColor: CupertinoColors.systemGreen, leading: BackButton( onPressed: () async => Navigator.of(context).pop(), ), -- 2.51.0 From 9d7045b613a901a52d6badc45f18fd145153001f Mon Sep 17 00:00:00 2001 From: bogdan <1926167@stud.hs-mannheim.de> Date: Tue, 20 Jun 2023 19:36:24 +0200 Subject: [PATCH 30/32] bug --- .flutter-plugins-dependencies | 2 +- lib/android/components/form/form_builder.dart | 22 +++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index fa54800..431c38f 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-19 20:15:34.085195","version":"3.7.9"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-20 19:30:43.546201","version":"3.7.9"} \ No newline at end of file diff --git a/lib/android/components/form/form_builder.dart b/lib/android/components/form/form_builder.dart index 228ba92..c4663f5 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/android/components/form/form_builder.dart @@ -129,17 +129,17 @@ class _FormBuilderComponentState extends State { formKey.currentState?.fields['nachname'] ?.value ?? box.get("USER").nachname.toString(), - formKey.currentState?.fields['gewicht'] - ?.value ?? - box.get("USER").gewicht, - formKey.currentState?.fields['groesse'] - ?.value ?? - box.get("USER").groesse, - formKey.currentState?.fields['alter']?.value ?? - box.get("USER").alter, - formKey.currentState?.fields['kalorien'] - ?.value ?? - box.get("USER").kalorien)); + int.parse(formKey.currentState?.fields['gewicht'] + ?.value ?? + box.get("USER").gewicht), + int.parse(formKey.currentState?.fields['groesse'] + ?.value ?? + box.get("USER").groesse), + int.parse(formKey.currentState?.fields['alter']?.value ?? + box.get("USER").alter), + int.parse(formKey.currentState?.fields['kalorien'] + ?.value ?? + box.get("USER").kalorien))); ScaffoldMessenger.of(context) .showSnackBar(const SnackBar( -- 2.51.0 From 024a6c3c0b6e3cd60ae71a55485dcf3508c2db0e Mon Sep 17 00:00:00 2001 From: 2211260 <2211260@hs-mannheim.de> Date: Wed, 21 Jun 2023 13:33:42 +0200 Subject: [PATCH 31/32] feat: remove debug banner and make header font color black --- lib/android/android_app.dart | 1 + lib/android/pages/welcome.dart | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/android/android_app.dart b/lib/android/android_app.dart index 02c049c..d5958a1 100644 --- a/lib/android/android_app.dart +++ b/lib/android/android_app.dart @@ -12,6 +12,7 @@ class AndroidApp extends StatelessWidget { Widget build(BuildContext context) { final box = Hive.box('USER_BOX'); return MaterialApp( + debugShowCheckedModeBanner: false, title: 'Flutter Demo', theme: ThemeData( scaffoldBackgroundColor: Colors.grey.shade200, //<-- SEE diff --git a/lib/android/pages/welcome.dart b/lib/android/pages/welcome.dart index 0669548..71def2b 100644 --- a/lib/android/pages/welcome.dart +++ b/lib/android/pages/welcome.dart @@ -14,7 +14,12 @@ class _OnboardingPageState extends State { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( - title: const Text("Welcome"), + title: const Text( + "Welcome", + style: TextStyle( + color: Colors.black + ), + ), backgroundColor: Colors.grey.shade100, ), body: const FormBuilderComponent(lockTextFields: false,) -- 2.51.0 From 2a3864c287670bcb1f6f7464e8861fdb134962d7 Mon Sep 17 00:00:00 2001 From: 98spag Date: Sun, 25 Jun 2023 14:43:07 +0200 Subject: [PATCH 32/32] feat: refactoring --- .dart_tool/package_config.json | 222 ++++----- .dart_tool/package_config_subset | 448 +++++++++--------- .env | 9 +- .flutter-plugins-dependencies | 2 +- assets/images/fries.png | Bin 554 -> 0 bytes assets/images/ice.png | Bin 509 -> 0 bytes assets/images/tea.png | Bin 573 -> 0 bytes .../components/diet_chart_component.dart | 74 --- .../secondary_big_text_component.dart | 19 - .../components/not_found_component.dart | 20 - ...atistics_circular_indicator_component.dart | 26 - .../components/welcome_text_field.dart | 192 -------- lib/android/config/mock_data_helper.dart | 62 --- lib/{android/android_app.dart => app.dart} | 8 +- .../config => helper}/cast_helper.dart | 0 .../config => helper}/format_helper.dart | 0 .../setup_todaybox.dart} | 6 +- lib/main.dart | 19 +- lib/{android => }/models/card.dart | 0 lib/{android => }/models/card_item.dart | 0 lib/{android => }/models/food.dart | 0 lib/{android => }/models/food.g.dart | 0 lib/{android => }/models/food_dto.dart | 0 lib/{android => }/models/form_builder.dart | 0 lib/{android => }/models/user.dart | 0 lib/{android => }/models/user.g.dart | 0 .../pages/nav_pages/main_page.dart | 22 +- .../progress_page/progress_page.dart} | 18 +- .../charts/progress_charts_overview.dart} | 12 +- .../horizontal_chart_text_component.dart} | 4 +- .../charts/progress_charts.dart} | 20 +- .../charts/progress_circular_chart.dart} | 8 +- .../charts/progress_horizontal_chart.dart} | 10 +- .../sub_components/tabs/timespan_tabs.dart} | 22 +- .../tabs/timespan_tabs_text.dart} | 11 +- .../progress_all_meals_component.dart} | 14 +- .../list_view/progress_card.dart} | 23 +- .../list_view/progress_food_list.dart} | 14 +- .../statistics_page/statistics_page.dart} | 16 +- .../sub_components}/chart.dart | 31 +- .../today_page/sub_components}/meals.dart | 11 +- .../sub_components/card_data_food.dart} | 6 +- .../sub_components/card_food_item.dart} | 0 .../sub_components/card_title.dart} | 0 .../today_card/today_card.dart} | 14 +- .../subpages/today_page}/today_page.dart | 3 +- .../search_food}/search_food.dart | 3 +- .../search_food/sub_components/search.dart} | 21 +- .../sub_components/searched_food.dart} | 18 +- .../shared_components}/form_builder.dart | 5 +- .../form_builder_text_field.dart} | 7 +- .../shared_components/secondary_text.dart} | 0 .../shared_components/title.dart} | 0 .../initial_user_data_form.dart} | 2 +- .../user_data_form/user_data_form.dart} | 2 +- .../config => services}/statistics.dart | 53 ++- pubspec.yaml | 3 - test/statistics_test.dart | 44 +- 58 files changed, 558 insertions(+), 966 deletions(-) delete mode 100644 assets/images/fries.png delete mode 100644 assets/images/ice.png delete mode 100644 assets/images/tea.png delete mode 100644 lib/android/components/diet_chart_component.dart delete mode 100644 lib/android/components/meal_page_text/secondary_big_text_component.dart delete mode 100644 lib/android/components/not_found_component.dart delete mode 100644 lib/android/components/statistics_circular_indicator_component.dart delete mode 100644 lib/android/components/welcome_text_field.dart delete mode 100644 lib/android/config/mock_data_helper.dart rename lib/{android/android_app.dart => app.dart} (69%) rename lib/{android/config => helper}/cast_helper.dart (100%) rename lib/{android/config => helper}/format_helper.dart (100%) rename lib/{android/config/setup_todaybox_config.dart => helper/setup_todaybox.dart} (76%) rename lib/{android => }/models/card.dart (100%) rename lib/{android => }/models/card_item.dart (100%) rename lib/{android => }/models/food.dart (100%) rename lib/{android => }/models/food.g.dart (100%) rename lib/{android => }/models/food_dto.dart (100%) rename lib/{android => }/models/form_builder.dart (100%) rename lib/{android => }/models/user.dart (100%) rename lib/{android => }/models/user.g.dart (100%) rename lib/{android => }/pages/nav_pages/main_page.dart (79%) rename lib/{android/pages/nav_pages/meal_plan_page.dart => pages/nav_pages/subpages/progress_page/progress_page.dart} (57%) rename lib/{android/components/chart/round_chart.dart => pages/nav_pages/subpages/progress_page/sub_components/charts/progress_charts_overview.dart} (59%) rename lib/{android/components/meal_page_text/statistics_text_component.dart => pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/horizontal_chart_text_component.dart} (73%) rename lib/{android/components/meal_page_text/statistics_today_component.dart => pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_charts.dart} (62%) rename lib/{android/components/circular/circular_component.dart => pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_circular_chart.dart} (77%) rename lib/{android/components/circular/line_circular_with_text_component.dart => pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_horizontal_chart.dart} (70%) rename lib/{android/components/meal_page_text/days_component.dart => pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs.dart} (64%) rename lib/{android/components/meal_page_text/days_text_component.dart => pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs_text.dart} (63%) rename lib/{android/components/meal_page_food_component.dart => pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_all_meals_component.dart} (57%) rename lib/{android/components/card_component.dart => pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_card.dart} (88%) rename lib/{android/components/food_list_component.dart => pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_food_list.dart} (65%) rename lib/{android/pages/nav_pages/progress_page.dart => pages/nav_pages/subpages/statistics_page/statistics_page.dart} (80%) rename lib/{android/components/chart => pages/nav_pages/subpages/statistics_page/sub_components}/chart.dart (93%) rename lib/{android/components => pages/nav_pages/subpages/today_page/sub_components}/meals.dart (76%) rename lib/{android/components/card/card_data_food_component.dart => pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_data_food.dart} (91%) rename lib/{android/components/card/card_food_item_component.dart => pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_food_item.dart} (100%) rename lib/{android/components/card/card_title_component.dart => pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_title.dart} (100%) rename lib/{android/components/card/card_component.dart => pages/nav_pages/subpages/today_page/sub_components/today_card/today_card.dart} (82%) rename lib/{android/pages/nav_pages => pages/nav_pages/subpages/today_page}/today_page.dart (84%) rename lib/{android/pages/nav_pages => pages/search_food}/search_food.dart (93%) rename lib/{android/components/search_component.dart => pages/search_food/sub_components/search.dart} (83%) rename lib/{android/components/founded_search_component.dart => pages/search_food/sub_components/searched_food.dart} (92%) rename lib/{android/components/form => pages/shared_components}/form_builder.dart (97%) rename lib/{android/components/form/form_builder_text_field_component.dart => pages/shared_components/form_builder_text_field.dart} (94%) rename lib/{android/components/meal_page_text/secondary_text_component.dart => pages/shared_components/secondary_text.dart} (100%) rename lib/{android/components/meal_page_text/title_component.dart => pages/shared_components/title.dart} (100%) rename lib/{android/pages/welcome.dart => pages/user_data_form/initial_user_data_form.dart} (90%) rename lib/{android/pages/settings.dart => pages/user_data_form/user_data_form.dart} (93%) rename lib/{android/config => services}/statistics.dart (91%) diff --git a/.dart_tool/package_config.json b/.dart_tool/package_config.json index c1d9134..e73180a 100644 --- a/.dart_tool/package_config.json +++ b/.dart_tool/package_config.json @@ -3,661 +3,661 @@ "packages": [ { "name": "_fe_analyzer_shared", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "adaptive_dialog", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "analyzer", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.13.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.13.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "animate_gradient", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2+1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2+1", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "animations", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "args", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "assorted_layout_widgets", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "async", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "basic_utils", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "boolean_selector", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "bs_flutter_modal", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "bs_flutter_utils", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "build", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "build_config", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_daemon", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_resolvers", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "build_runner", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "build_runner_core", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7+1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7+1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "built_collection", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "built_value", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.6.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.6.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "card_swiper", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "characters", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "checked_yaml", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "clock", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "code_builder", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.5.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.5.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "collection", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "convert", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "crypto", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "cupertino_icons", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "dart_style", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "dynamic_color", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "empty_widget", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "equatable", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fake_async", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "ffi", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.2", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "file", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "fixnum", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "fl_chart", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter", + "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_dotenv", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_form_builder", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "flutter_lints", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_localizations", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations", + "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_localizations", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_profile_picture", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "flutter_test", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test", + "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_test", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "flutter_web_plugins", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_web_plugins", + "rootUri": "file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "fluttertoast", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "form_builder_validators", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "frontend_server_client", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "glob", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.2", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "graphs", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.3.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.3.1", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "hive", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_flutter", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "hive_generator", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "http_multi_server", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "http_parser", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intersperse", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "intl", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "io", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "js", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5", "packageUri": "lib/", "languageVersion": "2.16" }, { "name": "json_annotation", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "lints", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "logging", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.2.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "macos_ui", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "matcher", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "material_color_utilities", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "matrix4_transform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1", "packageUri": "lib/", "languageVersion": "2.13" }, { "name": "meta", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "mime", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "package_config", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.15", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.15", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_android", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "path_provider_foundation", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.3", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "path_provider_linux", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.11", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "path_provider_platform_interface", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "path_provider_windows", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.7", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "percent_indicator", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "platform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "plugin_platform_interface", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pointycastle", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pool", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "process", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "pub_semver", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "pubspec_parse", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "responsive_framework", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "searchable_listview", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "shelf", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "shelf_web_socket", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "sizer", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "sky_engine", - "rootUri": "file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine", + "rootUri": "file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "source_gen", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.2", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "source_helper", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "source_span", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stack_trace", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "stream_channel", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "stream_transform", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "string_scanner", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "term_glyph", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1", "packageUri": "lib/", "languageVersion": "2.12" }, { "name": "test_api", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16", "packageUri": "lib/", "languageVersion": "2.18" }, { "name": "timing", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "typed_data", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "universal_io", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "vector_math", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "watcher", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2", "packageUri": "lib/", "languageVersion": "2.14" }, { "name": "web_socket_channel", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0", "packageUri": "lib/", "languageVersion": "2.15" }, { "name": "win32", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "xdg_directories", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0", "packageUri": "lib/", "languageVersion": "2.17" }, { "name": "yaml", - "rootUri": "file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2", + "rootUri": "file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2", "packageUri": "lib/", "languageVersion": "2.19" }, @@ -668,7 +668,7 @@ "languageVersion": "2.19" } ], - "generated": "2023-06-16T13:04:07.358776Z", + "generated": "2023-06-25T12:05:16.357241Z", "generator": "pub", "generatorVersion": "2.19.6" } diff --git a/.dart_tool/package_config_subset b/.dart_tool/package_config_subset index 909458d..7a39e08 100644 --- a/.dart_tool/package_config_subset +++ b/.dart_tool/package_config_subset @@ -1,445 +1,445 @@ _fe_analyzer_shared 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-61.0.0/lib/ adaptive_dialog 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/adaptive_dialog-1.8.3+1/lib/ analyzer 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.13.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/analyzer-5.13.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.13.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-5.13.0/lib/ animate_gradient 2.16 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2+1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animate_gradient-0.0.2+1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2+1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animate_gradient-0.0.2+1/lib/ animations 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/animations-2.0.7/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/animations-2.0.7/lib/ args 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/args-2.4.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2/lib/ assorted_layout_widgets 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/assorted_layout_widgets-8.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/assorted_layout_widgets-8.0.4/lib/ async 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/async-2.10.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.10.0/lib/ basic_utils 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/basic_utils-5.5.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/basic_utils-5.5.4/lib/ boolean_selector 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/ bs_flutter_modal 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_modal-1.0.6/lib/ bs_flutter_utils 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/bs_flutter_utils-1.0.2/lib/ build 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build-2.3.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.3.1/lib/ build_config 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_config-1.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.1/lib/ build_daemon 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_daemon-3.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-3.1.1/lib/ build_resolvers 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.2.0/lib/ build_runner 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner-2.3.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.3.3/lib/ build_runner_core 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7+1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/build_runner_core-7.2.7+1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7+1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.7+1/lib/ built_collection 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1/lib/ built_value 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.6.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/built_value-8.6.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.6.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.6.1/lib/ card_swiper 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/card_swiper-2.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/card_swiper-2.0.4/lib/ characters 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/characters-1.2.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.2.1/lib/ checked_yaml 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.3/lib/ clock 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/clock-1.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/ code_builder 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.5.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/code_builder-4.5.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.5.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.5.0/lib/ collection 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/collection-1.17.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.0/lib/ convert 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/convert-3.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/ crypto 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/crypto-3.0.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/ cupertino_icons 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/ dart_style 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dart_style-2.3.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-2.3.1/lib/ dynamic_color 2.16 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/dynamic_color-1.6.5/lib/ empty_widget 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/empty_widget-0.0.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/empty_widget-0.0.5/lib/ equatable 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/equatable-2.0.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/equatable-2.0.5/lib/ fake_async 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fake_async-1.3.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/ ffi 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/ffi-2.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.2/lib/ file 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/file-6.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/lib/ fixnum 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.0/lib/ fl_chart 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fl_chart-0.62.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fl_chart-0.62.0/lib/ flutter_dotenv 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_dotenv-5.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_dotenv-5.1.0/lib/ flutter_form_builder 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_form_builder-8.0.0/lib/ flutter_lints 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/lib/ flutter_profile_picture 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/flutter_profile_picture-2.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_profile_picture-2.0.0/lib/ fluttertoast 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.2.2/lib/ form_builder_validators 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/form_builder_validators-8.6.1/lib/ frontend_server_client 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/ glob 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/glob-2.1.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.2/lib/ graphs 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.3.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/graphs-2.3.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.3.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.3.1/lib/ hive 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive-2.2.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive-2.2.3/lib/ hive_flutter 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_flutter-1.1.0/lib/ hive_generator 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/hive_generator-2.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/hive_generator-2.0.0/lib/ http 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http-0.13.6/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http-0.13.6/lib/ http_multi_server 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.1/lib/ http_parser 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/ intersperse 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intersperse-2.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intersperse-2.0.0/lib/ intl 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/intl-0.17.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.17.0/lib/ io 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/io-1.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.4/lib/ js 2.16 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/js-0.6.5/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.5/lib/ json_annotation 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/json_annotation-4.8.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.8.1/lib/ lints 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/lints-2.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/lib/ logging 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/logging-1.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.2.0/lib/ macos_ui 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/macos_ui-1.12.2/lib/ matcher 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matcher-0.12.13/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.13/lib/ material_color_utilities 2.13 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.2.0/lib/ matrix4_transform 2.13 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/matrix4_transform-2.0.1/lib/ meta 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/meta-1.8.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.8.0/lib/ mime 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/mime-1.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/mime-1.0.4/lib/ package_config 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/package_config-2.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.1.0/lib/ path 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path-1.8.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.2/lib/ path_provider 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.15/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider-2.0.15/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.15/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.15/lib/ path_provider_android 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.27/lib/ path_provider_foundation 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.2.3/lib/ path_provider_linux 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.11/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.11/lib/ path_provider_platform_interface 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.6/lib/ path_provider_windows 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.7/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.7/lib/ percent_indicator 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/percent_indicator-4.2.3/lib/ platform 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/platform-3.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/lib/ plugin_platform_interface 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.4/lib/ pointycastle 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pointycastle-3.7.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib/ pool 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pool-1.5.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.1/lib/ process 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/process-4.2.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/lib/ pub_semver 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.1.4/lib/ pubspec_parse 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.2.3/lib/ responsive_framework 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/responsive_framework-1.0.0/lib/ searchable_listview 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/searchable_listview-2.4.0/lib/ shelf 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf-1.4.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.1/lib/ shelf_web_socket 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/ sizer 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/sizer-2.0.15/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/sizer-2.0.15/lib/ source_gen 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_gen-1.3.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-1.3.2/lib/ source_helper 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_helper-1.3.3/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.3/lib/ source_span 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/source_span-1.9.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.9.1/lib/ stack_trace 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stack_trace-1.11.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/ stream_channel 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_channel-2.1.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/ stream_transform 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/stream_transform-2.1.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.0/lib/ string_scanner 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/ term_glyph 2.12 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/ test_api 2.18 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/test_api-0.4.16/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.4.16/lib/ timing 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/timing-1.0.1/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.1/lib/ typed_data 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/typed_data-1.3.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2/lib/ universal_io 2.15 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/universal_io-2.2.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.2.0/lib/ vector_math 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/ watcher 2.14 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/watcher-1.0.2/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.0.2/lib/ web_socket_channel 2.15 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-2.4.0/lib/ win32 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/win32-4.1.4/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/win32-4.1.4/lib/ xdg_directories 2.17 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.0/lib/ yaml 2.19 -file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/ -file:///Users/bogdan/.pub-cache/hosted/pub.dev/yaml-3.1.2/lib/ -ernaehrung -2.19 -file:///Users/bogdan/IdeaProjects/ernaehrung/ -file:///Users/bogdan/IdeaProjects/ernaehrung/lib/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/ +file:///C:/Users/Nutzer/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.2/lib/ sky_engine 2.12 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/bin/cache/pkg/sky_engine/lib/ +file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine/ +file:///C:/Users/Nutzer/flutter/bin/cache/pkg/sky_engine/lib/ flutter 2.17 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter/lib/ +file:///C:/Users/Nutzer/flutter/packages/flutter/ +file:///C:/Users/Nutzer/flutter/packages/flutter/lib/ flutter_localizations 2.17 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_localizations/lib/ +file:///C:/Users/Nutzer/flutter/packages/flutter_localizations/ +file:///C:/Users/Nutzer/flutter/packages/flutter_localizations/lib/ flutter_test 2.17 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_test/lib/ +file:///C:/Users/Nutzer/flutter/packages/flutter_test/ +file:///C:/Users/Nutzer/flutter/packages/flutter_test/lib/ flutter_web_plugins 2.17 -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_web_plugins/ -file:///usr/local/Caskroom/flutter/3.7.7/flutter/packages/flutter_web_plugins/lib/ +file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins/ +file:///C:/Users/Nutzer/flutter/packages/flutter_web_plugins/lib/ +ernaehrung +2.19 +file:///C:/Users/Nutzer/source/repos/Flutter-Ernaehrungsapp/ +file:///C:/Users/Nutzer/source/repos/Flutter-Ernaehrungsapp/lib/ 2 diff --git a/.env b/.env index 2ff6b22..d5fae57 100644 --- a/.env +++ b/.env @@ -13,7 +13,8 @@ DINNER_FIELD=ABENDESSEN # abendessen YESTERDAY_AND_BEFORE=YESTERDAY # gestern und alles was davor war TOMORROW_AND_AFTER=TOMORROW # morgen und alles was kommen wird -MEALPLAN_BOX=MEALPLAN -STATISTICS_TODAY_BOX=STATISTICS_TODAY -STATISTICS_PROGRESS_BOX=STATISTICS_PROGRESS -STATISTICS_MAIN_BOX=STATISTICS_MAIN \ No newline at end of file +TODAY_BOX=TODAY +PROGRESS_BOX=PROGRESS +STATISTICS_BOX=STATISTICS +MAIN_BOX=MAIN +USER_BOX=USER diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies index 431c38f..d4b489b 100644 --- a/.flutter-plugins-dependencies +++ b/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_android-2.0.27/","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/macos_ui-1.12.2/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_foundation-2.2.3/","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_linux-2.1.11/","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/dynamic_color-1.6.5/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/path_provider_windows-2.1.7/","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_modal-1.0.6/","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/bs_flutter_utils-1.0.2/","dependencies":[]},{"name":"fluttertoast","path":"/Users/bogdan/.pub-cache/hosted/pub.dev/fluttertoast-8.2.2/","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-20 19:30:43.546201","version":"3.7.9"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.3\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","native_build":true,"dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","native_build":true,"dependencies":[]},{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.0.27\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"macos_ui","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\macos_ui-1.12.2\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.2.3\\\\","native_build":true,"dependencies":[]}],"linux":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.1.11\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"dynamic_color","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\dynamic_color-1.6.5\\\\","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.1.7\\\\","native_build":false,"dependencies":[]}],"web":[{"name":"bs_flutter_modal","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_modal-1.0.6\\\\","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\bs_flutter_utils-1.0.2\\\\","dependencies":[]},{"name":"fluttertoast","path":"C:\\\\Users\\\\Nutzer\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\fluttertoast-8.2.2\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"bs_flutter_modal","dependencies":["bs_flutter_utils"]},{"name":"bs_flutter_utils","dependencies":[]},{"name":"dynamic_color","dependencies":[]},{"name":"fluttertoast","dependencies":[]},{"name":"macos_ui","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-06-25 14:42:43.177562","version":"3.7.11"} \ No newline at end of file diff --git a/assets/images/fries.png b/assets/images/fries.png deleted file mode 100644 index 21790b6b2a6ee09d249a8546c286d015ba5e317a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 554 zcmV+_0@eMAP)Imja-t%B$R5@B4v{!QJaXbS@mxyBXWg&KGH6Gw z@MU04JZ+Hk)mqkMd;{v)QfPSu1)6Js(>|#g%CK#W<+i330I z0dEiRy$5*liDhnL7%)4Zi7r~!KmkV|H;me%WCz#Sp#wfBc#6>XEawRLfjLJUxHkA! sa2MoTWUYgcA{-zcVUo&9G1 zfhA#+_wwfv;K-41&PfXYKt#$(73ov1sZ3~c?qtxY^-Pg6c|Q3hGT76;CMEFX#Iqkq zw1keB?+Y2IwDjdHT)=}ldb&9{P=Ey48ovyH_ozVPQhFw?3mO&Kk+cyY~xNE9} zv?XoiJ{>Z+Zz*mM*1k3<=b@?P)MlS zPGjPgm=H_i9v(>-VP9a}$$Zn}Hi_?Ji345kR70);HWD2~sw7sCl!(v@@oMbDw+J=j zozRF>&iqO{$s*LmDZ-^77`=2GW(Z$&$HbSfV`&5m*t9Ldos1?2EPb8FoQ4W^v?Z#u zAXw4}sG9l=HZoH#Z%SbcJHT~RHq`$V0W<&JR4mnIE=XZhv{Sdn2~qxNb0Ja06YM3V z!-kv#=D;#%K*GOo%>j*SPTh0HhLSa-F63ed+U$aY7_tF#-siB}ZHVehrXXB^QU?~O zLT^Hzu<;3F$}aH?5FqIkI0sVLc^$nlHQ7Q$o_)4J7K=ou2IrkaX}oxpIF|A57=n9^551sK9+}nEiS*?00000 LNkvXXu0mjfzmD*y diff --git a/lib/android/components/diet_chart_component.dart b/lib/android/components/diet_chart_component.dart deleted file mode 100644 index f63bf46..0000000 --- a/lib/android/components/diet_chart_component.dart +++ /dev/null @@ -1,74 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:percent_indicator/linear_percent_indicator.dart'; - -class DietChatComponent extends StatefulWidget { - final double fatPercentPerThousandCalorie = 3.7; - final double proteinPercentPerThousandCalorie = 4.5; - final double carbsPercentPerThousandCalorie = 12.8; - - final String carbs = "Kohlenhydrate"; - final String protein = "Protein"; - final String fat = "Fett"; - - late String fatGramm, carbGramm, proteinGramm = ""; - late double fatSummary, carbSummary, proteinSummary = 0.0; - - DietChatComponent(int calorienSummary, {super.key, int calorienLeft = 0}){ - fatSummary = (calorienSummary / 100) * fatPercentPerThousandCalorie; - carbSummary = (calorienSummary / 100) * carbsPercentPerThousandCalorie; - proteinSummary = (calorienSummary / 100) * proteinPercentPerThousandCalorie; - fatGramm = '0 / $fatSummary g'; - carbGramm = '0 / $carbSummary g'; - proteinGramm = '0 / $proteinSummary g'; - } - - @override - State createState() => _DietChatComponentState(); -} - -class _DietChatComponentState extends State { - @override - Widget build(BuildContext context) { - return Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - Column( - children: [ - Text(widget.carbs), - LinearPercentIndicator( - width: 100.0, - lineHeight: 8.0, - percent: 0.9, - progressColor: Colors.blue, - ), - Text(widget.carbGramm) - ], - ), - Column( - children: [ - Text(widget.protein), - LinearPercentIndicator( - width: 100.0, - lineHeight: 8.0, - percent: 0.9, - progressColor: Colors.blue, - ), - Text(widget.proteinGramm) - ], - ), - Column( - children: [ - Text(widget.fat), - LinearPercentIndicator( - width: 100.0, - lineHeight: 8.0, - percent: 0.9, - progressColor: Colors.blue, - ), - Text(widget.fatGramm) - ], - ) - ], - ); - } -} diff --git a/lib/android/components/meal_page_text/secondary_big_text_component.dart b/lib/android/components/meal_page_text/secondary_big_text_component.dart deleted file mode 100644 index 2eccc37..0000000 --- a/lib/android/components/meal_page_text/secondary_big_text_component.dart +++ /dev/null @@ -1,19 +0,0 @@ -import 'package:flutter/material.dart'; - -class SecondaryBigTextComponent extends StatelessWidget { - final String title; - - const SecondaryBigTextComponent(this.title, {Key? key}) : super(key: key); - - @override - Widget build(BuildContext context) { - return Text( - title.toString(), - style: const TextStyle( - color: Colors.black, - fontSize: 30, - fontWeight: FontWeight.w600), - textAlign: TextAlign.left, - ); - } -} diff --git a/lib/android/components/not_found_component.dart b/lib/android/components/not_found_component.dart deleted file mode 100644 index 714ba26..0000000 --- a/lib/android/components/not_found_component.dart +++ /dev/null @@ -1,20 +0,0 @@ -import 'package:empty_widget/empty_widget.dart'; -import 'package:flutter/cupertino.dart'; - -class NotFoundComponent extends StatelessWidget { - const NotFoundComponent({Key? key}) : super(key: key); - - @override - Widget build(BuildContext context) { - return EmptyWidget( - image: null, - packageImage: PackageImage.Image_1, - title: 'Gericht existiert nicht', - titleTextStyle: const TextStyle( - fontSize: 18, - color: Color(0xff9da9c7), - fontWeight: FontWeight.w500, - ), - ); - } -} diff --git a/lib/android/components/statistics_circular_indicator_component.dart b/lib/android/components/statistics_circular_indicator_component.dart deleted file mode 100644 index 9a68cab..0000000 --- a/lib/android/components/statistics_circular_indicator_component.dart +++ /dev/null @@ -1,26 +0,0 @@ -import 'package:ernaehrung/android/components/circular/circular_component.dart'; -import 'package:flutter/material.dart'; - -class StatisticsPercentComponent extends StatelessWidget { - final int eaten, calorienBurned, calorienLeft, calorienLeftPercent; - - const StatisticsPercentComponent( - {super.key, - required this.calorienLeftPercent, - required this.eaten, - required this.calorienBurned, - required this.calorienLeft}); - - @override - Widget build(BuildContext context) { - return Row( - crossAxisAlignment: CrossAxisAlignment.center, - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - Text("$eaten gegessen"), - const CircularLoadingComponent(123), - Text("$calorienBurned verbrannt"), - ], - ); - } -} diff --git a/lib/android/components/welcome_text_field.dart b/lib/android/components/welcome_text_field.dart deleted file mode 100644 index cb08911..0000000 --- a/lib/android/components/welcome_text_field.dart +++ /dev/null @@ -1,192 +0,0 @@ -import 'package:ernaehrung/android/pages/nav_pages/main_page.dart'; -import 'package:flutter/material.dart'; - -class WelcomePageStateTextFieldState extends StatefulWidget { - const WelcomePageStateTextFieldState({super.key}); - - @override - State createState() => - _WelcomePageStateTextFieldState(); -} - -class _WelcomePageStateTextFieldState - extends State { - final firstnameTextEditingController = TextEditingController(); - final secondnameTextEditingController = TextEditingController(); - final weightTextEditingController = TextEditingController(); - final heightTextEditingController = TextEditingController(); - final caloriesTextEditingController = TextEditingController(); - - bool isNameVisible = false; - bool isSNameVisible = false; - bool isWeightVisible = false; - bool isHeightVisible = false; - bool isCaloriesVisible = false; - - void setNameVisible(bool visibility) { - setState(() => isNameVisible = visibility); - } - - void setSNameVisible(bool visibility) { - setState(() => isSNameVisible = visibility); - } - - void setWeightVisible(bool visibility) { - setState(() => isWeightVisible = visibility); - } - - void setHeightVisible(bool visibility) { - setState(() => isHeightVisible = visibility); - } - - void setCaloriesVisible(bool visibility) { - setState(() => isCaloriesVisible = visibility); - } - - @override - Widget build(BuildContext context) { - return Column( - crossAxisAlignment: CrossAxisAlignment.center, - children: [ - const SizedBox( - height: 24, - ), - TextFormField( - onChanged: (newText) { - if (newText.isNotEmpty) { - setNameVisible(true); - } else { - setNameVisible(false); - } - }, - controller: firstnameTextEditingController, - decoration: InputDecoration( - hintText: 'Name', - border: const OutlineInputBorder(gapPadding: 8), - suffixIcon: isNameVisible - ? IconButton( - onPressed: () { - firstnameTextEditingController.clear(); - setState(() => isNameVisible = false); - }, - icon: const Icon(Icons.clear)) - : null, - ), - keyboardType: TextInputType.text, - ), - const SizedBox( - height: 24, - ), - TextFormField( - onChanged: (newText) { - if (newText.isNotEmpty) { - setSNameVisible(true); - } else { - setSNameVisible(false); - } - }, - controller: secondnameTextEditingController, - decoration: InputDecoration( - hintText: 'Vorname', - border: const OutlineInputBorder(gapPadding: 8), - suffixIcon: isSNameVisible - ? IconButton( - onPressed: () { - secondnameTextEditingController.clear(); - setState(() => isSNameVisible = false); - }, - icon: const Icon(Icons.clear)) - : null, - ), - keyboardType: TextInputType.text), - const SizedBox( - height: 24, - ), - TextFormField( - onChanged: (newText) { - if (newText.isNotEmpty) { - setWeightVisible(true); - } else { - setWeightVisible(false); - } - }, - controller: weightTextEditingController, - decoration: InputDecoration( - hintText: 'Gewicht', - border: const OutlineInputBorder(gapPadding: 8), - suffixIcon: isWeightVisible - ? IconButton( - onPressed: () { - weightTextEditingController.clear(); - setState(() => isWeightVisible = false); - }, - icon: const Icon(Icons.clear)) - : null, - ), - keyboardType: TextInputType.number), - const SizedBox( - height: 24, - ), - TextFormField( - onChanged: (newText) { - if (newText.isNotEmpty) { - setHeightVisible(true); - } else { - setHeightVisible(false); - } - }, - controller: heightTextEditingController, - decoration: InputDecoration( - hintText: 'Größe', - border: const OutlineInputBorder(gapPadding: 8), - suffixIcon: isHeightVisible - ? IconButton( - onPressed: () { - heightTextEditingController.clear(); - setState(() => isHeightVisible = false); - }, - icon: const Icon(Icons.clear)) - : null, - ), - keyboardType: TextInputType.number), - const SizedBox( - height: 24, - ), - TextFormField( - onChanged: (newText) { - if (newText.isNotEmpty) { - setCaloriesVisible(true); - } else { - setCaloriesVisible(false); - } - }, - controller: caloriesTextEditingController, - decoration: InputDecoration( - hintText: 'gewünschte Kalorienzufuhr', - border: const OutlineInputBorder(gapPadding: 8), - suffixIcon: isCaloriesVisible - ? IconButton( - onPressed: () { - caloriesTextEditingController.clear(); - setState(() => isCaloriesVisible = false); - }, - icon: const Icon(Icons.clear)) - : null, - ), - keyboardType: TextInputType.number), - const SizedBox( - height: 24, - ), - ElevatedButton( - onPressed: () { - Navigator.pushAndRemoveUntil( - context, - MaterialPageRoute( - builder: (context) => const MainPage()), - (r) => false); - }, - child: const Text('Bestätigen')) - ], - ); - } -} diff --git a/lib/android/config/mock_data_helper.dart b/lib/android/config/mock_data_helper.dart deleted file mode 100644 index ec970fb..0000000 --- a/lib/android/config/mock_data_helper.dart +++ /dev/null @@ -1,62 +0,0 @@ - -import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; -import 'package:hive/hive.dart'; -import '../models/food.dart'; - -// TODO REMOVE IN PROD - -mockDataForWholeWeek(){ - StatisticsService statisticsService = StatisticsService.instance; - Box box = Hive.box('STATISTICS_MAIN'); - int timestamp = statisticsService.getTimestampFromNow(); - List currentWeek = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.week, timestamp); - for(int i = 0;i < currentWeek.length;i++){ - box.put(currentWeek[i], mockFood(i)); - } -} - - -mockFood(int i) { - List>> foods = [ - { - 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - }, - { - 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - }, - { - 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - }, - { - 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - }, - { - 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - }, - { - 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - }, - { - 'FRÜHSTÜCK':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'MITTAGESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - 'ABENDESSEN':[ Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),Food(167543,"Snacks Granola Bars Hard Almond","Snacks",495,25.5,7.7,62,0,4.8,),], - }, - ]; - return foods[i]; -} - - - diff --git a/lib/android/android_app.dart b/lib/app.dart similarity index 69% rename from lib/android/android_app.dart rename to lib/app.dart index d5958a1..86c9c2c 100644 --- a/lib/android/android_app.dart +++ b/lib/app.dart @@ -1,8 +1,8 @@ -import 'package:ernaehrung/android/pages/nav_pages/main_page.dart'; -import 'package:ernaehrung/android/pages/welcome.dart'; +import 'package:ernaehrung/pages/nav_pages/main_page.dart'; +import 'package:ernaehrung/pages/user_data_form/initial_user_data_form.dart'; import 'package:flutter/material.dart'; +import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:hive/hive.dart'; - import 'models/user.dart'; class AndroidApp extends StatelessWidget { @@ -10,7 +10,7 @@ class AndroidApp extends StatelessWidget { @override Widget build(BuildContext context) { - final box = Hive.box('USER_BOX'); + final box = Hive.box(dotenv.env['USER_BOX'] ?? 'USER'); return MaterialApp( debugShowCheckedModeBanner: false, title: 'Flutter Demo', diff --git a/lib/android/config/cast_helper.dart b/lib/helper/cast_helper.dart similarity index 100% rename from lib/android/config/cast_helper.dart rename to lib/helper/cast_helper.dart diff --git a/lib/android/config/format_helper.dart b/lib/helper/format_helper.dart similarity index 100% rename from lib/android/config/format_helper.dart rename to lib/helper/format_helper.dart diff --git a/lib/android/config/setup_todaybox_config.dart b/lib/helper/setup_todaybox.dart similarity index 76% rename from lib/android/config/setup_todaybox_config.dart rename to lib/helper/setup_todaybox.dart index 36d3734..d514f57 100644 --- a/lib/android/config/setup_todaybox_config.dart +++ b/lib/helper/setup_todaybox.dart @@ -7,11 +7,10 @@ final List emptyList = []; void setupTodayBox() async{ - final todayBox = Hive.box(dotenv.env['MEALPLAN_BOX']!); + final todayBox = Hive.box(dotenv.env['TODAY_BOX']!); putIfKeyNotExists(todayBox, 'FRÜHSTÜCK', []); putIfKeyNotExists(todayBox, 'MITTAGESSEN', []); putIfKeyNotExists(todayBox, 'ABENDESSEN', []); - } @@ -20,6 +19,3 @@ void putIfKeyNotExists(Box box, String key, List value) { box.put(key, value); } } -String getFormatedTodayDate(){ - return DateTime.now().toString().substring(0,10); -} \ No newline at end of file diff --git a/lib/main.dart b/lib/main.dart index 60bafcc..467b4b6 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,10 +1,10 @@ -import 'package:ernaehrung/android/models/food.dart'; -import 'package:ernaehrung/android/models/user.dart'; import 'package:flutter/material.dart'; import 'package:hive_flutter/hive_flutter.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; -import 'android/android_app.dart'; -import 'android/config/setup_todaybox_config.dart'; +import 'app.dart'; +import 'helper/setup_todaybox.dart'; +import 'models/food.dart'; +import 'models/user.dart'; void main() async { @@ -16,12 +16,13 @@ void main() async { if (!Hive.isAdapterRegistered(1)) { Hive.registerAdapter(UserAdapter()); } - await Hive.openBox(dotenv.env['STATISTICS_TODAY_BOX'] ?? 'STATISTICS_TODAY_BOX'); - await Hive.openBox( dotenv.env['STATISTICS_PROGRESS_BOX'] ?? 'STATISTICS_PROGRESS_BOX'); - await Hive.openBox(dotenv.env['STATISTICS_MAIN_BOX'] ?? 'STATISTICS_MAIN_BOX'); - await Hive.openBox(dotenv.env['MEALPLAN_BOX'] ?? 'MEALPLAN'); - await Hive.openBox('USER_BOX'); + await Hive.openBox(dotenv.env['PROGRESS_BOX'] ?? 'PROGRESS'); + await Hive.openBox( dotenv.env['STATISTICS_BOX'] ?? 'STATISTICS'); + await Hive.openBox(dotenv.env['MAIN_BOX'] ?? 'MAIN'); + await Hive.openBox(dotenv.env['TODAY_BOX'] ?? 'TODAY'); + await Hive.openBox(dotenv.env['USER_BOX'] ?? 'USER'); setupTodayBox(); + //Hive.deleteFromDisk(); runApp(const AndroidApp()); } diff --git a/lib/android/models/card.dart b/lib/models/card.dart similarity index 100% rename from lib/android/models/card.dart rename to lib/models/card.dart diff --git a/lib/android/models/card_item.dart b/lib/models/card_item.dart similarity index 100% rename from lib/android/models/card_item.dart rename to lib/models/card_item.dart diff --git a/lib/android/models/food.dart b/lib/models/food.dart similarity index 100% rename from lib/android/models/food.dart rename to lib/models/food.dart diff --git a/lib/android/models/food.g.dart b/lib/models/food.g.dart similarity index 100% rename from lib/android/models/food.g.dart rename to lib/models/food.g.dart diff --git a/lib/android/models/food_dto.dart b/lib/models/food_dto.dart similarity index 100% rename from lib/android/models/food_dto.dart rename to lib/models/food_dto.dart diff --git a/lib/android/models/form_builder.dart b/lib/models/form_builder.dart similarity index 100% rename from lib/android/models/form_builder.dart rename to lib/models/form_builder.dart diff --git a/lib/android/models/user.dart b/lib/models/user.dart similarity index 100% rename from lib/android/models/user.dart rename to lib/models/user.dart diff --git a/lib/android/models/user.g.dart b/lib/models/user.g.dart similarity index 100% rename from lib/android/models/user.g.dart rename to lib/models/user.g.dart diff --git a/lib/android/pages/nav_pages/main_page.dart b/lib/pages/nav_pages/main_page.dart similarity index 79% rename from lib/android/pages/nav_pages/main_page.dart rename to lib/pages/nav_pages/main_page.dart index d11c689..1ea2f4c 100644 --- a/lib/android/pages/nav_pages/main_page.dart +++ b/lib/pages/nav_pages/main_page.dart @@ -1,10 +1,10 @@ -import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; -import 'package:ernaehrung/android/pages/nav_pages/progress_page.dart'; -import 'package:ernaehrung/android/pages/nav_pages/today_page.dart'; -import 'package:ernaehrung/android/pages/settings.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/statistics_page/statistics_page.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/today_page/today_page.dart'; import 'package:flutter/material.dart'; -import 'meal_plan_page.dart'; +import '../../services/statistics.dart'; +import 'subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs.dart'; +import '../user_data_form/user_data_form.dart'; +import 'subpages/progress_page/progress_page.dart'; class MainPage extends StatefulWidget { const MainPage({Key? key}) : super(key: key); @@ -16,8 +16,8 @@ class MainPage extends StatefulWidget { class MainPageState extends State { List pages = [ const TodayPage(title: 'Essensplan'), - const MealPlanPage(title: 'Gesamtübersicht'), - const ProgressPage(title: 'Statistiken') + const ProgressPage(title: 'Gesamtübersicht'), + const StatisticsPage(title: 'Statistiken') ]; int currentIndex = 0; @@ -26,10 +26,10 @@ class MainPageState extends State { setState(() { currentIndex = index; if (currentIndex == 1) { - StatisticsService.instance + DataService.instance .updateStatisticsTodayBoxByTimespan(TimeSpan.day); } else if (currentIndex == 2) { - StatisticsService.instance.updateProgressBoxValues(); + DataService.instance.updateProgressBoxValues(); } pages[currentIndex]; }); @@ -45,7 +45,7 @@ class MainPageState extends State { children: [ Text( pages[currentIndex].title, - style: const TextStyle( + style: const TextStyle( color: Colors.black ), ), diff --git a/lib/android/pages/nav_pages/meal_plan_page.dart b/lib/pages/nav_pages/subpages/progress_page/progress_page.dart similarity index 57% rename from lib/android/pages/nav_pages/meal_plan_page.dart rename to lib/pages/nav_pages/subpages/progress_page/progress_page.dart index 52d1ac4..0a33a66 100644 --- a/lib/android/pages/nav_pages/meal_plan_page.dart +++ b/lib/pages/nav_pages/subpages/progress_page/progress_page.dart @@ -1,12 +1,14 @@ -import 'package:ernaehrung/android/components/chart/round_chart.dart'; -import 'package:ernaehrung/android/components/meal_page_food_component.dart'; + import 'package:flutter/material.dart'; -class MealPlanPage extends StatefulWidget { +import 'sub_components/charts/progress_charts_overview.dart'; +import 'sub_components/list_view/progress_all_meals_component.dart'; + +class ProgressPage extends StatefulWidget { final String title; final Color backgroundColor = const Color(0xff47a44b); - const MealPlanPage({Key? key, required this.title}) : super(key: key); + const ProgressPage({Key? key, required this.title}) : super(key: key); String get getTitle => title; @@ -16,10 +18,10 @@ class MealPlanPage extends StatefulWidget { } @override - State createState() => _MealPlanState(); + State createState() => ProgressState(); } -class _MealPlanState extends State { +class ProgressState extends State { @override Widget build(BuildContext context) { return Scaffold( @@ -29,8 +31,8 @@ class _MealPlanState extends State { child: SingleChildScrollView( child: Column( children: const [ - RoundChartComponent(), - MealPageStatisticsFoodComponent(), + ProgressChartsOverviewComponent(), + ProgressAllMealsComponent(), ], ), ))); diff --git a/lib/android/components/chart/round_chart.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/progress_charts_overview.dart similarity index 59% rename from lib/android/components/chart/round_chart.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/charts/progress_charts_overview.dart index 4ae6a29..281c160 100644 --- a/lib/android/components/chart/round_chart.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/progress_charts_overview.dart @@ -1,10 +1,10 @@ import 'package:flutter/material.dart'; -import '../meal_page_text/days_component.dart'; -import '../meal_page_text/statistics_today_component.dart'; +import 'sub_components/tabs/timespan_tabs.dart'; +import 'sub_components/charts/progress_charts.dart'; -class RoundChartComponent extends StatelessWidget { - const RoundChartComponent({Key? key}) : super(key: key); +class ProgressChartsOverviewComponent extends StatelessWidget { + const ProgressChartsOverviewComponent({Key? key}) : super(key: key); @override Widget build(BuildContext context) { @@ -17,8 +17,8 @@ class RoundChartComponent extends StatelessWidget { vertical: 8, horizontal: 16), child: Column( children: const [ - DaysMealPageComponent(), - StatisticsPercentage(), + TimespanTabsComponent(), + ProgressChartsComponent(), ], ), ), diff --git a/lib/android/components/meal_page_text/statistics_text_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/horizontal_chart_text_component.dart similarity index 73% rename from lib/android/components/meal_page_text/statistics_text_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/horizontal_chart_text_component.dart index 098fe8a..845ccb5 100644 --- a/lib/android/components/meal_page_text/statistics_text_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/horizontal_chart_text_component.dart @@ -1,10 +1,10 @@ import 'package:flutter/cupertino.dart'; -class StaticsTextComponent extends StatelessWidget { +class HorizontalChartTextComponent extends StatelessWidget { final String name; final bool titleOrSecondary; - const StaticsTextComponent(this.name, this.titleOrSecondary, {super.key}); + const HorizontalChartTextComponent(this.name, this.titleOrSecondary, {super.key}); @override Widget build(BuildContext context) { diff --git a/lib/android/components/meal_page_text/statistics_today_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_charts.dart similarity index 62% rename from lib/android/components/meal_page_text/statistics_today_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_charts.dart index 4386065..143f923 100644 --- a/lib/android/components/meal_page_text/statistics_today_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_charts.dart @@ -1,18 +1,18 @@ -import 'package:ernaehrung/android/components/circular/circular_component.dart'; -import 'package:ernaehrung/android/components/circular/line_circular_with_text_component.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_circular_chart.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_horizontal_chart.dart'; import 'package:flutter/material.dart'; +import '../../../../../../../../services/statistics.dart'; -class StatisticsPercentage extends StatelessWidget { +class ProgressChartsComponent extends StatelessWidget { final double heightStatisticsContainer = 220.0; final double widthStatisticsContainer = double.infinity; - const StatisticsPercentage({Key? key}) : super(key: key); + const ProgressChartsComponent({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return ValueListenableBuilder>( - valueListenable: StatisticsService.instance.ingredients, + valueListenable: DataService.instance.ingredients, builder: (context, value, child) { return Container( height: heightStatisticsContainer, @@ -26,7 +26,7 @@ class StatisticsPercentage extends StatelessWidget { padding: const EdgeInsets.symmetric( vertical: 0, horizontal: 8), child: FittedBox( - child: CircularLoadingComponent(value[6].toInt()), + child: ProgressCircularChartComponent(value[6].toInt()), ), ), ), @@ -36,11 +36,11 @@ class StatisticsPercentage extends StatelessWidget { mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: [ // TODO adjust 200 to values from user box - LineCircularWiTextComponent(Colors.lightGreen, value[0], + ProgressHorizontalChartComponent(Colors.lightGreen, value[0], value[3].toInt(), "Fat (g)"), - LineCircularWiTextComponent(Colors.lightGreen, value[1], + ProgressHorizontalChartComponent(Colors.lightGreen, value[1], value[4].toInt(), "Protein (g)"), - LineCircularWiTextComponent(Colors.lightGreen, value[2], + ProgressHorizontalChartComponent(Colors.lightGreen, value[2], value[5].toInt(), "Carbohydrate (g)"), ], )) diff --git a/lib/android/components/circular/circular_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_circular_chart.dart similarity index 77% rename from lib/android/components/circular/circular_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_circular_chart.dart index 44f19ff..08065ef 100644 --- a/lib/android/components/circular/circular_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_circular_chart.dart @@ -1,15 +1,15 @@ -import 'package:ernaehrung/android/config/statistics.dart'; import 'package:flutter/material.dart'; import 'package:percent_indicator/circular_percent_indicator.dart'; +import '../../../../../../../../services/statistics.dart'; -class CircularLoadingComponent extends StatelessWidget { +class ProgressCircularChartComponent extends StatelessWidget { final int totalCalories; - const CircularLoadingComponent(this.totalCalories, {Key? key}) : super(key: key); + const ProgressCircularChartComponent(this.totalCalories, {Key? key}) : super(key: key); @override Widget build(BuildContext context) { return ValueListenableBuilder( - valueListenable: StatisticsService.instance.eatenCalories, + valueListenable: DataService.instance.eatenCalories, builder: (context, value, child) { double progress = double.parse((value / totalCalories).toStringAsFixed(1)); diff --git a/lib/android/components/circular/line_circular_with_text_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_horizontal_chart.dart similarity index 70% rename from lib/android/components/circular/line_circular_with_text_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_horizontal_chart.dart index 1cd91c4..037e821 100644 --- a/lib/android/components/circular/line_circular_with_text_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/progress_horizontal_chart.dart @@ -1,15 +1,15 @@ -import 'package:ernaehrung/android/components/meal_page_text/statistics_text_component.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/charts/horizontal_chart_text_component.dart'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:percent_indicator/linear_percent_indicator.dart'; -class LineCircularWiTextComponent extends StatelessWidget { +class ProgressHorizontalChartComponent extends StatelessWidget { final Color progressColor; final double value; final int total; final String textName; - const LineCircularWiTextComponent( + const ProgressHorizontalChartComponent( this.progressColor, this.value, this.total, this.textName, {super.key}); @@ -22,7 +22,7 @@ class LineCircularWiTextComponent extends StatelessWidget { child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - StaticsTextComponent(double.parse(value.toString()).toStringAsFixed(2), true), + HorizontalChartTextComponent(double.parse(value.toString()).toStringAsFixed(2), true), const SizedBox(height: 4,), LinearPercentIndicator( padding: EdgeInsets.zero, @@ -31,7 +31,7 @@ class LineCircularWiTextComponent extends StatelessWidget { progressColor: progressColor, ), const SizedBox(height: 4,), - StaticsTextComponent(textName, false), + HorizontalChartTextComponent(textName, false), ], ), ); diff --git a/lib/android/components/meal_page_text/days_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs.dart similarity index 64% rename from lib/android/components/meal_page_text/days_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs.dart index 4a3811d..804a2b3 100644 --- a/lib/android/components/meal_page_text/days_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs.dart @@ -1,6 +1,6 @@ -import 'package:ernaehrung/android/components/meal_page_text/days_text_component.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs_text.dart'; import 'package:flutter/material.dart'; +import '../../../../../../../../services/statistics.dart'; enum TimeSpan { day, @@ -9,25 +9,25 @@ enum TimeSpan { } -class DaysMealPageComponent extends StatefulWidget { - const DaysMealPageComponent({Key? key}) : super(key: key); +class TimespanTabsComponent extends StatefulWidget { + const TimespanTabsComponent({Key? key}) : super(key: key); @override State createState() => _DaysMealPageState(); } -class _DaysMealPageState extends State { +class _DaysMealPageState extends State { int activatedIndex = 0; void updateValue(int index) { setState(() { activatedIndex = index; if(activatedIndex == 0){ - StatisticsService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.day); + DataService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.day); }else if(activatedIndex == 1){ - StatisticsService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.week); + DataService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.week); }else if(activatedIndex == 2){ - StatisticsService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.month); + DataService.instance.updateStatisticsTodayBoxByTimespan(TimeSpan.month); } }); } @@ -37,7 +37,7 @@ class _DaysMealPageState extends State { return Row( mainAxisAlignment: MainAxisAlignment.start, children: [ - DaysTextComponent( + TimespanTabsTextComponent( timeSpan: TimeSpan.day, textColor: activatedIndex == 0 ? const Color(0xff47a44b) @@ -46,7 +46,7 @@ class _DaysMealPageState extends State { index: 0 ), - DaysTextComponent( + TimespanTabsTextComponent( timeSpan: TimeSpan.week, textColor: activatedIndex == 1 ? const Color(0xff47a44b) @@ -54,7 +54,7 @@ class _DaysMealPageState extends State { onPressed: updateValue, index: 1 ), - DaysTextComponent( + TimespanTabsTextComponent( timeSpan: TimeSpan.month, textColor: activatedIndex == 2 ? const Color(0xff47a44b) diff --git a/lib/android/components/meal_page_text/days_text_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs_text.dart similarity index 63% rename from lib/android/components/meal_page_text/days_text_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs_text.dart index 120e535..396ece1 100644 --- a/lib/android/components/meal_page_text/days_text_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs_text.dart @@ -1,16 +1,17 @@ -import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs.dart'; import 'package:flutter/material.dart'; -class DaysTextComponent extends StatelessWidget { +import '../../../../../../../../services/statistics.dart'; + +class TimespanTabsTextComponent extends StatelessWidget { late final String timeSpan; late final TimeSpan timespan; Function(int i) onPressed; int index; Color textColor; - late StatisticsService statisticsService; + late DataService statisticsService; - DaysTextComponent({super.key, required TimeSpan timeSpan, required this.textColor, required this.onPressed, required this.index}){ + TimespanTabsTextComponent({super.key, required TimeSpan timeSpan, required this.textColor, required this.onPressed, required this.index}){ timespan = timeSpan; switch(timeSpan){ case TimeSpan.day: diff --git a/lib/android/components/meal_page_food_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_all_meals_component.dart similarity index 57% rename from lib/android/components/meal_page_food_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_all_meals_component.dart index ce715e7..6406e89 100644 --- a/lib/android/components/meal_page_food_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_all_meals_component.dart @@ -1,11 +1,11 @@ -import 'package:ernaehrung/android/components/food_list_component.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_food_list.dart'; import 'package:flutter/material.dart'; import 'package:hive/hive.dart'; -import 'meal_page_text/title_component.dart'; +import '../../../../../../services/statistics.dart'; +import '../../../../../shared_components/title.dart'; -class MealPageStatisticsFoodComponent extends StatelessWidget { - const MealPageStatisticsFoodComponent({Key? key}) : super(key: key); +class ProgressAllMealsComponent extends StatelessWidget { + const ProgressAllMealsComponent({Key? key}) : super(key: key); @override Widget build(BuildContext context) { @@ -19,8 +19,8 @@ class MealPageStatisticsFoodComponent extends StatelessWidget { crossAxisAlignment: CrossAxisAlignment.start, children: [ const TitleComponent("Alle Mahlzeiten"), - FoodComponent( - box: Hive.box(StatisticsService.instance.todayStatisticsBoxName), + ProgressFoodListComponent( + box: Hive.box(DataService.instance.progressBoxName), ) ], ), diff --git a/lib/android/components/card_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_card.dart similarity index 88% rename from lib/android/components/card_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_card.dart index 2f53973..fb92fca 100644 --- a/lib/android/components/card_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_card.dart @@ -1,15 +1,15 @@ import 'package:basic_utils/basic_utils.dart'; import 'package:flutter/material.dart'; -import '../config/format_helper.dart'; -import '../models/food.dart'; -import '../pages/nav_pages/search_food.dart'; +import '../../../../../../helper/format_helper.dart'; +import '../../../../../../models/food.dart'; +import '../../../../../search_food/search_food.dart'; -class CardComponent extends StatefulWidget { +class ProgressCardComponent extends StatefulWidget { final String eatingMealName; final List selectedMeal; final bool addButtonVisible; - const CardComponent( + const ProgressCardComponent( {Key? key, required this.eatingMealName, required this.selectedMeal, @@ -17,10 +17,10 @@ class CardComponent extends StatefulWidget { : super(key: key); @override - State createState() => _CardComponentState(); + State createState() => _ProgressCardComponentState(); } -class _CardComponentState extends State { +class _ProgressCardComponentState extends State { Route createRoute(String cardName) { return PageRouteBuilder( pageBuilder: (context, animation, secondaryAnimation) => @@ -42,17 +42,8 @@ class _CardComponentState extends State { } - String capitalize(String s) => s[0].toUpperCase() + s.substring(1); - String listFoodAsString() { - String mealAsString = ""; - for (final food in widget.selectedMeal) { - mealAsString = "${food.name} "; - } - return mealAsString; - } - Widget getElevatedButton() { if (widget.addButtonVisible) { return ElevatedButton( diff --git a/lib/android/components/food_list_component.dart b/lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_food_list.dart similarity index 65% rename from lib/android/components/food_list_component.dart rename to lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_food_list.dart index cda9b35..5141bee 100644 --- a/lib/android/components/food_list_component.dart +++ b/lib/pages/nav_pages/subpages/progress_page/sub_components/list_view/progress_food_list.dart @@ -1,12 +1,12 @@ -import 'package:ernaehrung/android/config/cast_helper.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; import 'package:flutter/cupertino.dart'; import 'package:hive_flutter/adapters.dart'; -import 'card_component.dart'; +import '../../../../../../helper/cast_helper.dart'; +import '../../../../../../services/statistics.dart'; +import 'progress_card.dart'; -class FoodComponent extends StatelessWidget { +class ProgressFoodListComponent extends StatelessWidget { final Box box; - const FoodComponent({super.key, required this.box}); + const ProgressFoodListComponent({super.key, required this.box}); @override Widget build(BuildContext context) { @@ -20,10 +20,10 @@ class FoodComponent extends StatelessWidget { shrinkWrap: true, itemCount: box.keys.length, itemBuilder: (context, i) { - return CardComponent( + return ProgressCardComponent( eatingMealName: mealTypes[i], selectedMeal: castDynamicToListFood(box.get(mealTypes[i])), - addButtonVisible: box.name != StatisticsService.instance.todayStatisticsBoxName.toLowerCase(), + addButtonVisible: box.name != DataService.instance.progressBoxName.toLowerCase(), ); } ); diff --git a/lib/android/pages/nav_pages/progress_page.dart b/lib/pages/nav_pages/subpages/statistics_page/statistics_page.dart similarity index 80% rename from lib/android/pages/nav_pages/progress_page.dart rename to lib/pages/nav_pages/subpages/statistics_page/statistics_page.dart index d69e748..6bdcbcb 100644 --- a/lib/android/pages/nav_pages/progress_page.dart +++ b/lib/pages/nav_pages/subpages/statistics_page/statistics_page.dart @@ -1,15 +1,15 @@ -import 'package:ernaehrung/android/components/chart/chart.dart'; -import 'package:ernaehrung/android/components/meal_page_text/secondary_text_component.dart'; -import 'package:ernaehrung/android/components/meal_page_text/title_component.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; import 'package:flutter/material.dart'; -import '../../config/format_helper.dart'; +import '../../../../helper/format_helper.dart'; +import '../../../../services/statistics.dart'; +import 'sub_components/chart.dart'; +import '../../../shared_components/secondary_text.dart'; +import '../../../shared_components/title.dart'; -class ProgressPage extends StatelessWidget { +class StatisticsPage extends StatelessWidget { final String title; final Color backgroundColor = const Color(0xff47a44b); - const ProgressPage({Key? key, required this.title}) : super(key: key); + const StatisticsPage({Key? key, required this.title}) : super(key: key); String get getTitle => title; @@ -35,7 +35,7 @@ class ProgressPage extends StatelessWidget { const EdgeInsets.symmetric(vertical: 8, horizontal: 16), child: ValueListenableBuilder( valueListenable: - StatisticsService.instance.weeklyCaloryRanking, + DataService.instance.weeklyCaloryRanking, builder: (context, value, child) { return Column( children: [ diff --git a/lib/android/components/chart/chart.dart b/lib/pages/nav_pages/subpages/statistics_page/sub_components/chart.dart similarity index 93% rename from lib/android/components/chart/chart.dart rename to lib/pages/nav_pages/subpages/statistics_page/sub_components/chart.dart index b4436be..7af503d 100644 --- a/lib/android/components/chart/chart.dart +++ b/lib/pages/nav_pages/subpages/statistics_page/sub_components/chart.dart @@ -1,9 +1,8 @@ import 'package:fl_chart/fl_chart.dart'; import 'package:flutter/material.dart'; -import '../../config/statistics.dart'; -import '../meal_page_text/secondary_big_text_component.dart'; -import '../meal_page_text/secondary_text_component.dart'; -import '../meal_page_text/title_component.dart'; +import '../../../../../services/statistics.dart'; +import '../../../../shared_components/secondary_text.dart'; +import '../../../../shared_components/title.dart'; class ChartComponent extends StatelessWidget { const ChartComponent({Key? key}) : super(key: key); @@ -137,7 +136,7 @@ class ChartComponent extends StatelessWidget { child: Column( children: [ ValueListenableBuilder( - valueListenable: StatisticsService + valueListenable: DataService .instance.dailyAverageForCurrentWeek, builder: (context, value, child) { return SizedBox( @@ -154,8 +153,16 @@ class ChartComponent extends StatelessWidget { "Durchschnittlich", null ), - SecondaryBigTextComponent( - "${value.toString()} kcal/Tag"), + Text( + "${value.toString()} kcal/Tag", + style: const TextStyle( + color: Colors.black, + fontSize: 30, + fontWeight: FontWeight.w600 + ), + textAlign: TextAlign.left, + ), + ], ), ); @@ -163,7 +170,7 @@ class ChartComponent extends StatelessWidget { ), ValueListenableBuilder( valueListenable: - StatisticsService.instance.barChartData, + DataService.instance.barChartData, builder: (context, value, child) { return SizedBox( height: 300, @@ -186,7 +193,7 @@ class ChartComponent extends StatelessWidget { width: 12, height: 12, decoration: const BoxDecoration( - color: Colors.red, + color: Colors.yellow, // Use the color of the first bar rod for the legend item shape: BoxShape.circle, ), @@ -213,7 +220,7 @@ class ChartComponent extends StatelessWidget { width: 12, height: 12, decoration: const BoxDecoration( - color: Colors.green, + color: Colors.red, // Use the color of the first bar rod for the legend item shape: BoxShape.circle, ), @@ -240,7 +247,7 @@ class ChartComponent extends StatelessWidget { width: 12, height: 12, decoration: const BoxDecoration( - color: Colors.yellow, + color: Colors.green, // Use the color of the first bar rod for the legend item shape: BoxShape.circle, ), @@ -275,7 +282,7 @@ class ChartComponent extends StatelessWidget { extraLinesData: ExtraLinesData( horizontalLines: [ HorizontalLine( - y: StatisticsService.instance.getCaloryTargetForOneDay(), // Specify the y-value where you want the line to be positioned + y: DataService.instance.getCaloryTargetForOneDay(), // Specify the y-value where you want the line to be positioned color: Colors.black, // Change the color as per your requirement strokeWidth: 2, // Adjust the width as needed dashArray: [3, 2], diff --git a/lib/android/components/meals.dart b/lib/pages/nav_pages/subpages/today_page/sub_components/meals.dart similarity index 76% rename from lib/android/components/meals.dart rename to lib/pages/nav_pages/subpages/today_page/sub_components/meals.dart index 5dd5687..19f2160 100644 --- a/lib/android/components/meals.dart +++ b/lib/pages/nav_pages/subpages/today_page/sub_components/meals.dart @@ -2,9 +2,8 @@ import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:hive_flutter/adapters.dart'; - -import '../config/statistics.dart'; -import 'card/card_component.dart'; +import '../../../../../services/statistics.dart'; +import 'today_card/today_card.dart'; class MealsComponent extends StatelessWidget { MealsComponent({Key? key}) : super(key: key); @@ -13,7 +12,7 @@ class MealsComponent extends StatelessWidget { @override Widget build(BuildContext context) { return ValueListenableBuilder( - valueListenable: Hive.box(dotenv.env['MEALPLAN_BOX'] ?? 'MEALPLAN').listenable(), + valueListenable: Hive.box(dotenv.env['TODAY_BOX'] ?? 'TODAY').listenable(), builder: (context, box, widget) { final mealTypes = ['FRÜHSTÜCK','MITTAGESSEN','ABENDESSEN']; // Specify the desired order of meal types return ListView.builder( @@ -22,9 +21,9 @@ class MealsComponent extends StatelessWidget { itemCount: box.keys.length, itemBuilder: (context, i) { String mealTypeAsString = mealTypes[i]; - return CardComponent( + return TodayCardComponent( mealTypeAsString, - StatisticsService.instance.getMealsOfTodayByMealtype(mealTypeAsString), + DataService.instance.getMealsOfTodayByMealtype(mealTypeAsString), color: colors[i], ); }); diff --git a/lib/android/components/card/card_data_food_component.dart b/lib/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_data_food.dart similarity index 91% rename from lib/android/components/card/card_data_food_component.dart rename to lib/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_data_food.dart index 12cc653..244dbec 100644 --- a/lib/android/components/card/card_data_food_component.dart +++ b/lib/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_data_food.dart @@ -1,8 +1,8 @@ -import 'package:ernaehrung/android/components/card/card_food_item_component.dart'; -import 'package:ernaehrung/android/models/food.dart'; import 'package:flutter/material.dart'; +import '../../../../../../../helper/format_helper.dart'; +import '../../../../../../../models/food.dart'; +import 'card_food_item.dart'; -import '../../config/format_helper.dart'; class CardDataFoodComponent extends StatelessWidget { final List foods; diff --git a/lib/android/components/card/card_food_item_component.dart b/lib/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_food_item.dart similarity index 100% rename from lib/android/components/card/card_food_item_component.dart rename to lib/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_food_item.dart diff --git a/lib/android/components/card/card_title_component.dart b/lib/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_title.dart similarity index 100% rename from lib/android/components/card/card_title_component.dart rename to lib/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_title.dart diff --git a/lib/android/components/card/card_component.dart b/lib/pages/nav_pages/subpages/today_page/sub_components/today_card/today_card.dart similarity index 82% rename from lib/android/components/card/card_component.dart rename to lib/pages/nav_pages/subpages/today_page/sub_components/today_card/today_card.dart index a653b97..ae95ce4 100644 --- a/lib/android/components/card/card_component.dart +++ b/lib/pages/nav_pages/subpages/today_page/sub_components/today_card/today_card.dart @@ -1,17 +1,17 @@ import 'package:basic_utils/basic_utils.dart'; -import 'package:ernaehrung/android/components/card/card_data_food_component.dart'; -import 'package:ernaehrung/android/components/card/card_title_component.dart'; -import 'package:ernaehrung/android/config/cast_helper.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_data_food.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/today_page/sub_components/today_card/sub_components/card_title.dart'; import 'package:flutter/material.dart'; -import '../../models/food.dart'; -import '../../pages/nav_pages/search_food.dart'; +import '../../../../../../helper/cast_helper.dart'; +import '../../../../../../models/food.dart'; +import '../../../../../search_food/search_food.dart'; -class CardComponent extends StatelessWidget { +class TodayCardComponent extends StatelessWidget { final String title; final Color color; final List foods; - const CardComponent(this.title, this.foods, {super.key, Color? color}) + const TodayCardComponent(this.title, this.foods, {super.key, Color? color}) : color = color ?? Colors.black; Route createRoute(String cardName) { diff --git a/lib/android/pages/nav_pages/today_page.dart b/lib/pages/nav_pages/subpages/today_page/today_page.dart similarity index 84% rename from lib/android/pages/nav_pages/today_page.dart rename to lib/pages/nav_pages/subpages/today_page/today_page.dart index afb6a1b..7638d08 100644 --- a/lib/android/pages/nav_pages/today_page.dart +++ b/lib/pages/nav_pages/subpages/today_page/today_page.dart @@ -1,6 +1,7 @@ -import 'package:ernaehrung/android/components/meals.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/today_page/sub_components/meals.dart'; import 'package:flutter/material.dart'; + class TodayPage extends StatefulWidget { final String title; final Color backgroundColor = const Color(0xff47a44b); diff --git a/lib/android/pages/nav_pages/search_food.dart b/lib/pages/search_food/search_food.dart similarity index 93% rename from lib/android/pages/nav_pages/search_food.dart rename to lib/pages/search_food/search_food.dart index b847313..6fa8251 100644 --- a/lib/android/pages/nav_pages/search_food.dart +++ b/lib/pages/search_food/search_food.dart @@ -1,6 +1,5 @@ +import 'package:ernaehrung/pages/search_food/sub_components/search.dart'; import 'package:flutter/material.dart'; - -import '../../components/search_component.dart'; import '../../models/food.dart'; import '../../models/food_dto.dart'; diff --git a/lib/android/components/search_component.dart b/lib/pages/search_food/sub_components/search.dart similarity index 83% rename from lib/android/components/search_component.dart rename to lib/pages/search_food/sub_components/search.dart index 8652164..554913a 100644 --- a/lib/android/components/search_component.dart +++ b/lib/pages/search_food/sub_components/search.dart @@ -1,7 +1,7 @@ import 'package:empty_widget/empty_widget.dart'; import 'package:flutter/material.dart'; -import '../models/food.dart'; -import 'founded_search_component.dart'; +import '../../../models/food.dart'; +import 'searched_food.dart'; class SearchComponent extends StatefulWidget { final List foods; @@ -72,20 +72,5 @@ class _SearchComponentState extends State { foundedFood; }); } -/* - void findOnChanged(String searchedFood) async { - foundedFood.clear(); - if(searchedFood.isEmpty){ - setState(() {}); - return; - }else{ - for (final food in allFoods) { - if (food.name.toString().toLowerCase().contains(searchedFood)) { - foundedFood.add(food); - } - } - setState(() => {foundedFood}); - } - } -*/ + } diff --git a/lib/android/components/founded_search_component.dart b/lib/pages/search_food/sub_components/searched_food.dart similarity index 92% rename from lib/android/components/founded_search_component.dart rename to lib/pages/search_food/sub_components/searched_food.dart index 61fce70..40b111c 100644 --- a/lib/android/components/founded_search_component.dart +++ b/lib/pages/search_food/sub_components/searched_food.dart @@ -1,13 +1,13 @@ import 'package:assorted_layout_widgets/assorted_layout_widgets.dart'; import 'package:basic_utils/basic_utils.dart'; -import 'package:ernaehrung/android/config/cast_helper.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; import 'package:flutter/material.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:fluttertoast/fluttertoast.dart'; import 'package:hive/hive.dart'; -import '../config/format_helper.dart'; -import '../models/food.dart'; +import '../../../helper/cast_helper.dart'; +import '../../../helper/format_helper.dart'; +import '../../../models/food.dart'; +import '../../../services/statistics.dart'; class SearchedFoodComponent extends StatefulWidget { final Food food; @@ -21,13 +21,13 @@ class SearchedFoodComponent extends StatefulWidget { class _SearchFoodComponentState extends State { int counter = 1; void storeFood(int counter, BuildContext context) async { - final mealplanBox = Hive.box(dotenv.env['MEALPLAN_BOX']!); - if (!mealplanBox.isOpen){ - Hive.openBox(dotenv.env['MEALPLAN_BOX']!); + final todayBox = Hive.box(dotenv.env['TODAY_BOX']!); + if (!todayBox.isOpen){ + Hive.openBox(dotenv.env['TODAY_BOX']!); } for(int i = 0; i < counter; i++){ - StatisticsService.instance.addItemToMainBox(widget.food, widget.cardName); - addValuesToList(mealplanBox, widget.cardName, [widget.food]); + DataService.instance.addItemToMainBox(widget.food, widget.cardName); + addValuesToList(todayBox, widget.cardName, [widget.food]); } showSuccessToast(context); } diff --git a/lib/android/components/form/form_builder.dart b/lib/pages/shared_components/form_builder.dart similarity index 97% rename from lib/android/components/form/form_builder.dart rename to lib/pages/shared_components/form_builder.dart index c4663f5..ed457c1 100644 --- a/lib/android/components/form/form_builder.dart +++ b/lib/pages/shared_components/form_builder.dart @@ -1,10 +1,11 @@ -import 'package:ernaehrung/android/components/form/form_builder_text_field_component.dart'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; +import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:flutter_form_builder/flutter_form_builder.dart'; import 'package:hive/hive.dart'; import '../../models/form_builder.dart'; import '../../models/user.dart'; +import 'form_builder_text_field.dart'; class FormBuilderComponent extends StatefulWidget { final bool lockTextFields; @@ -117,7 +118,7 @@ class _FormBuilderComponentState extends State { shape: const StadiumBorder(), ), onPressed: () { - final Box box = Hive.box("USER_BOX"); + final Box box = Hive.box(dotenv.env['USER_BOX'] ?? 'USER'); if (widget.lockTextFields) { box.put( diff --git a/lib/android/components/form/form_builder_text_field_component.dart b/lib/pages/shared_components/form_builder_text_field.dart similarity index 94% rename from lib/android/components/form/form_builder_text_field_component.dart rename to lib/pages/shared_components/form_builder_text_field.dart index 2505e0a..b341e3b 100644 --- a/lib/android/components/form/form_builder_text_field_component.dart +++ b/lib/pages/shared_components/form_builder_text_field.dart @@ -1,10 +1,11 @@ import 'package:basic_utils/basic_utils.dart'; -import 'package:ernaehrung/android/models/form_builder.dart'; -import 'package:ernaehrung/android/models/user.dart'; import 'package:flutter/material.dart'; +import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:flutter_form_builder/flutter_form_builder.dart'; import 'package:form_builder_validators/form_builder_validators.dart'; import 'package:hive/hive.dart'; +import '../../models/form_builder.dart'; +import '../../models/user.dart'; class FormBuilderTextFieldComponent extends StatefulWidget { final bool isSettingsPage; @@ -65,7 +66,7 @@ class TextFieldChild extends StatelessWidget { dynamic getInitialValue(FormTextField textField){ - final User user = Hive.box("USER_BOX").values.last; + final User user = Hive.box(dotenv.env['USER_BOX'] ?? 'USER').values.last; if (textField.title == "vorname"){ return user.vorname; }else if (textField.title == "nachname"){ diff --git a/lib/android/components/meal_page_text/secondary_text_component.dart b/lib/pages/shared_components/secondary_text.dart similarity index 100% rename from lib/android/components/meal_page_text/secondary_text_component.dart rename to lib/pages/shared_components/secondary_text.dart diff --git a/lib/android/components/meal_page_text/title_component.dart b/lib/pages/shared_components/title.dart similarity index 100% rename from lib/android/components/meal_page_text/title_component.dart rename to lib/pages/shared_components/title.dart diff --git a/lib/android/pages/welcome.dart b/lib/pages/user_data_form/initial_user_data_form.dart similarity index 90% rename from lib/android/pages/welcome.dart rename to lib/pages/user_data_form/initial_user_data_form.dart index 71def2b..98828f1 100644 --- a/lib/android/pages/welcome.dart +++ b/lib/pages/user_data_form/initial_user_data_form.dart @@ -1,5 +1,5 @@ -import 'package:ernaehrung/android/components/form/form_builder.dart'; import 'package:flutter/material.dart'; +import '../shared_components/form_builder.dart'; class OnboardingPage extends StatefulWidget { const OnboardingPage({Key? key}) : super(key: key); diff --git a/lib/android/pages/settings.dart b/lib/pages/user_data_form/user_data_form.dart similarity index 93% rename from lib/android/pages/settings.dart rename to lib/pages/user_data_form/user_data_form.dart index eba79fb..565037f 100644 --- a/lib/android/pages/settings.dart +++ b/lib/pages/user_data_form/user_data_form.dart @@ -1,7 +1,7 @@ import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; +import '../shared_components/form_builder.dart'; -import '../components/form/form_builder.dart'; class SettingsPage extends StatefulWidget { const SettingsPage({Key? key}) : super(key: key); diff --git a/lib/android/config/statistics.dart b/lib/services/statistics.dart similarity index 91% rename from lib/android/config/statistics.dart rename to lib/services/statistics.dart index 47525d2..9569748 100644 --- a/lib/android/config/statistics.dart +++ b/lib/services/statistics.dart @@ -1,27 +1,28 @@ import 'dart:math'; -import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; -import 'package:ernaehrung/android/config/cast_helper.dart'; import 'package:fl_chart/fl_chart.dart'; import 'package:flutter/material.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:hive/hive.dart'; +import '../pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs.dart'; import '../models/food.dart'; import '../models/user.dart'; -import 'format_helper.dart'; +import '../helper/cast_helper.dart'; +import '../helper/format_helper.dart'; -class StatisticsService { +class DataService { - static final StatisticsService _instance = StatisticsService._internal(); - factory StatisticsService() => _instance; + static final DataService _instance = DataService._internal(); + factory DataService() => _instance; - static StatisticsService get instance => _instance; + static DataService get instance => _instance; - StatisticsService._internal() { - //initBoxes(); + DataService._internal() { + // TO RUN TESTS -> COMMENT initBoxes() out -> HIVE behavior is tested in other tests + initBoxes(); } - String todayStatisticsBoxName = dotenv.env['STATISTICS_TODAY_BOX'] ?? 'STATISTICS_TODAY_BOX'; - String mainStatisticsBoxName = dotenv.env['STATISTICS_MAIN_BOX'] ?? 'STATISTICS_MAIN_BOX'; - String progressStatisticsBoxName = dotenv.env['STATISTICS_PROGRESS_BOX'] ?? 'STATISTICS_PROGRESS_BOX'; + String progressBoxName = dotenv.env['PROGRESS_BOX'] ?? 'PROGRESS_BOX'; + String mainBoxName = dotenv.env['MAIN_BOX'] ?? 'MAIN_BOX'; + String statisticsBoxName = dotenv.env['STATISTICS_BOX'] ?? 'STATISTICS_BOX'; ValueNotifier eatenCalories = ValueNotifier(0); /* @@ -39,8 +40,8 @@ class StatisticsService { ValueNotifier> barChartData = ValueNotifier>([]); initBoxes()async{ - Box reducedBox = Hive.box(todayStatisticsBoxName); - Box progressBox = Hive.box(progressStatisticsBoxName); + Box reducedBox = Hive.box(progressBoxName); + Box progressBox = Hive.box(statisticsBoxName); putIfKeyNotExists([reducedBox,progressBox], 'FRÜHSTÜCK', []); putIfKeyNotExists([reducedBox,progressBox], 'MITTAGESSEN', []); @@ -57,24 +58,24 @@ class StatisticsService { } updateStatisticsTodayBoxByTimespan(TimeSpan timespan){ - clearBoxByBox(Hive.box(todayStatisticsBoxName)); + clearBoxByBox(Hive.box(progressBoxName)); int timestamp = getTimestampFromNow(); int dayLen = 1; switch(timespan){ case TimeSpan.day: - getNewFoodAndUpdateBoxByTimestampAndBox(timestamp, Hive.box(todayStatisticsBoxName)); + getNewFoodAndUpdateBoxByTimestampAndBox(timestamp, Hive.box(progressBoxName)); break; case TimeSpan.week: List currentWeek = getTimestampsByTimestampAndTimespan(TimeSpan.week,timestamp); for(int i = 0;i < currentWeek.length;i++){ - getNewFoodAndUpdateBoxByTimestampAndBox(currentWeek[i],Hive.box(todayStatisticsBoxName)); + getNewFoodAndUpdateBoxByTimestampAndBox(currentWeek[i],Hive.box(progressBoxName)); } dayLen = currentWeek.length; break; case TimeSpan.month: List currentMonth = getTimestampsByTimestampAndTimespan(TimeSpan.month,timestamp); for(int i = 0;i < currentMonth.length;i++){ - getNewFoodAndUpdateBoxByTimestampAndBox(currentMonth[i],Hive.box(todayStatisticsBoxName)); + getNewFoodAndUpdateBoxByTimestampAndBox(currentMonth[i],Hive.box(progressBoxName)); } dayLen = currentMonth.length; break; @@ -83,7 +84,7 @@ class StatisticsService { } void updateCalculationsAndNotfiyListenersForPorgressStatistics(int dayLen){ - eatenCalories.value = getAllEatenCaloriesByBox(Hive.box(todayStatisticsBoxName)); + eatenCalories.value = getAllEatenCaloriesByBox(Hive.box(progressBoxName)); ingredients.value = getAllEatenIngredientsForTodayStatistics(dayLen.roundToDouble()); } @@ -143,7 +144,7 @@ class StatisticsService { } Map> getFoodMapForGivenTimestampFromMainBox(int timestamp){ - Box box = Hive.box(mainStatisticsBoxName); + Box box = Hive.box(mainBoxName); dynamic matchingTimestamp = getMatchingTimestamp(box, timestamp); if(matchingTimestamp != null){ return castDynamicMap(box.get(matchingTimestamp)); @@ -185,7 +186,7 @@ class StatisticsService { addItemToMainBox(Food value, String mealType){ // Hive.deleteFromDisk(); - Box box = Hive.box(mainStatisticsBoxName); + Box box = Hive.box(mainBoxName); DateTime dateTime = DateTime.now(); // DEBUG @@ -230,13 +231,13 @@ class StatisticsService { } double getCaloryTargetForOneDay(){ - final Box userBox = Hive.box("USER_BOX"); + final Box userBox = Hive.box(dotenv.env['USER_BOX'] ?? 'USER'); return userBox.get("USER").kalorien.toDouble(); } List getAllEatenIngredientsForTodayStatistics(double dayLen){ - Box box = Hive.box(todayStatisticsBoxName); - final Box userBox = Hive.box("USER_BOX"); + Box box = Hive.box(progressBoxName); + final Box userBox = Hive.box(dotenv.env['USER_BOX'] ?? 'USER'); final calorieSummary = userBox.get("USER").kalorien; const double fatPercentPerThousandCalorie = 3.7; @@ -276,7 +277,7 @@ class StatisticsService { } void updateProgressBoxValues(){ - Box box = Hive.box(progressStatisticsBoxName); + Box box = Hive.box(statisticsBoxName); box.clear(); int timestamp = getTimestampFromNow(); List currentWeek = getTimestampsByTimestampAndTimespan(TimeSpan.week,timestamp); @@ -287,7 +288,7 @@ class StatisticsService { } int getAverageCaloriesForCurrentWeekOnDailyBasis(){ - Box box = Hive.box(progressStatisticsBoxName); + Box box = Hive.box(statisticsBoxName); return getAllEatenCaloriesByBox(box)~/7; } diff --git a/pubspec.yaml b/pubspec.yaml index bc68c2c..fe1eb47 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -83,9 +83,6 @@ flutter: assets: - assets/json/csvjson_full.json - assets/json/csvjson_minified.json - - assets/images/fries.png - - assets/images/ice.png - - assets/images/tea.png - .env # To add assets to your application, add an assets section, like this: # assets: diff --git a/test/statistics_test.dart b/test/statistics_test.dart index 1c52bf1..ed0c232 100644 --- a/test/statistics_test.dart +++ b/test/statistics_test.dart @@ -1,16 +1,18 @@ -import 'package:ernaehrung/android/components/meal_page_text/days_component.dart'; -import 'package:ernaehrung/android/config/format_helper.dart'; -import 'package:ernaehrung/android/config/statistics.dart'; -import 'package:ernaehrung/android/models/food.dart'; +import 'package:ernaehrung/helper/format_helper.dart'; +import 'package:ernaehrung/models/food.dart'; +import 'package:ernaehrung/pages/nav_pages/subpages/progress_page/sub_components/charts/sub_components/tabs/timespan_tabs.dart'; +import 'package:ernaehrung/services/statistics.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:flutter_test/flutter_test.dart'; -late StatisticsService statisticsService; +// TO RUN TESTS COMMENT initBoxes() (services/statistics.dart line 21) out -> HIVE behavior is tested in other tests + +late DataService dataService; Future main() async { await dotenv.load(fileName: ".env"); setUp(() async { - statisticsService = StatisticsService.instance; + dataService = DataService.instance; }); tearDown(() async { @@ -49,39 +51,39 @@ Future main() async { } test('check if given timestamp returns valid timespan or catches invalid timestamp', () { - List day = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.day,getTimestampFromNow()); + List day = dataService.getTimestampsByTimestampAndTimespan(TimeSpan.day,getTimestampFromNow()); expect(31, day.length); - List week = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.week,getTimestampFromNow()); + List week = dataService.getTimestampsByTimestampAndTimespan(TimeSpan.week,getTimestampFromNow()); expect(7, week.length); - List month = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.month,getTimestampFromNow()); + List month = dataService.getTimestampsByTimestampAndTimespan(TimeSpan.month,getTimestampFromNow()); expect(31, month.length); - List invalidTimestamp = statisticsService.getTimestampsByTimestampAndTimespan(TimeSpan.month,9999999999999); + List invalidTimestamp = dataService.getTimestampsByTimestampAndTimespan(TimeSpan.month,9999999999999); expect(0, invalidTimestamp.length); }); test('check if dates are returned correctly from timestamp', () { - int day = statisticsService.getDayAsIntFromTimestamp(getTimestampFromNow()); + int day = dataService.getDayAsIntFromTimestamp(getTimestampFromNow()); expect(DateTime.now().day, day); - int month = statisticsService.getMonthAsIntFromTimestamp(getTimestampFromNow()); + int month = dataService.getMonthAsIntFromTimestamp(getTimestampFromNow()); expect(DateTime.now().month, month); - int year = statisticsService.getYearAsIntFromTimestamp(getTimestampFromNow()); + int year = dataService.getYearAsIntFromTimestamp(getTimestampFromNow()); expect(DateTime.now().year, year); }); test('check if date comparison is right', () { int today = getTimestampFromNow(); - expect(true,statisticsService.isDateEqual(today, today)); + expect(true,dataService.isDateEqual(today, today)); int other = getTimeStampForDateTime(DateTime.utc(2010)); - expect(false,statisticsService.isDateEqual(today, other)); - expect(false,statisticsService.isDateEqual(9999999999999, today)); - expect(false,statisticsService.isDateEqual(other, 9999999999999)); - expect(false,statisticsService.isDateEqual(other, -1)); - expect(false,statisticsService.isDateEqual(other, 0)); + expect(false,dataService.isDateEqual(today, other)); + expect(false,dataService.isDateEqual(9999999999999, today)); + expect(false,dataService.isDateEqual(other, 9999999999999)); + expect(false,dataService.isDateEqual(other, -1)); + expect(false,dataService.isDateEqual(other, 0)); }); test('check if calories are summed up correctly for given food list',() { - expect(1500, statisticsService.getSumOfCaloriesByFoodList(getFoodListValid())); - expect(() => statisticsService.getSumOfCaloriesByFoodList(getInvalidFoodList()),throwsException); + expect(1500, dataService.getSumOfCaloriesByFoodList(getFoodListValid())); + expect(() => dataService.getSumOfCaloriesByFoodList(getInvalidFoodList()),throwsException); }); test('check if format helper are working right',() { -- 2.51.0