I’m using Fuse 34.0 in macOS Sierra. I’m trying to do an expression to get images dynamically:
<ImageFill File="Assets/portada/{title}1.jpg" StretchMode="UniformToFill" />
The thing is that File property needs FileSource and the UX expression return a string. To solve it, I tried to get the FileSource using a ux:Key:
<FileSource ux:Key="Portada1" ux:Value="Assets/portada/{title}1.jpg" />
But when I build it, I get this error: Error E0000: Uno.UX.FileSource has no default constructor.
How could I do it?
Thank you.