2025-12-19 09:30:16 +00:00
|
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
|
|
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
|
|
|
|
|
|
|
|
using Microsoft.Maui.Controls;
|
|
|
|
|
|
2025-12-19 05:01:34 -05:00
|
|
|
namespace OpenMauiLinuxApp;
|
2025-12-19 09:30:16 +00:00
|
|
|
|
|
|
|
|
public class App : Application
|
|
|
|
|
{
|
|
|
|
|
public App()
|
|
|
|
|
{
|
|
|
|
|
MainPage = new MainPage();
|
|
|
|
|
}
|
|
|
|
|
}
|