Skip to content
Permalink
0d3eadff1d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
44 lines (37 sloc) 995 Bytes
using ExpenseTracker.views.auth;
using ExpenseTracker.views.home;
using System;
using Xamarin.Essentials;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace ExpenseTracker
{
public partial class App : Application
{
public App()
{
InitializeComponent();
/*if (!string.IsNullOrEmpty(Preferences.Get("MyFirebaseRefreshToken", "")))
{
MainPage = new NavigationPage(new Home());
}
else
{
MainPage = new NavigationPage(new LoginPage());
}*/
// MainPage = new NavigationPage(new LoginPage());
MainPage = new HomePage();
//MainPage = Navigat new LoginPage();
//MainPage = new MainPage();
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}