Inconsistent behavior between Previewer and iOS Simulator for code using Image as background

I have the following code inside my MainView.ux file

<App Theme="Basic" ClearColor="#eeeeeeff">
    <StackPanel ux:Class="HamburgerIcon" Width="25" Height="21">
        <Style>
            <Rectangle Margin="0,2" Height="3" CornerRadius="3">
                <SolidColor Color="#000" />
            </Rectangle>
        </Style>
        <Rectangle />
        <Rectangle />
        <Rectangle />
    </StackPanel>
    <FileImageSource File="Assets/herbs_border.jpg" ux:Global="herbs-border" />
    <FileImageSource File="Assets/coconuts.jpg" ux:Global="coconuts" />
    <DockPanel>
        <StatusBarBackground Dock="Top" />
        <BottomBarBackground Dock="Bottom" />
        <HamburgerIcon Alignment="TopLeft" Offset="10,5" />
        <Text Alignment="TopCenter" Offset="0,5">Coconuts</Text>
        <Circle Width="40" Height="40" Alignment="TopRight" Offset="0,5">
            <ImageFill Source="coconuts" />
        </Circle>
        <Text Alignment="Center">Recipe</Text>
        <Image Source="herbs-border" StretchMode="UniformToFill" Opacity="0.2" />

    </DockPanel>
</App>

This works as I want in the Fuse Previewer, with the herbs-border becoming the background image. However when rendering in the iOS simulator, the background image is not rendered. A screenshot below shows the varying results. Am I doing something wrong here?

Hi, which version of Fuse are you using? I suspect that you might not be using the latest version? Please try the latest official release (0.9.5 at the time of writing).

Note that using a dash in your ux:Global will be problematic, so I suggest renaming herbs-border to for instance herbsBorder.

If that doesn’t help, could you please send us the images you are using? I am unable to reproduce your problem, but had to use some other images. It could be that there’s something with the image itself that prevents it from being rendered in the iOS simulator. Have you tried previewing on a real iOS device by the way?