TextWrapping property on Text not working with Native theme

The TextWrapping property on Text does not seem to be working with Native theme. It is however working fine with Basic Theme. The problem i’m having is that on Native theme the text is wrapping even though i’m setting TextWrapping=“NoWrap”.

I can’t reproduce this. This example works as expected, the first text-block being wrapped and the second not:

<App Theme="Native">
    <DockPanel>
        <TopFrameBackground DockPanel.Dock="Top" />
        <StackPanel Background="#FFF">
            <Text TextWrapping="Wrap">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</Text>
            <Text TextWrapping="NoWrap">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</Text>
        </StackPanel>
    </DockPanel>
</App>

Nevermind, I reproduced it on iOS, and fixed it. The fix should be out in about a week.