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.
ShopNCook/App.xaml.cs

23 lines
604 B

namespace ShoopNCook;
using ShoopNCook.Pages;
using ShoopNCook.Models;
using ShoopNCook.Models.API;
public partial class App : Application
{
public App()
{
InitializeComponent();
Account account = getUserAccount();
var appShell = new AppShell();
MainPage = appShell;
appShell.GoToAsync("//Splash");
}
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");
}
}