4 changed files with 19 additions and 13 deletions
@ -0,0 +1,13 @@ |
|||
namespace Avalonia.Fonts.Inter |
|||
{ |
|||
public static class AppBuilderExtension |
|||
{ |
|||
public static AppBuilder WithInterFont(this AppBuilder appBuilder) |
|||
{ |
|||
return appBuilder.ConfigureFonts(fontManager => |
|||
{ |
|||
fontManager.AddFontCollection(new InterFontCollection()); |
|||
}); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue