2023-12-29 17:37:14 +08:00
|
|
|
|
using autosos_maui.Views;
|
|
|
|
|
|
|
|
|
|
namespace autosos_maui;
|
2023-12-28 17:29:36 +08:00
|
|
|
|
|
|
|
|
|
public partial class App : Application
|
|
|
|
|
{
|
|
|
|
|
public App()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
MainPage = new AppShell();
|
2023-12-29 17:37:14 +08:00
|
|
|
|
|
|
|
|
|
Routing.RegisterRoute("HomeView",typeof(HomeView));
|
2023-12-28 17:29:36 +08:00
|
|
|
|
}
|
2023-12-29 17:37:14 +08:00
|
|
|
|
}
|