Hi,
I’ve just started with fuse, and I’ve been following along to the official YouTube videos to try and get the hang of it.
My issue is that while following the ‘Fetching and Displaying Data’ video (link below), I have managed to load data into my view, but I cannot get my text to wrap for some unknown reason.
Any help would be great, and my code for the wrapping, etc, is below.
<ScrollView ClipToBounds="true">
<StackPanel>
<Each Items="{jsonData}">
<DockPanel Margin="0, 0, 0, 10">
<Image Url="{thumbnailUrl}" Dock="Left" />
<Text Value="{title}" TextWrapping="Wrap" Alignment="Center" Dock="Left" />
</DockPanel>
</Each>
</StackPanel>
</ScrollView>