diff --git a/BookAStar/BookAStar/BookAStar.csproj b/BookAStar/BookAStar/BookAStar.csproj index d51a6088..a686bc5d 100644 --- a/BookAStar/BookAStar/BookAStar.csproj +++ b/BookAStar/BookAStar/BookAStar.csproj @@ -61,6 +61,9 @@ UserFiles.xaml + + UserProfilePage.xaml + @@ -421,6 +424,12 @@ Designer + + + MSBuild:UpdateDesignTimeXaml + Designer + + diff --git a/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml b/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml new file mode 100644 index 00000000..b9fc2df2 --- /dev/null +++ b/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml.cs b/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml.cs new file mode 100644 index 00000000..dba8eda7 --- /dev/null +++ b/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +using Xamarin.Forms; + +namespace BookAStar.Pages.UserProfile +{ + public partial class UserProfilePage : ContentPage + { + public UserProfilePage() + { + InitializeComponent(); + } + } +}