diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..4de434a --- /dev/null +++ b/App.xaml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..0cf1082 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,15 @@ +namespace Phonebook +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } + } +} \ No newline at end of file diff --git a/AppShell.xaml b/AppShell.xaml new file mode 100644 index 0000000..96e7d2b --- /dev/null +++ b/AppShell.xaml @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs new file mode 100644 index 0000000..a374b29 --- /dev/null +++ b/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Phonebook +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/ContactDetailPage.xaml b/ContactDetailPage.xaml new file mode 100644 index 0000000..dbe7170 --- /dev/null +++ b/ContactDetailPage.xaml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + +