15 lines
292 B
C#
15 lines
292 B
C#
|
|
using Microsoft.Maui.ApplicationModel;
|
||
|
|
using Microsoft.Maui.Controls;
|
||
|
|
|
||
|
|
namespace TodoApp;
|
||
|
|
|
||
|
|
public partial class App : Application
|
||
|
|
{
|
||
|
|
public App()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
UserAppTheme = AppTheme.Light;
|
||
|
|
MainPage = new NavigationPage(new TodoListPage());
|
||
|
|
}
|
||
|
|
}
|