Ionicons in .NET MAUI

In .NET Maui, we can easily use TTF. Working with TTF in .NET Maui is a breeze. Just copy the True Type Font into the Fonts directory under Resources and add it to the project. It’s that simple.Now, let’s harness the power of Ionicons’ icons. It’s easier than you think.To use a font in a … Read more

Code Schnipsel: Service Provider

Dependency Injection macht das Leben einfacher auch in .NET MAUI. Hin und wieder ist es notwendig ein Service zu referenzieren das nicht über den Konstruktor kommt. Hier kommt ein Code Schnipsel für einen Service Provider: Erläuterung: Methode GetService(): Diese Methode ist eine Abkürzung, um einen Dienst vom Typ TService zu erhalten.Sie delegiert den Aufruf an … Read more