WrapPanel. Why text does not wrap around?

Kindly explain me what I’m missing as the text won’t wrap around the image/rectangle.

<App>
    <WrapPanel FlowDirection="LeftToRight">
        <Rectangle Width="100" Height="100" Color="Blue" />
        <Text Value="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." TextWrapping="Wrap" />
    </WrapPanel>
</App>

What you are missing is that in Fuse we don’t have support for text flowing around other elements, like you have in web or MS Word.

WrapPanel merely tries to stick elements next to each other before breaking to the next line, based on the size of the bounding boxes. And a Text element obviously has a bounding box too, and quite a large one in the particular example you shared.