I’m having a problem with a simplified version of this Sample: https://github.com/fusetools/fuse-samples/tree/master/Samples/OSUI
When typing something in the <TextInput>
and then click somewhere on the screen (so TextInput looses focus and keyboard disappears), the ScrollView doesn’t scroll back to the original position.
After the Scrollview is in the ‘wrong’ position it stays there till putting the <TextInput>
back into focus, and then out of focus by pushing the on-screen keyboard ‘next’ key.
This all happens in iOS preview Xcode Simulator (iPhone5s)
Fuse version 0.35.0 (build 10867), OS X 10.12.2, Xcode Version 8.3.1 (8E1000a)
(Unfortunately the wifi of my phone doesn’t work, so I can’t test on device)
<Page ux:Class="Pages.TestPage">
<Router ux:Dependency="router" />
<DockPanel>
<StatusBarBackground Dock="Top"/>
<ScrollView Dock="Fill">
<StackPanel>
<Text Margin="50" Value="Hello World" />
<Rectangle Margin="50" Height="100" Color="Blue" />
<TextInput Margin="50" PlaceholderText="I'm scared of keyboards" />
</StackPanel>
</ScrollView>
<BottomBarBackground Dock="Bottom" IncludesKeyboard="true" />
</DockPanel>
</Page>