diff --git a/sources/PocketBook/App.xaml b/sources/PocketBook/App.xaml new file mode 100644 index 0000000..39b2d6a --- /dev/null +++ b/sources/PocketBook/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/sources/PocketBook/App.xaml.cs b/sources/PocketBook/App.xaml.cs new file mode 100644 index 0000000..7890552 --- /dev/null +++ b/sources/PocketBook/App.xaml.cs @@ -0,0 +1,11 @@ +namespace PocketBook; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/sources/PocketBook/AppShell.xaml b/sources/PocketBook/AppShell.xaml new file mode 100644 index 0000000..546aa55 --- /dev/null +++ b/sources/PocketBook/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/sources/PocketBook/AppShell.xaml.cs b/sources/PocketBook/AppShell.xaml.cs new file mode 100644 index 0000000..533739f --- /dev/null +++ b/sources/PocketBook/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace PocketBook; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/sources/PocketBook/MainPage.xaml b/sources/PocketBook/MainPage.xaml new file mode 100644 index 0000000..f933b91 --- /dev/null +++ b/sources/PocketBook/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +