<ImageFill Url="" /> doesn't work on a NativeViewHost on iOS and Android

Hi all,
doesn’t work on a NativeViewHost on iOS and Android.
Here is a code snippet:

<App>
	<StatusBarBackground Dock="Top"/>
	<JavaScript>
	var imageURL = "https://firebasestorage.googleapis.com/v0/b/spicythings-f17b1.appspot.com/o/imageslt%2F0-lt.jpeg?alt=media&token=71da6318-d857-4b3b-bfbe-057316d9d123";
	
	module.exports ={
		imageURL : imageURL
	}

	</JavaScript>


	<Circle Width="160" Height="160" Alignment="Top">
		<ImageFill Url="{imageURL}" />
	</Circle>

	<NativeViewHost  Height="60%">
		<Circle Width="160" Height="160">
			<ImageFill Url="{imageURL}" />
		</Circle>

		<MapView ux:Name="map"  ShowCompass="true" ShowMyLocation="true" ShowMyLocationButton="true" AllowScroll="true" >
                
		</MapView>
            
    </NativeViewHost>

</App>

Thank you!

Hi, could you please check if the problem persists with the new 1.6 Fuse release?
A related issue seems to have been fixed: https://www.fusetools.com/downloads/#image

Yes, the same issue remains, even in 1.6…

You could try to wrap the Circle in a GraphicsView, like so:

<GraphicsView>
    <Circle Width="160" Height="160" Alignment="Top">
        <ImageFill Url="{imageURL}" />
    </Circle>
</GraphicsView>

Certain UX elements do not currently work inside of a NativeViewHost, and this might be one of them.

Thank you Uldis. Sorry for the delay, I haven’t seen your answer.