13 lines
192 B
C#
13 lines
192 B
C#
|
|
using Microsoft.Maui.Controls;
|
||
|
|
|
||
|
|
namespace ShellDemo;
|
||
|
|
|
||
|
|
public partial class App : Application
|
||
|
|
{
|
||
|
|
public App()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
MainPage = new AppShell();
|
||
|
|
}
|
||
|
|
}
|