mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
19 lines
349 B
C#
19 lines
349 B
C#
|
|
using UIKit;
|
||
|
|
using Uno.UI.Hosting;
|
||
|
|
|
||
|
|
namespace Marechai.App.iOS;
|
||
|
|
|
||
|
|
public class EntryPoint
|
||
|
|
{
|
||
|
|
// This is the main entry point of the application.
|
||
|
|
public static void Main(string[] args)
|
||
|
|
{
|
||
|
|
var host = UnoPlatformHostBuilder.Create()
|
||
|
|
.App(() => new App())
|
||
|
|
.UseAppleUIKit()
|
||
|
|
.Build();
|
||
|
|
|
||
|
|
host.Run();
|
||
|
|
}
|
||
|
|
}
|