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!