From af1691570986fa66430328f0b6ff201cb435f7ba Mon Sep 17 00:00:00 2001 From: Giovanny BRUNET Date: Thu, 16 Jan 2025 17:48:14 +0100 Subject: [PATCH] initial commit --- .idea/.idea.MauiApp1/.idea/.gitignore | 13 + .idea/.idea.MauiApp1/.idea/encodings.xml | 4 + .idea/.idea.MauiApp1/.idea/indexLayout.xml | 8 + .../libraries/androidx_activity_activity.xml | 10 + .../androidx_activity_activity_ktx.xml | 10 + .../androidx_annotation_annotation.xml | 9 + ...idx_annotation_annotation_experimental.xml | 10 + .../androidx_annotation_annotation_jvm.xml | 9 + .../androidx_appcompat_appcompat.xml | 10 + ...androidx_appcompat_appcompat_resources.xml | 10 + .../androidx_arch_core_core_common.xml | 9 + .../androidx_arch_core_core_runtime.xml | 10 + .../libraries/androidx_browser_browser.xml | 10 + .../libraries/androidx_cardview_cardview.xml | 10 + .../androidx_collection_collection.xml | 9 + .../androidx_collection_collection_ktx.xml | 9 + ...androidx_concurrent_concurrent_futures.xml | 9 + ...oidx_constraintlayout_constraintlayout.xml | 10 + ...constraintlayout_constraintlayout_core.xml | 9 + ...dx_coordinatorlayout_coordinatorlayout.xml | 10 + .../.idea/libraries/androidx_core_core.xml | 10 + .../libraries/androidx_core_core_ktx.xml | 10 + .../androidx_cursoradapter_cursoradapter.xml | 9 + .../androidx_customview_customview.xml | 9 + ...customview_customview_poolingcontainer.xml | 10 + .../androidx_documentfile_documentfile.xml | 9 + .../androidx_drawerlayout_drawerlayout.xml | 10 + ...oidx_dynamicanimation_dynamicanimation.xml | 9 + .../libraries/androidx_emoji2_emoji2.xml | 10 + .../androidx_emoji2_emoji2_views_helper.xml | 10 + .../androidx_exifinterface_exifinterface.xml | 9 + .../libraries/androidx_fragment_fragment.xml | 10 + .../androidx_fragment_fragment_ktx.xml | 10 + .../androidx_interpolator_interpolator.xml | 9 + ...roidx_legacy_legacy_support_core_utils.xml | 9 + .../androidx_lifecycle_lifecycle_common.xml | 9 + .../androidx_lifecycle_lifecycle_livedata.xml | 10 + ...oidx_lifecycle_lifecycle_livedata_core.xml | 10 + ..._lifecycle_lifecycle_livedata_core_ktx.xml | 10 + .../androidx_lifecycle_lifecycle_process.xml | 10 + .../androidx_lifecycle_lifecycle_runtime.xml | 10 + ...droidx_lifecycle_lifecycle_runtime_ktx.xml | 10 + ...androidx_lifecycle_lifecycle_viewmodel.xml | 10 + ...oidx_lifecycle_lifecycle_viewmodel_ktx.xml | 10 + ...fecycle_lifecycle_viewmodel_savedstate.xml | 10 + .../libraries/androidx_loader_loader.xml | 9 + ...broadcastmanager_localbroadcastmanager.xml | 10 + .../androidx_navigation_navigation_common.xml | 10 + ...ndroidx_navigation_navigation_fragment.xml | 10 + ...androidx_navigation_navigation_runtime.xml | 10 + .../androidx_navigation_navigation_ui.xml | 10 + .../.idea/libraries/androidx_print_print.xml | 9 + ...oidx_profileinstaller_profileinstaller.xml | 10 + .../androidx_recyclerview_recyclerview.xml | 10 + ...spection_resourceinspection_annotation.xml | 9 + .../androidx_savedstate_savedstate.xml | 10 + .../androidx_savedstate_savedstate_ktx.xml | 10 + .../androidx_security_security_crypto.xml | 10 + ...dx_slidingpanelayout_slidingpanelayout.xml | 10 + .../androidx_startup_startup_runtime.xml | 10 + ..._swiperefreshlayout_swiperefreshlayout.xml | 10 + .../libraries/androidx_tracing_tracing.xml | 10 + .../androidx_transition_transition.xml | 10 + ...androidx_vectordrawable_vectordrawable.xml | 9 + ...vectordrawable_vectordrawable_animated.xml | 9 + ...ersionedparcelable_versionedparcelable.xml | 9 + .../androidx_viewpager2_viewpager2.xml | 10 + .../androidx_viewpager_viewpager.xml | 9 + .../androidx_window_extensions_core_core.xml | 10 + .../libraries/androidx_window_window.xml | 10 + .../.idea/libraries/annotations.xml | 9 + .../com_google_android_material_material.xml | 10 + .../.idea/libraries/disklrucache.xml | 9 + .../.idea/libraries/gifdecoder.xml | 9 + .../.idea.MauiApp1/.idea/libraries/glide.xml | 10 + .../libraries/guava_listenablefuture.xml | 9 + .idea/.idea.MauiApp1/.idea/libraries/maui.xml | 10 + .../org_jetbrains_annotations_24_0_1.xml | 9 + ...g_jetbrains_kotlin_kotlin_stdlib_1_9_0.xml | 9 + ...ains_kotlin_kotlin_stdlib_common_1_9_0.xml | 9 + ...brains_kotlin_kotlin_stdlib_jdk7_1_9_0.xml | 9 + ...brains_kotlin_kotlin_stdlib_jdk8_1_9_0.xml | 9 + ...tlinx_kotlinx_coroutines_android_1_7_2.xml | 9 + ...linx_kotlinx_coroutines_core_jvm_1_7_2.xml | 9 + .idea/.idea.MauiApp1/.idea/vcs.xml | 6 + MauiApp1.sln | 16 + MauiApp1/.gitignore | 201 +++++++++ MauiApp1/App.xaml | 14 + MauiApp1/App.xaml.cs | 11 + MauiApp1/AppShell.xaml | 15 + MauiApp1/AppShell.xaml.cs | 9 + MauiApp1/MainPage.xaml | 36 ++ MauiApp1/MainPage.xaml.cs | 23 + MauiApp1/MauiApp1.csproj | 65 +++ MauiApp1/MauiProgram.cs | 24 + .../Platforms/Android/AndroidManifest.xml | 6 + MauiApp1/Platforms/Android/MainActivity.cs | 12 + MauiApp1/Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + MauiApp1/Platforms/MacCatalyst/AppDelegate.cs | 9 + .../Platforms/MacCatalyst/Entitlements.plist | 14 + MauiApp1/Platforms/MacCatalyst/Info.plist | 38 ++ MauiApp1/Platforms/MacCatalyst/Program.cs | 15 + MauiApp1/Platforms/Tizen/Main.cs | 16 + MauiApp1/Platforms/Tizen/tizen-manifest.xml | 15 + MauiApp1/Platforms/Windows/App.xaml | 8 + MauiApp1/Platforms/Windows/App.xaml.cs | 23 + .../Platforms/Windows/Package.appxmanifest | 46 ++ MauiApp1/Platforms/Windows/app.manifest | 15 + MauiApp1/Platforms/iOS/AppDelegate.cs | 9 + MauiApp1/Platforms/iOS/Info.plist | 32 ++ MauiApp1/Platforms/iOS/Program.cs | 15 + .../iOS/Resources/PrivacyInfo.xcprivacy | 51 +++ MauiApp1/Properties/launchSettings.json | 8 + MauiApp1/Resources/AppIcon/appicon.svg | 4 + MauiApp1/Resources/AppIcon/appiconfg.svg | 8 + MauiApp1/Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107280 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111168 bytes MauiApp1/Resources/Images/dotnet_bot.png | Bin 0 -> 69811 bytes MauiApp1/Resources/Raw/AboutAssets.txt | 15 + MauiApp1/Resources/Splash/splash.svg | 8 + MauiApp1/Resources/Styles/Colors.xaml | 45 ++ MauiApp1/Resources/Styles/Styles.xaml | 427 ++++++++++++++++++ 123 files changed, 2082 insertions(+) create mode 100644 .idea/.idea.MauiApp1/.idea/.gitignore create mode 100644 .idea/.idea.MauiApp1/.idea/encodings.xml create mode 100644 .idea/.idea.MauiApp1/.idea/indexLayout.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_activity_activity.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_activity_activity_ktx.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation_experimental.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation_jvm.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_appcompat_appcompat.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_appcompat_appcompat_resources.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_arch_core_core_common.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_arch_core_core_runtime.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_browser_browser.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_cardview_cardview.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_collection_collection.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_collection_collection_ktx.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_concurrent_concurrent_futures.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_constraintlayout_constraintlayout.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_constraintlayout_constraintlayout_core.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_coordinatorlayout_coordinatorlayout.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_core_core.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_core_core_ktx.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_cursoradapter_cursoradapter.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_customview_customview.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_customview_customview_poolingcontainer.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_documentfile_documentfile.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_drawerlayout_drawerlayout.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_dynamicanimation_dynamicanimation.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_emoji2_emoji2.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_emoji2_emoji2_views_helper.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_exifinterface_exifinterface.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_fragment_fragment.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_fragment_fragment_ktx.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_interpolator_interpolator.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_legacy_legacy_support_core_utils.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_common.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core_ktx.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_process.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_runtime.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_runtime_ktx.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_ktx.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_savedstate.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_loader_loader.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_localbroadcastmanager_localbroadcastmanager.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_common.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_fragment.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_runtime.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_ui.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_print_print.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_profileinstaller_profileinstaller.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_recyclerview_recyclerview.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_resourceinspection_resourceinspection_annotation.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_savedstate_savedstate.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_savedstate_savedstate_ktx.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_security_security_crypto.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_slidingpanelayout_slidingpanelayout.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_startup_startup_runtime.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_swiperefreshlayout_swiperefreshlayout.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_tracing_tracing.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_transition_transition.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_vectordrawable_vectordrawable.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_vectordrawable_vectordrawable_animated.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_versionedparcelable_versionedparcelable.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_viewpager2_viewpager2.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_viewpager_viewpager.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_window_extensions_core_core.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/androidx_window_window.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/annotations.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/com_google_android_material_material.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/disklrucache.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/gifdecoder.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/glide.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/guava_listenablefuture.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/maui.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_annotations_24_0_1.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_1_9_0.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_common_1_9_0.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_9_0.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk8_1_9_0.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_android_1_7_2.xml create mode 100644 .idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_core_jvm_1_7_2.xml create mode 100644 .idea/.idea.MauiApp1/.idea/vcs.xml create mode 100644 MauiApp1.sln create mode 100644 MauiApp1/.gitignore create mode 100644 MauiApp1/App.xaml create mode 100644 MauiApp1/App.xaml.cs create mode 100644 MauiApp1/AppShell.xaml create mode 100644 MauiApp1/AppShell.xaml.cs create mode 100644 MauiApp1/MainPage.xaml create mode 100644 MauiApp1/MainPage.xaml.cs create mode 100644 MauiApp1/MauiApp1.csproj create mode 100644 MauiApp1/MauiProgram.cs create mode 100644 MauiApp1/Platforms/Android/AndroidManifest.xml create mode 100644 MauiApp1/Platforms/Android/MainActivity.cs create mode 100644 MauiApp1/Platforms/Android/MainApplication.cs create mode 100644 MauiApp1/Platforms/Android/Resources/values/colors.xml create mode 100644 MauiApp1/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 MauiApp1/Platforms/MacCatalyst/Entitlements.plist create mode 100644 MauiApp1/Platforms/MacCatalyst/Info.plist create mode 100644 MauiApp1/Platforms/MacCatalyst/Program.cs create mode 100644 MauiApp1/Platforms/Tizen/Main.cs create mode 100644 MauiApp1/Platforms/Tizen/tizen-manifest.xml create mode 100644 MauiApp1/Platforms/Windows/App.xaml create mode 100644 MauiApp1/Platforms/Windows/App.xaml.cs create mode 100644 MauiApp1/Platforms/Windows/Package.appxmanifest create mode 100644 MauiApp1/Platforms/Windows/app.manifest create mode 100644 MauiApp1/Platforms/iOS/AppDelegate.cs create mode 100644 MauiApp1/Platforms/iOS/Info.plist create mode 100644 MauiApp1/Platforms/iOS/Program.cs create mode 100644 MauiApp1/Platforms/iOS/Resources/PrivacyInfo.xcprivacy create mode 100644 MauiApp1/Properties/launchSettings.json create mode 100644 MauiApp1/Resources/AppIcon/appicon.svg create mode 100644 MauiApp1/Resources/AppIcon/appiconfg.svg create mode 100644 MauiApp1/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 MauiApp1/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 MauiApp1/Resources/Images/dotnet_bot.png create mode 100644 MauiApp1/Resources/Raw/AboutAssets.txt create mode 100644 MauiApp1/Resources/Splash/splash.svg create mode 100644 MauiApp1/Resources/Styles/Colors.xaml create mode 100644 MauiApp1/Resources/Styles/Styles.xaml diff --git a/.idea/.idea.MauiApp1/.idea/.gitignore b/.idea/.idea.MauiApp1/.idea/.gitignore new file mode 100644 index 0000000..475b32d --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/.idea.MauiApp1.iml +/contentModel.xml +/modules.xml +/projectSettingsUpdater.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.MauiApp1/.idea/encodings.xml b/.idea/.idea.MauiApp1/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/indexLayout.xml b/.idea/.idea.MauiApp1/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_activity_activity.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_activity_activity.xml new file mode 100644 index 0000000..f9c4041 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_activity_activity.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_activity_activity_ktx.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_activity_activity_ktx.xml new file mode 100644 index 0000000..de630a6 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_activity_activity_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation.xml new file mode 100644 index 0000000..1f2c297 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation_experimental.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation_experimental.xml new file mode 100644 index 0000000..9c3fbbd --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation_experimental.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation_jvm.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation_jvm.xml new file mode 100644 index 0000000..e8d159c --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_annotation_annotation_jvm.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_appcompat_appcompat.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_appcompat_appcompat.xml new file mode 100644 index 0000000..72460ec --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_appcompat_appcompat.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_appcompat_appcompat_resources.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_appcompat_appcompat_resources.xml new file mode 100644 index 0000000..aaa23cf --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_appcompat_appcompat_resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_arch_core_core_common.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_arch_core_core_common.xml new file mode 100644 index 0000000..fe96645 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_arch_core_core_common.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_arch_core_core_runtime.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_arch_core_core_runtime.xml new file mode 100644 index 0000000..62d717c --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_arch_core_core_runtime.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_browser_browser.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_browser_browser.xml new file mode 100644 index 0000000..8bf0a23 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_browser_browser.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_cardview_cardview.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_cardview_cardview.xml new file mode 100644 index 0000000..db7812b --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_cardview_cardview.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_collection_collection.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_collection_collection.xml new file mode 100644 index 0000000..97d234d --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_collection_collection.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_collection_collection_ktx.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_collection_collection_ktx.xml new file mode 100644 index 0000000..60c54e1 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_collection_collection_ktx.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_concurrent_concurrent_futures.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_concurrent_concurrent_futures.xml new file mode 100644 index 0000000..5194072 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_concurrent_concurrent_futures.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_constraintlayout_constraintlayout.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_constraintlayout_constraintlayout.xml new file mode 100644 index 0000000..3b9a3fc --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_constraintlayout_constraintlayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_constraintlayout_constraintlayout_core.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_constraintlayout_constraintlayout_core.xml new file mode 100644 index 0000000..6fa4a5d --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_constraintlayout_constraintlayout_core.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_coordinatorlayout_coordinatorlayout.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_coordinatorlayout_coordinatorlayout.xml new file mode 100644 index 0000000..be2b9cd --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_coordinatorlayout_coordinatorlayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_core_core.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_core_core.xml new file mode 100644 index 0000000..d937f68 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_core_core.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_core_core_ktx.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_core_core_ktx.xml new file mode 100644 index 0000000..3203bb9 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_core_core_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_cursoradapter_cursoradapter.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_cursoradapter_cursoradapter.xml new file mode 100644 index 0000000..2e5715c --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_cursoradapter_cursoradapter.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_customview_customview.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_customview_customview.xml new file mode 100644 index 0000000..5d66dac --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_customview_customview.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_customview_customview_poolingcontainer.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_customview_customview_poolingcontainer.xml new file mode 100644 index 0000000..cdbdaa4 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_customview_customview_poolingcontainer.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_documentfile_documentfile.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_documentfile_documentfile.xml new file mode 100644 index 0000000..dfcc871 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_documentfile_documentfile.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_drawerlayout_drawerlayout.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_drawerlayout_drawerlayout.xml new file mode 100644 index 0000000..cfb80eb --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_drawerlayout_drawerlayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_dynamicanimation_dynamicanimation.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_dynamicanimation_dynamicanimation.xml new file mode 100644 index 0000000..2642196 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_dynamicanimation_dynamicanimation.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_emoji2_emoji2.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_emoji2_emoji2.xml new file mode 100644 index 0000000..868b903 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_emoji2_emoji2.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_emoji2_emoji2_views_helper.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_emoji2_emoji2_views_helper.xml new file mode 100644 index 0000000..4e0be82 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_emoji2_emoji2_views_helper.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_exifinterface_exifinterface.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_exifinterface_exifinterface.xml new file mode 100644 index 0000000..ba8cc43 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_exifinterface_exifinterface.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_fragment_fragment.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_fragment_fragment.xml new file mode 100644 index 0000000..0084d5f --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_fragment_fragment.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_fragment_fragment_ktx.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_fragment_fragment_ktx.xml new file mode 100644 index 0000000..6e3b224 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_fragment_fragment_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_interpolator_interpolator.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_interpolator_interpolator.xml new file mode 100644 index 0000000..c36b6fb --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_interpolator_interpolator.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_legacy_legacy_support_core_utils.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_legacy_legacy_support_core_utils.xml new file mode 100644 index 0000000..c28b504 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_legacy_legacy_support_core_utils.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_common.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_common.xml new file mode 100644 index 0000000..e29cb1c --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_common.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata.xml new file mode 100644 index 0000000..bc64a7a --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core.xml new file mode 100644 index 0000000..dc898a6 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core_ktx.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core_ktx.xml new file mode 100644 index 0000000..03b697f --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_process.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_process.xml new file mode 100644 index 0000000..6d3d921 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_process.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_runtime.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_runtime.xml new file mode 100644 index 0000000..0e0047b --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_runtime.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_runtime_ktx.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_runtime_ktx.xml new file mode 100644 index 0000000..564316f --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_runtime_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel.xml new file mode 100644 index 0000000..5df892f --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_ktx.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_ktx.xml new file mode 100644 index 0000000..f914307 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_savedstate.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_savedstate.xml new file mode 100644 index 0000000..e5ea909 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_savedstate.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_loader_loader.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_loader_loader.xml new file mode 100644 index 0000000..0a78fd0 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_loader_loader.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_localbroadcastmanager_localbroadcastmanager.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_localbroadcastmanager_localbroadcastmanager.xml new file mode 100644 index 0000000..33bb9ce --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_localbroadcastmanager_localbroadcastmanager.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_common.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_common.xml new file mode 100644 index 0000000..e7af6b1 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_common.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_fragment.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_fragment.xml new file mode 100644 index 0000000..5758eec --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_fragment.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_runtime.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_runtime.xml new file mode 100644 index 0000000..31fad25 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_runtime.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_ui.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_ui.xml new file mode 100644 index 0000000..0ab34b6 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_navigation_navigation_ui.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_print_print.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_print_print.xml new file mode 100644 index 0000000..ab89a08 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_print_print.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_profileinstaller_profileinstaller.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_profileinstaller_profileinstaller.xml new file mode 100644 index 0000000..d708c14 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_profileinstaller_profileinstaller.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_recyclerview_recyclerview.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_recyclerview_recyclerview.xml new file mode 100644 index 0000000..6d9e14d --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_recyclerview_recyclerview.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_resourceinspection_resourceinspection_annotation.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_resourceinspection_resourceinspection_annotation.xml new file mode 100644 index 0000000..8813a48 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_resourceinspection_resourceinspection_annotation.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_savedstate_savedstate.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_savedstate_savedstate.xml new file mode 100644 index 0000000..8643e82 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_savedstate_savedstate.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_savedstate_savedstate_ktx.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_savedstate_savedstate_ktx.xml new file mode 100644 index 0000000..850eaba --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_savedstate_savedstate_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_security_security_crypto.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_security_security_crypto.xml new file mode 100644 index 0000000..a47f73e --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_security_security_crypto.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_slidingpanelayout_slidingpanelayout.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_slidingpanelayout_slidingpanelayout.xml new file mode 100644 index 0000000..0253a1c --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_slidingpanelayout_slidingpanelayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_startup_startup_runtime.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_startup_startup_runtime.xml new file mode 100644 index 0000000..820ea4a --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_startup_startup_runtime.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_swiperefreshlayout_swiperefreshlayout.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_swiperefreshlayout_swiperefreshlayout.xml new file mode 100644 index 0000000..55019e7 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_swiperefreshlayout_swiperefreshlayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_tracing_tracing.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_tracing_tracing.xml new file mode 100644 index 0000000..fbd138f --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_tracing_tracing.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_transition_transition.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_transition_transition.xml new file mode 100644 index 0000000..400df54 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_transition_transition.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_vectordrawable_vectordrawable.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_vectordrawable_vectordrawable.xml new file mode 100644 index 0000000..cefc0db --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_vectordrawable_vectordrawable.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_vectordrawable_vectordrawable_animated.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_vectordrawable_vectordrawable_animated.xml new file mode 100644 index 0000000..8b4cfd3 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_vectordrawable_vectordrawable_animated.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_versionedparcelable_versionedparcelable.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_versionedparcelable_versionedparcelable.xml new file mode 100644 index 0000000..e6779dd --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_versionedparcelable_versionedparcelable.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_viewpager2_viewpager2.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_viewpager2_viewpager2.xml new file mode 100644 index 0000000..8c71481 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_viewpager2_viewpager2.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_viewpager_viewpager.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_viewpager_viewpager.xml new file mode 100644 index 0000000..c7a9bc3 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_viewpager_viewpager.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_window_extensions_core_core.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_window_extensions_core_core.xml new file mode 100644 index 0000000..652c7ea --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_window_extensions_core_core.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/androidx_window_window.xml b/.idea/.idea.MauiApp1/.idea/libraries/androidx_window_window.xml new file mode 100644 index 0000000..020257a --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/androidx_window_window.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/annotations.xml b/.idea/.idea.MauiApp1/.idea/libraries/annotations.xml new file mode 100644 index 0000000..528c908 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/annotations.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/com_google_android_material_material.xml b/.idea/.idea.MauiApp1/.idea/libraries/com_google_android_material_material.xml new file mode 100644 index 0000000..cf5a8a9 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/com_google_android_material_material.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/disklrucache.xml b/.idea/.idea.MauiApp1/.idea/libraries/disklrucache.xml new file mode 100644 index 0000000..f8a6e16 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/disklrucache.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/gifdecoder.xml b/.idea/.idea.MauiApp1/.idea/libraries/gifdecoder.xml new file mode 100644 index 0000000..b96d216 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/gifdecoder.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/glide.xml b/.idea/.idea.MauiApp1/.idea/libraries/glide.xml new file mode 100644 index 0000000..e9d1a59 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/glide.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/guava_listenablefuture.xml b/.idea/.idea.MauiApp1/.idea/libraries/guava_listenablefuture.xml new file mode 100644 index 0000000..897dfd4 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/guava_listenablefuture.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/maui.xml b/.idea/.idea.MauiApp1/.idea/libraries/maui.xml new file mode 100644 index 0000000..0d12ba1 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/maui.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_annotations_24_0_1.xml b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_annotations_24_0_1.xml new file mode 100644 index 0000000..69d28f0 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_annotations_24_0_1.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_1_9_0.xml b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_1_9_0.xml new file mode 100644 index 0000000..5e10c08 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_1_9_0.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_common_1_9_0.xml b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_common_1_9_0.xml new file mode 100644 index 0000000..42cc488 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_common_1_9_0.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_9_0.xml b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_9_0.xml new file mode 100644 index 0000000..0915e2d --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_9_0.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk8_1_9_0.xml b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk8_1_9_0.xml new file mode 100644 index 0000000..88fe2d4 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk8_1_9_0.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_android_1_7_2.xml b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_android_1_7_2.xml new file mode 100644 index 0000000..886c136 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_android_1_7_2.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_core_jvm_1_7_2.xml b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_core_jvm_1_7_2.xml new file mode 100644 index 0000000..3b237f7 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/libraries/org_jetbrains_kotlinx_kotlinx_coroutines_core_jvm_1_7_2.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.MauiApp1/.idea/vcs.xml b/.idea/.idea.MauiApp1/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.MauiApp1/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MauiApp1.sln b/MauiApp1.sln new file mode 100644 index 0000000..6587ec8 --- /dev/null +++ b/MauiApp1.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MauiApp1", "MauiApp1\MauiApp1.csproj", "{A09444E8-1C16-4B02-8DBB-E393F17F51FC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A09444E8-1C16-4B02-8DBB-E393F17F51FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A09444E8-1C16-4B02-8DBB-E393F17F51FC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A09444E8-1C16-4B02-8DBB-E393F17F51FC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A09444E8-1C16-4B02-8DBB-E393F17F51FC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/MauiApp1/.gitignore b/MauiApp1/.gitignore new file mode 100644 index 0000000..6b13df1 --- /dev/null +++ b/MauiApp1/.gitignore @@ -0,0 +1,201 @@ +# Created by https://www.toptal.com/developers/gitignore/api/jetbrains+all,rider,jetbrains+iml +# Edit at https://www.toptal.com/developers/gitignore?templates=jetbrains+all,rider,jetbrains+iml + +### JetBrains+all ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +/obj/ +/bin/ + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### JetBrains+all Patch ### +# Ignore everything but code style settings and run configurations +# that are supposed to be shared within teams. + +.idea/* + +!.idea/codeStyles +!.idea/runConfigurations + +### JetBrains+iml ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff + +# AWS User-specific + +# Generated files + +# Sensitive or high-churn files + +# Gradle + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake + +# Mongo Explorer plugin + +# File-based project format + +# IntelliJ + +# mpeltonen/sbt-idea plugin + +# JIRA plugin + +# Cursive Clojure plugin + +# SonarLint plugin + +# Crashlytics plugin (for Android Studio and IntelliJ) + +# Editor-based Rest Client + +# Android studio 3.1+ serialized cache file + +### JetBrains+iml Patch ### +# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 + +*.iml +modules.xml +.idea/misc.xml +*.ipr + +### Rider ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff + +# AWS User-specific + +# Generated files + +# Sensitive or high-churn files + +# Gradle + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake + +# Mongo Explorer plugin + +# File-based project format + +# IntelliJ + +# mpeltonen/sbt-idea plugin + +# JIRA plugin + +# Cursive Clojure plugin + +# SonarLint plugin + +# Crashlytics plugin (for Android Studio and IntelliJ) + +# Editor-based Rest Client + +# Android studio 3.1+ serialized cache file + +# End of https://www.toptal.com/developers/gitignore/api/jetbrains+all,rider,jetbrains+iml diff --git a/MauiApp1/App.xaml b/MauiApp1/App.xaml new file mode 100644 index 0000000..8fb5f38 --- /dev/null +++ b/MauiApp1/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MauiApp1/App.xaml.cs b/MauiApp1/App.xaml.cs new file mode 100644 index 0000000..e2de305 --- /dev/null +++ b/MauiApp1/App.xaml.cs @@ -0,0 +1,11 @@ +namespace MauiApp1; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} \ No newline at end of file diff --git a/MauiApp1/AppShell.xaml b/MauiApp1/AppShell.xaml new file mode 100644 index 0000000..5dd865e --- /dev/null +++ b/MauiApp1/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/MauiApp1/AppShell.xaml.cs b/MauiApp1/AppShell.xaml.cs new file mode 100644 index 0000000..2401c8f --- /dev/null +++ b/MauiApp1/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace MauiApp1; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/MauiApp1/MainPage.xaml b/MauiApp1/MainPage.xaml new file mode 100644 index 0000000..4ff41e1 --- /dev/null +++ b/MauiApp1/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +