Skip to content

9.0.4

Compare
Choose a tag to compare
@reactiveuibot reactiveuibot released this 20 Sep 12:52

Overview

Because increasing number of services use .net core 3.0 for their UI layer (Uno/Blazor), we've separated the UI specific functionality into it's own package Splat.Drawing. This contains the bitmap, color, and platform design mode detection now.

To register the bitmap loader on the platform the following:

Locator.CurrentMutable.RegisterPlatformBitmapLoader();

To detect if the current UI system is in design mode do the following:

PlatformModeDetector.Current.InDesignMode();

Secondly we added analyzers around null checking. There are null checks around common areas of public API to detect if you pass in a null when a object is required.

Changes: