Chase Florell

Results 16 issues of Chase Florell

I noticed in the readme the following ```csharp #if DEBUG HotUI.Reload.Init(); #endif ``` Some folks sorta dispise compiler directives, I'm wondering if it'd be worth it to simply call that...

Given the global Rules support within DryIoc, I would like to see an option to add a default `serviceTypeCondition` for all of my `RegisterMany` calls. ```csharp var container = new...

enhancement

When the `Get-SvnBranch` method was called, it would parse the info using an index. Unfortunately with newer versions of `svn` the index is in a different spot. I realize this...

Is it possible to register Open Generics for all implementations of a given type? In DryIoc we would do something akin to ```csharp container.Register(typeof(IServiceProvider), typeof(BaseServiceProvider), Reuse.Scoped); ```

Looking at the code [here](https://github.com/paulpatarinski/Xamarin.Forms.Plugins/blob/40f892fc868b540fd02cef34c2bd216fa166a6a1/KeyboardOverlap/KeyboardOverlap/KeyboardOverlap.Forms.Plugin.iOSUnified/KeyboardOverlapRenderer.cs#L10) we can see that you're exporting `Page` instead of your own custom page. This is considered bad practice by Xamarin, and all custom renderers should...

Given the following psuedo code, the MudChipField doesn't respect the disabled state of the form. ```razor ``` Expected behavior: MudChipField should be disabled Actual behavior: MudChipField is still mutable