Start on an Avalonia Ui.

This commit is contained in:
2026-01-15 07:31:18 +01:00
committed by Dennis Brentjes
parent 88f8cf76ef
commit 7f8cd83eb9
45 changed files with 2523 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using Android.App;
using Android.Content.PM;
using Avalonia;
using Avalonia.Android;
namespace gamenight.ui.Android;
[Activity(
Label = "gamenight.ui.Android",
Theme = "@style/MyTheme.NoActionBar",
Icon = "@drawable/icon",
MainLauncher = true,
ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize | ConfigChanges.UiMode)]
public class MainActivity : AvaloniaMainActivity<App>
{
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
{
return base.CustomizeAppBuilder(builder)
.WithInterFont();
}
}