Hello devs,
Really love Fuse! Everything is so smooth. I got into a problem when I was using online placeholder image. The result differs from <Image>
and <ImageFill>
. below is an example.
<Rectangle Color="White" CornerRadius="6" Height="300" Aspect="1" BoxSizing="FillAspect" Margin="10">
<JavaScript>
module.exports = { randNum: parseInt(Math.random()*1000) }
</JavaScript>
<!-- Code goes here -->
</Rectangle>
Inside the rectangle, when I put <Image Url="https://placeimg.com/640/480/animals/{randNum}" StretchMode="UniformToFill" />
the picture works fine.
However, when I go for <ImageFill Url="https://placeimg.com/640/480/animals/{randNum}" WrapMode="ClampToEdge" />
the image does not load. How can I get those <ImageFill>
working?
Have a nice day!
Michael