In my app profile page I'm showing some buttons horizontally and it is looking good in iPhone 7 but when it comes to iPhone 5 buttons are not looking great because of small screen size. I want to make the layout of buttons align vertically on small screens. Please see the following sample code.
`
<App Background="#eeef">
<Fuse.iOS.StatusBarConfig ux:Name="statusBarConfig" Style="Dark"/>
<StackPanel ux:Name="textPanel" Alignment="Center">
<Text ux:Class="TitleText" Color="#000" TextAlignment="Center" Padding="2"/>
<TitleText ux:Name="topText">This is a long text aligned horizontally</TitleText>
<TitleText ux:Name="bottomText">This is a another long text</TitleText>
</StackPanel>
</App>
`
These two text are aligned horizontally in all screens. How i can make it automatically align vertically on small screens?