Hello guys,
It was called to my attention an issue with iPhone X where large texts were shown as a black box:
This only happens on iPhone X. I tried to investigate a little further, but I can’t find anything that justifies this behavior, such as character limitations.
So, out of curiosity, I tried to understand what that black box is, when selecting that said black box, the text behind it shown:
It shows the actual text I was hoping to see instead of the black box.
This is a plain text field:
<ScrollView>
<StackPanel>
...
-- Component with StackPanel --
...
</StackPanel>
</ScrollView>
The StackPanel component has:
<Text Value="{description}" TextWrapping="Wrap" Alignment="Left" />
This also happens when the field is a TextView:
<ScrollView>
<StackPanel>
...
<TextView Value="{description}" TextWrapping="Wrap" Margin="0,0,0,0">
...
</StackPanel>
</ScrollView>
Also, as you might notice when I select the text, it kinda have a strange behavior, the Text and the TextView go all over the place.
So, I’ve done the same test on iPhone 6. It doesn’t show me the black box, but the Text and TextView have the same behaviour.
I have some questions about this.
- Does anyone ever noticed the black box in iPhone X when the fields have long text.
- Does anyone know why the Text and Text View has this behavior with long texts?
- Can all of these be fuse related?
I’m using:
- Fuse version 1.7.1 (build 15473)
- iPhone 6 iOS version 11.2.6
- iPhone X iOS version 11.2.5
Thanks in advance.