Valentin Fritz
Valentin Fritz
Currently, GeonBit.UI supports only the american qwerty keyboard layout. The pressed key is translated to a char using some dirty "if" , I think this is not a viable solution,...
Resolve #23

Resolving #6
I have a typed HttpClient class like that: ```csharp public class CustomApiClient(HttpClient httpClient) : ICustomApiClient { // Methods } ``` Registered in DI like that: ```csharp services.AddHttpClient(); ``` And in...