From 5b402ee57c2f501cd2d5049f9db41328ac26010f Mon Sep 17 00:00:00 2001 From: Cinka Date: Thu, 2 Apr 2026 09:20:25 +0300 Subject: [PATCH] - add: export and import contacts --- .idea/.idea.Phonebook/.idea/.gitignore | 15 ++ .../.idea/AndroidProjectSystem.xml | 6 + .../.idea/deploymentTargetSelector.xml | 10 ++ .idea/.idea.Phonebook/.idea/encodings.xml | 4 + .idea/.idea.Phonebook/.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_jvm.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 | 10 ++ .../libraries/androidx_emoji2_emoji2.xml | 10 ++ .../androidx_emoji2_emoji2_views_helper.xml | 10 ++ .../androidx_exifinterface_exifinterface.xml | 10 ++ .../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 ++ ...ndroidx_lifecycle_lifecycle_common_jvm.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 ++ ...dx_lifecycle_lifecycle_runtime_android.xml | 10 ++ ...ifecycle_lifecycle_runtime_ktx_android.xml | 9 ++ ...androidx_lifecycle_lifecycle_viewmodel.xml | 10 ++ ..._lifecycle_lifecycle_viewmodel_android.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 ++ ...ndroidx_navigation_navigation_fragment.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 ++ .../com_google_android_material_material.xml | 10 ++ .../.idea/libraries/gifdecoder.xml | 9 ++ .../.idea.Phonebook/.idea/libraries/glide.xml | 10 ++ .../.idea.Phonebook/.idea/libraries/maui.xml | 10 ++ .idea/.idea.Phonebook/.idea/vcs.xml | 6 + AppShell.xaml | 2 +- MainPage.xaml | 13 +- MainPage.xaml.cs | 134 ++++++++++++++++-- Phonebook.csproj | 7 +- Platforms/Android/AndroidManifest.xml | 7 +- Platforms/Android/Resources/values/colors.xml | 6 +- Resources/AppIcon/icon.png | Bin 0 -> 36586 bytes Resources/Splash/splash.svg | 14 +- Resources/Styles/Colors.xaml | 19 +-- 88 files changed, 925 insertions(+), 32 deletions(-) create mode 100644 .idea/.idea.Phonebook/.idea/.gitignore create mode 100644 .idea/.idea.Phonebook/.idea/AndroidProjectSystem.xml create mode 100644 .idea/.idea.Phonebook/.idea/deploymentTargetSelector.xml create mode 100644 .idea/.idea.Phonebook/.idea/encodings.xml create mode 100644 .idea/.idea.Phonebook/.idea/indexLayout.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_activity_activity.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_activity_activity_ktx.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation_experimental.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation_jvm.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_appcompat_appcompat.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_appcompat_appcompat_resources.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_arch_core_core_common.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_arch_core_core_runtime.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_browser_browser.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_cardview_cardview.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection_jvm.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection_ktx.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_concurrent_concurrent_futures.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_constraintlayout_constraintlayout.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_constraintlayout_constraintlayout_core.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_coordinatorlayout_coordinatorlayout.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_core_core.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_core_core_ktx.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_cursoradapter_cursoradapter.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_customview_customview.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_customview_customview_poolingcontainer.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_documentfile_documentfile.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_drawerlayout_drawerlayout.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_dynamicanimation_dynamicanimation.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_emoji2_emoji2.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_emoji2_emoji2_views_helper.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_exifinterface_exifinterface.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_fragment_fragment.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_fragment_fragment_ktx.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_interpolator_interpolator.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_legacy_legacy_support_core_utils.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_common.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_common_jvm.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core_ktx.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_process.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime_android.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime_ktx_android.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_android.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_ktx.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_savedstate.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_loader_loader.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_localbroadcastmanager_localbroadcastmanager.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_navigation_navigation_fragment.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_navigation_navigation_ui.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_print_print.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_profileinstaller_profileinstaller.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_recyclerview_recyclerview.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_resourceinspection_resourceinspection_annotation.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_savedstate_savedstate.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_savedstate_savedstate_ktx.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_security_security_crypto.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_slidingpanelayout_slidingpanelayout.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_startup_startup_runtime.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_swiperefreshlayout_swiperefreshlayout.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_tracing_tracing.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_transition_transition.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_vectordrawable_vectordrawable.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_vectordrawable_vectordrawable_animated.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_versionedparcelable_versionedparcelable.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_viewpager2_viewpager2.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_viewpager_viewpager.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_window_extensions_core_core.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/androidx_window_window.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/com_google_android_material_material.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/gifdecoder.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/glide.xml create mode 100644 .idea/.idea.Phonebook/.idea/libraries/maui.xml create mode 100644 .idea/.idea.Phonebook/.idea/vcs.xml create mode 100644 Resources/AppIcon/icon.png diff --git a/.idea/.idea.Phonebook/.idea/.gitignore b/.idea/.idea.Phonebook/.idea/.gitignore new file mode 100644 index 0000000..f8238a5 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/.gitignore @@ -0,0 +1,15 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/contentModel.xml +/.idea.Phonebook.iml +/projectSettingsUpdater.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/.idea.Phonebook/.idea/AndroidProjectSystem.xml b/.idea/.idea.Phonebook/.idea/AndroidProjectSystem.xml new file mode 100644 index 0000000..e82600c --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/AndroidProjectSystem.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/deploymentTargetSelector.xml b/.idea/.idea.Phonebook/.idea/deploymentTargetSelector.xml new file mode 100644 index 0000000..8011e36 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/deploymentTargetSelector.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/encodings.xml b/.idea/.idea.Phonebook/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/indexLayout.xml b/.idea/.idea.Phonebook/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_activity_activity.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_activity_activity.xml new file mode 100644 index 0000000..f9c4041 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_activity_activity.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_activity_activity_ktx.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_activity_activity_ktx.xml new file mode 100644 index 0000000..de630a6 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_activity_activity_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation.xml new file mode 100644 index 0000000..a6bf744 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation_experimental.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation_experimental.xml new file mode 100644 index 0000000..9c3fbbd --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation_experimental.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation_jvm.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation_jvm.xml new file mode 100644 index 0000000..121f9d3 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_annotation_annotation_jvm.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_appcompat_appcompat.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_appcompat_appcompat.xml new file mode 100644 index 0000000..72460ec --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_appcompat_appcompat.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_appcompat_appcompat_resources.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_appcompat_appcompat_resources.xml new file mode 100644 index 0000000..aaa23cf --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_appcompat_appcompat_resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_arch_core_core_common.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_arch_core_core_common.xml new file mode 100644 index 0000000..e583107 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_arch_core_core_common.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_arch_core_core_runtime.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_arch_core_core_runtime.xml new file mode 100644 index 0000000..62d717c --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_arch_core_core_runtime.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_browser_browser.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_browser_browser.xml new file mode 100644 index 0000000..8bf0a23 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_browser_browser.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_cardview_cardview.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_cardview_cardview.xml new file mode 100644 index 0000000..db7812b --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_cardview_cardview.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection.xml new file mode 100644 index 0000000..28c6be1 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection_jvm.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection_jvm.xml new file mode 100644 index 0000000..f412f56 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection_jvm.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection_ktx.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection_ktx.xml new file mode 100644 index 0000000..df298d7 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_collection_collection_ktx.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_concurrent_concurrent_futures.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_concurrent_concurrent_futures.xml new file mode 100644 index 0000000..6fa3f72 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_concurrent_concurrent_futures.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_constraintlayout_constraintlayout.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_constraintlayout_constraintlayout.xml new file mode 100644 index 0000000..3b9a3fc --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_constraintlayout_constraintlayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_constraintlayout_constraintlayout_core.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_constraintlayout_constraintlayout_core.xml new file mode 100644 index 0000000..4334dac --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_constraintlayout_constraintlayout_core.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_coordinatorlayout_coordinatorlayout.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_coordinatorlayout_coordinatorlayout.xml new file mode 100644 index 0000000..be2b9cd --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_coordinatorlayout_coordinatorlayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_core_core.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_core_core.xml new file mode 100644 index 0000000..d937f68 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_core_core.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_core_core_ktx.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_core_core_ktx.xml new file mode 100644 index 0000000..3203bb9 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_core_core_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_cursoradapter_cursoradapter.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_cursoradapter_cursoradapter.xml new file mode 100644 index 0000000..2e5715c --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_cursoradapter_cursoradapter.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_customview_customview.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_customview_customview.xml new file mode 100644 index 0000000..5d66dac --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_customview_customview.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_customview_customview_poolingcontainer.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_customview_customview_poolingcontainer.xml new file mode 100644 index 0000000..cdbdaa4 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_customview_customview_poolingcontainer.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_documentfile_documentfile.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_documentfile_documentfile.xml new file mode 100644 index 0000000..dfcc871 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_documentfile_documentfile.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_drawerlayout_drawerlayout.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_drawerlayout_drawerlayout.xml new file mode 100644 index 0000000..cfb80eb --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_drawerlayout_drawerlayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_dynamicanimation_dynamicanimation.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_dynamicanimation_dynamicanimation.xml new file mode 100644 index 0000000..c9611a9 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_dynamicanimation_dynamicanimation.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_emoji2_emoji2.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_emoji2_emoji2.xml new file mode 100644 index 0000000..868b903 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_emoji2_emoji2.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_emoji2_emoji2_views_helper.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_emoji2_emoji2_views_helper.xml new file mode 100644 index 0000000..4e0be82 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_emoji2_emoji2_views_helper.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_exifinterface_exifinterface.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_exifinterface_exifinterface.xml new file mode 100644 index 0000000..0c02d8b --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_exifinterface_exifinterface.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_fragment_fragment.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_fragment_fragment.xml new file mode 100644 index 0000000..0084d5f --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_fragment_fragment.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_fragment_fragment_ktx.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_fragment_fragment_ktx.xml new file mode 100644 index 0000000..6e3b224 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_fragment_fragment_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_interpolator_interpolator.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_interpolator_interpolator.xml new file mode 100644 index 0000000..c36b6fb --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_interpolator_interpolator.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_legacy_legacy_support_core_utils.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_legacy_legacy_support_core_utils.xml new file mode 100644 index 0000000..c28b504 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_legacy_legacy_support_core_utils.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_common.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_common.xml new file mode 100644 index 0000000..0dce470 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_common.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_common_jvm.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_common_jvm.xml new file mode 100644 index 0000000..f4ee6ee --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_common_jvm.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata.xml new file mode 100644 index 0000000..bc64a7a --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core.xml new file mode 100644 index 0000000..dc898a6 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core_ktx.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core_ktx.xml new file mode 100644 index 0000000..03b697f --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_livedata_core_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_process.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_process.xml new file mode 100644 index 0000000..6d3d921 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_process.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime.xml new file mode 100644 index 0000000..0e0047b --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime_android.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime_android.xml new file mode 100644 index 0000000..ea09cda --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime_android.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime_ktx_android.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime_ktx_android.xml new file mode 100644 index 0000000..a4d3166 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_runtime_ktx_android.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel.xml new file mode 100644 index 0000000..5df892f --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_android.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_android.xml new file mode 100644 index 0000000..29c746e --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_android.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_ktx.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_ktx.xml new file mode 100644 index 0000000..f914307 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_savedstate.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_savedstate.xml new file mode 100644 index 0000000..e5ea909 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_lifecycle_lifecycle_viewmodel_savedstate.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_loader_loader.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_loader_loader.xml new file mode 100644 index 0000000..0a78fd0 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_loader_loader.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_localbroadcastmanager_localbroadcastmanager.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_localbroadcastmanager_localbroadcastmanager.xml new file mode 100644 index 0000000..33bb9ce --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_localbroadcastmanager_localbroadcastmanager.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_navigation_navigation_fragment.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_navigation_navigation_fragment.xml new file mode 100644 index 0000000..5758eec --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_navigation_navigation_fragment.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_navigation_navigation_ui.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_navigation_navigation_ui.xml new file mode 100644 index 0000000..0ab34b6 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_navigation_navigation_ui.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_print_print.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_print_print.xml new file mode 100644 index 0000000..ab89a08 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_print_print.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_profileinstaller_profileinstaller.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_profileinstaller_profileinstaller.xml new file mode 100644 index 0000000..d708c14 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_profileinstaller_profileinstaller.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_recyclerview_recyclerview.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_recyclerview_recyclerview.xml new file mode 100644 index 0000000..6d9e14d --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_recyclerview_recyclerview.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_resourceinspection_resourceinspection_annotation.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_resourceinspection_resourceinspection_annotation.xml new file mode 100644 index 0000000..e4abe3a --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_resourceinspection_resourceinspection_annotation.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_savedstate_savedstate.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_savedstate_savedstate.xml new file mode 100644 index 0000000..8643e82 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_savedstate_savedstate.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_savedstate_savedstate_ktx.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_savedstate_savedstate_ktx.xml new file mode 100644 index 0000000..850eaba --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_savedstate_savedstate_ktx.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_security_security_crypto.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_security_security_crypto.xml new file mode 100644 index 0000000..a47f73e --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_security_security_crypto.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_slidingpanelayout_slidingpanelayout.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_slidingpanelayout_slidingpanelayout.xml new file mode 100644 index 0000000..0253a1c --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_slidingpanelayout_slidingpanelayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_startup_startup_runtime.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_startup_startup_runtime.xml new file mode 100644 index 0000000..820ea4a --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_startup_startup_runtime.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_swiperefreshlayout_swiperefreshlayout.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_swiperefreshlayout_swiperefreshlayout.xml new file mode 100644 index 0000000..55019e7 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_swiperefreshlayout_swiperefreshlayout.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_tracing_tracing.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_tracing_tracing.xml new file mode 100644 index 0000000..fbd138f --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_tracing_tracing.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_transition_transition.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_transition_transition.xml new file mode 100644 index 0000000..400df54 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_transition_transition.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_vectordrawable_vectordrawable.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_vectordrawable_vectordrawable.xml new file mode 100644 index 0000000..cefc0db --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_vectordrawable_vectordrawable.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_vectordrawable_vectordrawable_animated.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_vectordrawable_vectordrawable_animated.xml new file mode 100644 index 0000000..8b4cfd3 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_vectordrawable_vectordrawable_animated.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_versionedparcelable_versionedparcelable.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_versionedparcelable_versionedparcelable.xml new file mode 100644 index 0000000..e6779dd --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_versionedparcelable_versionedparcelable.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_viewpager2_viewpager2.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_viewpager2_viewpager2.xml new file mode 100644 index 0000000..8c71481 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_viewpager2_viewpager2.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_viewpager_viewpager.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_viewpager_viewpager.xml new file mode 100644 index 0000000..c7a9bc3 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_viewpager_viewpager.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_window_extensions_core_core.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_window_extensions_core_core.xml new file mode 100644 index 0000000..652c7ea --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_window_extensions_core_core.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/androidx_window_window.xml b/.idea/.idea.Phonebook/.idea/libraries/androidx_window_window.xml new file mode 100644 index 0000000..020257a --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/androidx_window_window.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/com_google_android_material_material.xml b/.idea/.idea.Phonebook/.idea/libraries/com_google_android_material_material.xml new file mode 100644 index 0000000..cf5a8a9 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/com_google_android_material_material.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/gifdecoder.xml b/.idea/.idea.Phonebook/.idea/libraries/gifdecoder.xml new file mode 100644 index 0000000..b96d216 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/gifdecoder.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/glide.xml b/.idea/.idea.Phonebook/.idea/libraries/glide.xml new file mode 100644 index 0000000..e9d1a59 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/glide.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/libraries/maui.xml b/.idea/.idea.Phonebook/.idea/libraries/maui.xml new file mode 100644 index 0000000..0d12ba1 --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/libraries/maui.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.Phonebook/.idea/vcs.xml b/.idea/.idea.Phonebook/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/.idea.Phonebook/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/AppShell.xaml b/AppShell.xaml index 96e7d2b..a7fd950 100644 --- a/AppShell.xaml +++ b/AppShell.xaml @@ -7,7 +7,7 @@ Shell.FlyoutBehavior="Disabled"> \ No newline at end of file diff --git a/MainPage.xaml b/MainPage.xaml index 8331ca3..35d4957 100644 --- a/MainPage.xaml +++ b/MainPage.xaml @@ -44,11 +44,22 @@ FontSize="24" WidthRequest="60" HeightRequest="60" - CornerRadius="30" + CornerRadius="10" HorizontalOptions="End" VerticalOptions="End" Margin="0,0,20,20" Grid.Row="1" Clicked="OnAddContactClicked"/> + +