A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
527 B

using System;
using Avalonia;
using Avalonia.Tizen;
using ElmSharp;
using SkiaSharp;
using Tizen.Applications;
namespace ControlCatalog.Tizen;
class Program : NuiTizenApplication<App>
{
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder) =>
base.CustomizeAppBuilder(builder).AfterSetup(_ =>
{
Pages.EmbedSample.Implementation = new EmbedSampleNuiTizen();
});
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}