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?