When attempting to use a RadialMenu in UWP I get the following unhandled exception: "Invalid URI: The format of the URI could not be determined." It works on UWP with version 18.2 and earlier, and it works on Android with all versions. Something seems to have broken on UWP between versions 18.2 and 18.3. Below is my XAML. Can we get a fix for this?
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:radialMenu="clr-namespace:Syncfusion.SfRadialMenu.XForms;assembly=Syncfusion.SfRadialMenu.XForms"
x:Class="RadialMenuTest.MainPage">
<StackLayout>
<Frame BackgroundColor="#2196F3" Padding="24" CornerRadius="0">
<Label Text="Welcome to Xamarin.Forms!" HorizontalTextAlignment="Center" TextColor="White" FontSize="36"/>
</Frame>
<radialMenu:SfRadialMenu />
</StackLayout>
</ContentPage>