ImageFill don't work!

Fuse version: 0.32.0 (build 9613) Mac OSX

Hi! When I try my app in local preview or Android Preview work perfect but when I export with:

fuse build --target=Android --run

The images don’t appear!!!

Here an example of the code:

<App>
	<JavaScript>
		var Observable = require("FuseJS/Observable");

		var Images = Observable();

		function Image(Photo, Title) {
			this.Photo = Photo;
			this.Title = Title;
		}

		Images.add(new Image("http://imgs.abduzeedo.com/files/articles/fuse-interview/image01.jpg","Image Title"));

		module.exports = {
			Images: Images
		};
	</JavaScript>
	
	<ClientPanel>
		<Each Items="{Images}">
			<StackPanel>
				<Rectangle Height="100%" Width="100%">
					<ImageFill Url="{Photo}" StretchMode="UniformToFill" />
				</Rectangle>
				<Text Value="{Title}" />
			</StackPanel>
		</Each>
	</ClientPanel>
</App>
```

I test it in a S7. Thanks!

How can I solve this?

Your problem isn’t with ImageFill, it’s with the size of your Rectangle. Ask yourself, “100% of what”?

To be a little less cryptic:
A StackPanel does not allocate space to its children, and using % sizes is a lookup into the space allocated by a parent. Switch to a Grid for instance and using 100% makes more sense because a Grid allocates space for each cell in its layout.