24 lines
469 B
C#
24 lines
469 B
C#
using Billing.UI;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Billing
|
|
{
|
|
public partial class SplashPage : BillingPage
|
|
{
|
|
public SplashPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override async void OnLoaded()
|
|
{
|
|
if (!string.IsNullOrEmpty(App.MainRoute))
|
|
{
|
|
await App.InitializeData();
|
|
|
|
await Shell.Current.GoToAsync(App.MainRoute);
|
|
}
|
|
}
|
|
}
|
|
}
|