You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
539 B
23 lines
539 B
namespace ShoopNCook;
|
|
using ShoopNCook.Pages;
|
|
using ShoopNCook.Models;
|
|
using ShoopNCook.Models.API;
|
|
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
|
|
Account account = getUserAccount();
|
|
|
|
MainPage = new NavigationPage(new HomePage());
|
|
}
|
|
|
|
private Account getUserAccount()
|
|
{
|
|
return new Account(new User(new Uri("https://www.pngkey.com/png/full/115-1150152_default-profile-picture-avatar-png-green.png"), "Stub Account"), "test@example.com");
|
|
}
|
|
|
|
}
|