diff --git a/AppleMusicApp/AppShell.xaml b/AppleMusicApp/AppShell.xaml
index f5c975b..15fed73 100644
--- a/AppleMusicApp/AppShell.xaml
+++ b/AppleMusicApp/AppShell.xaml
@@ -3,13 +3,39 @@
x:Class="AppleMusicApp.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:local="clr-namespace:AppleMusicApp"
+ xmlns:pages="clr-namespace:AppleMusicApp.Pages"
Shell.FlyoutBehavior="Disabled">
-
+
+
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AppleMusicApp/AppShell.xaml.cs b/AppleMusicApp/AppShell.xaml.cs
index aa1ba31..9399305 100644
--- a/AppleMusicApp/AppShell.xaml.cs
+++ b/AppleMusicApp/AppShell.xaml.cs
@@ -5,6 +5,7 @@ public partial class AppShell : Shell
public AppShell()
{
InitializeComponent();
+ CurrentItem = LibraryTab;
}
}
diff --git a/AppleMusicApp/AppleMusicApp.csproj b/AppleMusicApp/AppleMusicApp.csproj
index c3c7c1b..294a637 100644
--- a/AppleMusicApp/AppleMusicApp.csproj
+++ b/AppleMusicApp/AppleMusicApp.csproj
@@ -33,6 +33,9 @@
false
+
+ false
+
@@ -42,8 +45,14 @@
+
+
+
+
+
+
@@ -55,4 +64,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/AppleMusicApp/MainPage.xaml b/AppleMusicApp/MainPage.xaml
deleted file mode 100644
index faf76dd..0000000
--- a/AppleMusicApp/MainPage.xaml
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AppleMusicApp/MainPage.xaml.cs b/AppleMusicApp/MainPage.xaml.cs
deleted file mode 100644
index e193dab..0000000
--- a/AppleMusicApp/MainPage.xaml.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace AppleMusicApp;
-
-public partial class MainPage : ContentPage
-{
- int count = 0;
-
- public MainPage()
- {
- InitializeComponent();
- }
-
- private void OnCounterClicked(object sender, EventArgs e)
- {
- count++;
-
- if (count == 1)
- CounterBtn.Text = $"Clicked {count} time";
- else
- CounterBtn.Text = $"Clicked {count} times";
-
- SemanticScreenReader.Announce(CounterBtn.Text);
- }
-}
-
-
diff --git a/AppleMusicApp/Pages/LibraryPage.xaml b/AppleMusicApp/Pages/LibraryPage.xaml
new file mode 100644
index 0000000..c33693f
--- /dev/null
+++ b/AppleMusicApp/Pages/LibraryPage.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
diff --git a/AppleMusicApp/Pages/LibraryPage.xaml.cs b/AppleMusicApp/Pages/LibraryPage.xaml.cs
new file mode 100644
index 0000000..bc710f9
--- /dev/null
+++ b/AppleMusicApp/Pages/LibraryPage.xaml.cs
@@ -0,0 +1,9 @@
+namespace AppleMusicApp.Pages;
+
+public partial class LibraryPage : ContentPage
+{
+ public LibraryPage()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/AppleMusicApp/Pages/UnknowPage.xaml b/AppleMusicApp/Pages/UnknowPage.xaml
new file mode 100644
index 0000000..032963a
--- /dev/null
+++ b/AppleMusicApp/Pages/UnknowPage.xaml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
diff --git a/AppleMusicApp/Pages/UnknowPage.xaml.cs b/AppleMusicApp/Pages/UnknowPage.xaml.cs
new file mode 100644
index 0000000..64d9ffd
--- /dev/null
+++ b/AppleMusicApp/Pages/UnknowPage.xaml.cs
@@ -0,0 +1,9 @@
+namespace AppleMusicApp.Pages;
+
+public partial class UnknowPage : ContentPage
+{
+ public UnknowPage()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/AppleMusicApp/Resources/Images/icon_explore.png b/AppleMusicApp/Resources/Images/icon_explore.png
new file mode 100644
index 0000000..d1afd73
Binary files /dev/null and b/AppleMusicApp/Resources/Images/icon_explore.png differ
diff --git a/AppleMusicApp/Resources/Images/icon_library.png b/AppleMusicApp/Resources/Images/icon_library.png
new file mode 100644
index 0000000..ddae959
Binary files /dev/null and b/AppleMusicApp/Resources/Images/icon_library.png differ
diff --git a/AppleMusicApp/Resources/Images/icon_listen.png b/AppleMusicApp/Resources/Images/icon_listen.png
new file mode 100644
index 0000000..c2ce586
Binary files /dev/null and b/AppleMusicApp/Resources/Images/icon_listen.png differ
diff --git a/AppleMusicApp/Resources/Images/icon_radio.png b/AppleMusicApp/Resources/Images/icon_radio.png
new file mode 100644
index 0000000..89a4e5f
Binary files /dev/null and b/AppleMusicApp/Resources/Images/icon_radio.png differ
diff --git a/AppleMusicApp/Resources/Images/icon_search.png b/AppleMusicApp/Resources/Images/icon_search.png
new file mode 100644
index 0000000..40b563e
Binary files /dev/null and b/AppleMusicApp/Resources/Images/icon_search.png differ