mirror of
https://gitlab.com/fabinfra/fabaccess/borepin_tmp.git
synced 2025-03-12 23:01:49 +01:00
20 lines
556 B
C#
20 lines
556 B
C#
|
using Avalonia;
|
|||
|
using Avalonia.iOS;
|
|||
|
|
|||
|
using Foundation;
|
|||
|
|
|||
|
namespace Borepin.iOS;
|
|||
|
|
|||
|
// The UIApplicationDelegate for the application. This class is responsible for launching the
|
|||
|
// User Interface of the application, as well as listening (and optionally responding) to
|
|||
|
// application events from iOS.
|
|||
|
[Register("AppDelegate")]
|
|||
|
public partial class AppDelegate : AvaloniaAppDelegate<App>
|
|||
|
{
|
|||
|
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
|
|||
|
{
|
|||
|
return base.CustomizeAppBuilder(builder)
|
|||
|
.WithInterFont();
|
|||
|
}
|
|||
|
}
|