Using the code below I removed styling from the <TextInput>
element. It results in the text (maybe the whole element?) not showing. Oddly enough, the element is visible when I turn my iOS device to landscape.
If I then give it focus, and turn it back to portrait again, it shows up. AND the following is output to the monitor:
LOG: SoftCapture can only be done on rooted enabled node`
<TextInput
ux:InheritStyle="false"
HitTestMode="LocalBoundsAndChildren"
Focus.IsFocusable="true"
Focus.Delegate="_textInputCore"
Alignment="CenterRight"
Margin="0,0,15,0"
Width="70%"
TextAlignment="Right"
Font="Book"
FontSize="15"
TextColor="#aaa"
CaretColor="#3b28ea">
<PlainTextEdit ux:Name="_textInputCore" />
<WhilePressed>
<GiveFocus Target="_textInputCore" />
</WhilePressed>
</TextInput>